body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff7fb;
    color: #111;
  }
  
  h1, h4 {
    font-family: 'Playfair Display', serif;
    color: #d1005d;
  }
  
  a {
    text-decoration: none;
  }
  
 /* === NAVBAR BLOQUÉE CENTRÉE === */
.main-header {
    background: transparent;
    padding: 20px 0;
    display: flex;
    justify-content: center;
   
    top: 0;
    z-index: 999;
    transform: translateZ(0);
    
   
  }

  .main-header.scrolled {
    background: white;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
  }
  
  .main-header.scrolled .nav-container {
    border-radius: 0;
    width: 100%;
    max-width: none;
    padding: 10px 40px;
    transition: all 0.3s ease;
  }
  
  
  .nav-container {
    background: white;
    border-radius: 16px;
    padding: 12px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px; /* <- Augmente ici pour élargir le menu */
    
    
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #111;
  }
  
  .logo img {
    height: 42px;   /* 💡 Ajuste ici selon ton design */
    width: auto;
    display: block;
    border-radius: 8px; /* Facultatif si tu veux des bords doux */
  }
  
  .logo span {
    color: #111;
  }
  
  .logo em {
    color:  #111;
    font-style: italic;
    font-weight: 600;
  }
  
  .logo span {
    color: #ff80b5;
    font-style: italic;
  }


  
  .menu-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    background: transparent;
    transition: all 0.3s ease;
  }

  .menu-nav .nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #d1005d;
    text-transform: none;
    transition: color 0.3s ease;
  }
  
  .nav-link {
    display: inline-block;
    padding: 10px 22px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #d1005d;
    text-decoration: none;
    border-radius: 40px;
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .nav-link:hover {
    background-color: #ff80b52a;
    color: #d1005d;
    border-color: #ff80b5;
    box-shadow: 0 0 8px #ffcce5aa;
  }
  
  .nav-link.active {
    background: #ff80b5;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 128, 181, 0.25);
  }
  
  
/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
    background: linear-gradient(135deg, #ffe6f0, #fce4ec, #f8e1ff);
    flex-wrap: wrap;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #444;
  }
  .hero-media {
    flex: 1;
    max-width: 350px;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
  }
  .cta-btn {
    background: #d1005d;
    color: white;
    padding: 14px 28px;
    font-weight: bold;
    border-radius: 40px;
    transition: all 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #a60044;
  }
  

  
  /* FEATURES */
  .features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 20px;
    background: white;
    gap: 30px;
  }
  
  .feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 220px;
  }
  
  .feature-box img {
    width: 40px;
    margin-bottom: 15px;
  }
  
  .feature-box h4 {
    margin-bottom: 10px;
    color: #d1005d;
  }
  

  .feature-box i {
    color: #d1005d;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover i {
    transform: scale(1.2);
  }
  
  .footer {
    background: #111;
    color: white;
    position: relative;
    padding-top: 80px;
  }
  
  .footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff0f5;
    border-bottom-left-radius: 100% 30%;
    border-bottom-right-radius: 100% 30%;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    gap: 40px;
  }
  
  .footer-column {
    flex: 1 1 200px;
    min-width: 180px;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff80b5;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h4::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: red;
    margin-top: 8px;
    border-radius: 2px;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin: 8px 0;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
    color: #fff;
  }
  
  /* Newsletter */
  .footer-column.subscribe input[type="email"] {
    padding: 10px 14px;
    border-radius: 30px;
    border: none;
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
  }
  
  .footer-column.subscribe button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 5px;
    cursor: pointer;
  }
  
  /* Réseaux sociaux */
  .socials {
    margin-top: 20px;
  }
  
  .socials a {
    color: white;
    margin-right: 12px;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .socials a:hover {
    color: #ff80b5;
  }
  
  /* Bas de page */
  .footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #bbb;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* FAQ */
  .faq-section {
    background: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
  }
  
  .faq-title {
    color: #d1005d;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .faq-subtitle {
    color: #777;
    margin-bottom: 40px;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faq-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
  }
  
  .faq-question {
    width: 100%;
    background: #f3f3f3;
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #007bff;
  }
  
  .faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 0.95rem;
    background: #fff;
    color: #333;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  

  /* === PAGE CONTENU LEGAL (CGV, retour, etc.) === */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #fff;
  }
  
  .content-page h1 {
    font-size: 2.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #d1005d;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .content-page h2 {
    font-size: 1.4rem;
    color: #ff80b5;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
  }
  
  .content-page h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff80b5;
    margin-top: 6px;
    border-radius: 2px;
  }
  
  .content-page p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .content-page a {
    color: #d1005d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .content-page a:hover {
    color: #ff80b5;
    text-decoration: underline;
  }
  


  .hero.hero-small {
    background: linear-gradient(120deg, #ffe6f0, #fff0f5);
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero-small h1 {
    font-size: 2.2rem;
    color: #d1005d;
    font-family: 'Playfair Display', serif;
  }
  
  .hero-small p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
  }
  
/* Grille contenant toutes les cartes produit */

/* Chaque carte produit */
.product-card {
  display: flex;
  flex-direction: row;         /* image à gauche, contenu à droite */
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease;
}

/* Hover effet */
.product-card:hover {
  transform: translateY(-4px);
}

/* Image produit */
.product-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* Partie texte à droite */
.product-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Nom du produit */
.product-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: #111;
  font-weight: 600;
}

