.produits {
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  justify-content:center;
}

.produit {
  background:#fff;
  padding:1rem;
  border-radius:6px;
  box-shadow:0 1px 3px rgba(0,0,0,.1);
  flex:1 1 calc(45% - 2rem);
  text-align:center;
}

.produit img {
  display:block;
  margin:0 auto 0.5rem;
}

.produit h3 {
  color:#1d3557;
}

@media (max-width:768px){
  .produit{
    flex:1 1 100%;
  }
}

/* FOOTER - Pixooo / JeuPrime */
footer {
    background: #111; /* noir sombre comme original */
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
}

footer p, footer a {
    color: white;
    margin: 0 5px;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #f107a3; /* rose Pixooo */
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

footer .social-icons a {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

footer .social-icons svg {
    fill: #f107a3; /* rose Pixooo */
    width: 100%;
    height: 100%;
    transition: transform 0.2s;
}

footer .social-icons a:hover svg {
    transform: scale(1.2);
}

footer .sticky-disclaimer {
    background-color: #f3e8ff; /* violet clair du site */
    color: #4a0072; /* violet foncé */
    border: 1px solid #d1a9ff;
    padding: 1em;
    margin-top: 20px;
    border-radius: 6px;
    font-size: 0.95em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

footer .sticky-disclaimer a {
    color: #7b2ff7;
    text-decoration: underline;
}

footer .sticky-disclaimer button {
    margin-top: 1em;
    background: #7b2ff7;
    color: white;
    border: none;
    padding: 0.6em 1.2em;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

footer .sticky-disclaimer button:hover {
    background: #5a1bb7;
}
