/* page produit - fonds blanc */
#wrapper {
    background: #ffffff;
}

/* largeur modifié sur ordinateur */
@media (min-width: 1200px) {
    .container {
        width: 1400px;
        max-width: 100%;
    }
	
/* Alignement centré + animation H1 sur CMS, Mon compte, commandes, adresses, catégories */
#cms h1,
#my-account h1,
#order-detail h1,
#history h1,
#identity h1,
#adresses h1,
#addresses h1,
#order-slip h1,
#category h1,
#categories h1,
.category h1,
.category-title h1 {
  text-align: center;
  margin-top: 40px; /* Ajustable */
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInTitle 0.6s ease forwards;
}

/* Animation fadeIn */
@keyframes fadeInTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-miniature .product-price-and-shipping {
  font-size: 28px;
}

/* taille de la balise H1*/
h1, h1 {
    font-size: 1.8rem;
}

/* --- Affiche le TTC sur la même ligne que le prix --- */
.current-price {
  display: flex;           /* affiche les enfants en ligne */
  align-items: baseline;   /* aligne le texte */
  gap: 0.25rem;            /* petit espace entre prix et TTC */
  font-size : 30px;       /* taille de la police */
  font-weight : 500;      /* poids de la police */
}