/* Prix */
.price {
  color: #d1005d;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Description du produit */
.product-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* (Facultatif) bouton d'action */
.product-card button {
  align-self: flex-start;
  background: #d1005d;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  margin-top: 10px;
}

.product-card button:hover {
  background: #a60044;
}

.boutique-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.boutique-tabs .tab {
  padding: 12px 28px;
  font-size: 1rem;
  border: 2px solid #ff80b5;
  background: transparent;
  color: #d1005d;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.boutique-tabs .tab:hover {
  background: #ffedf5;
  box-shadow: 0 0 8px #ffcce5aa;
}

.boutique-tabs .tab.active {
  background: #ff80b5;
  color: white;
  box-shadow: 0 6px 20px rgba(255, 128, 181, 0.25);
}

  .boutique-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  .boutique-section.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .intro-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding: 60px 20px;
  }
  
  .boutique-intro {
    position: relative;
    text-align: center;
    max-width: 700px;
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
    z-index: 2;
  }
  .boutique-tabs .tab {
    background: none;
    border: 1px solid #ff80b5;
    color: #d1005d;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .boutique-tabs .tab.active {
    background-color: #ff80b5;
    color: white;
    border: none;
  }
  
  .diamond-frame {
    position: absolute;
    width: 320px;
    height: 320px;
    background: transparent;
    border: 3px dashed #ff80b5;
    transform: rotate(45deg);
    z-index: 1;
    border-radius: 20px;
    opacity: 0.3;
  }
  
  .intro-wrapper::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: conic-gradient(from 180deg, #ffd6e0, #fff0f7, #ffd6e0);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.25;
  }
  
  .boutique-header {
    background: linear-gradient(135deg, #ffe6f0, #fce4ec, #f8e1ff);
  }
  
  .galerie-section {
    display: none;
  }
  
  .product-section.active,
  .galerie-section.active {
    display: block;
  }
  
  .galerie-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 40px 0;
  }
  
  .galerie-grid img,
  .galerie-grid video {
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .galerie img:hover {
    transform: scale(1.03);
  }
  .cart-icon {
    position: relative;
  }
  

  .cart-count {
    position: relative;
    top: -6px;
    right: -10px;
    background: #d1005d;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
  }

  .cart-page {
    max-width: 800px;
    margin: auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .cart-page h1 {
    text-align: center;
    font-size: 2.2rem;
    color: #d1005d;
    margin-bottom: 30px;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    background: #fff0f7;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    align-items: center;
  }
  
  .cart-item button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  .cart-summary {
    text-align: center;
    margin-top: 30px;
  }
  
  .btn-checkout {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s ease;
  }
  
  .btn-checkout:hover {
    background: #1ebf59;
  }
  
  .cart-summary {
    text-align: center;
    background: #fff0f5;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  


  body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff6fa;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  .panier-container {
    max-width: 960px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 128, 181, 0.2);
  }
  
  .panier-container h2 {
    font-size: 2.2rem;
    color: #d6006e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cart-items {
    margin-bottom: 30px;
    border-top: 2px solid #ffe4f0;
    padding-top: 15px;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    background: #fff0f7;
    border: 1px solid #ffd1e7;
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .cart-item button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #d6006e;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .cart-item button:hover {
    color: #ff99cc;
  }
  
  .total-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e60073;
    text-align: right;
    margin-bottom: 30px;
  }
  
  .checkout-section {
    border-top: 2px dashed #ffd0e6;
    padding-top: 20px;
  }
  
  .checkout-section h3 {
    font-size: 1.5rem;
    color: #d6006e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
  }
  
  form input {
    flex: 1 1 45%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff9fc;
    font-size: 1rem;
  }
  
  form button {
    background-color: #ff66a3;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  form button:hover {
    background-color: #e6006c;
  }
  
  @media screen and (max-width: 600px) {
    form {
      flex-direction: column;
    }
  
    form input, form button {
      width: 100%;
    }
  }
  
  .apercu-galerie {
    padding: 50px 20px;
    background-color: #fff5f8;
    text-align: center;
    
  }
  
  .galerie-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 100px;
  }
  
  .galerie-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .galerie-preview img:hover {
    transform: scale(1.03);
  }
  
  
  .media-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .btn-galerie {
    background-color: #d1005b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .delete-button {
    background: crimson;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .delete-button:hover {
    background: #a60044;
  }
  .tab.active {
    background-color: #d1005d;
    color: white;
  }
  
