/*
Theme Name: Zinyss Theme
Theme URI: https://example.com
Author: Zinyss
Description: Thème e-commerce sur mesure pour une boutique mono-produit.
Version: 1.0.3
Text Domain: zinyss
*/

:root {
  --bg: #ffffff;
  --ink: #0d0d0d;
  --muted: #3c3c3c;
  --card: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #58873e;
  --accent-soft: rgba(88, 135, 62, 0.08);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}

.logo-img {
  height: 52px;
  max-height: 52px;
  width: auto;
  display: block;
}

.primary-nav,
.primary-nav ul,
.primary-nav .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav .menu,
.primary-nav .menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}


.primary-nav li {
  list-style: none;
  display: inline-flex;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  color: #0d0d0d;
  line-height: 1;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  background: var(--accent-soft);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    z-index: 1001;
}

.mobile-menu-toggle .icon-close {
    display: none;
}

.mobile-menu-open .mobile-menu-toggle .icon-menu {
    display: none;
}

.mobile-menu-open .mobile-menu-toggle .icon-close {
    display: block;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  z-index: 1050;
  justify-content: space-between;
  gap: 8px;
}

.bottom-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.lang-switch-mobile {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.lang-switch-mobile span {
  font-weight: 700;
  font-size: 12px;
}

.lang-switch-mobile .lang-pill {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.bottom-action.lang-switch-mobile {
  flex-direction: row;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  gap: 8px;
}

.cart-icon-btn {
  position: relative;
}

.cart-contents-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #2f5f48 !important;
  color: #fff;
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Pack selection removed - see new pack-bars design below */

/* ============================================
   POPUP PANIER MODERNE AVEC EFFET FLOU
   ============================================ */

.mini-cart-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-cart-container.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.no-scroll {
  overflow: hidden;
}

.mini-cart-content {
  position: relative;
  background: #fff !important;
  width: min(480px, 95vw);
  max-height: 85vh;
  padding: 0;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  display: flex !important;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  opacity: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 10001;
}

.mini-cart-container.is-visible .mini-cart-content {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
}

/* Header du panier */
.mini-cart-content h3 {
  margin: 0;
  padding: 28px 60px 28px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.08), rgba(0, 0, 0, 0.02));
  border-bottom: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-cart-content h3::before {
  content: '';
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 5h1.6a1 1 0 0 1 .97.76l1.37 5.47a1 1 0 0 0 .97.77h5.6a1 1 0 0 0 .96-.73l1.11-3.99a.6.6 0 0 0-.58-.78H8.1' stroke='white' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='10.5' cy='17.5' r='1' fill='white'/%3E%3Ccircle cx='15.5' cy='17.5' r='1' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Zone scrollable du contenu */
.widget_shopping_cart_content {
  flex: 1;
  padding: 24px 28px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-soft) transparent;
}

.widget_shopping_cart_content::-webkit-scrollbar {
  width: 6px;
}

.widget_shopping_cart_content::-webkit-scrollbar-track {
  background: transparent;
}

.widget_shopping_cart_content::-webkit-scrollbar-thumb {
  background: var(--accent-soft);
  border-radius: 10px;
}

.widget_shopping_cart_content::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Bouton fermer modernisé */
.close-mini-cart {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  z-index: 20;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.close-mini-cart:hover {
  background: #f5f5f5;
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(88, 135, 62, 0.2);
  transition: all 0.2s ease;
  z-index: 11;
}

/* Produits dans le panier */
.woocommerce-mini-cart {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.woocommerce-mini-cart-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  margin-bottom: 12px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.2s ease;
}

.woocommerce-mini-cart-item:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.woocommerce-mini-cart-item:first-child {
  padding-top: 18px;
}

.woocommerce-mini-cart-item:last-child {
  margin-bottom: 0;
}

.woocommerce-mini-cart-item a:not(.remove) {
  flex: 1;
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.woocommerce-mini-cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

/* Info produit */
.mini-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-cart-item-details .product-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.3;
}

.mini-cart-item-details .variation-info {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.mini-cart-item-details .variation-info p {
  margin: 0;
  display: inline;
}

.mini-cart-item-details .variation-info dt,
.mini-cart-item-details .variation-info dd {
  display: inline;
  margin: 0;
}

.mini-cart-item-details .variation-info dt {
  font-weight: 500;
}

.mini-cart-item-details .mini-cart-item-price {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.mini-cart-item-details .mini-cart-item-price .amount {
  font-weight: 700;
  color: var(--accent);
  font-size: 17px;
  margin-left: 4px;
}

.woocommerce-mini-cart-item .quantity {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.woocommerce-mini-cart-item .amount {
  font-weight: 700;
  color: var(--accent);
  font-size: 17px;
  margin-top: 4px;
}

/* Bouton supprimer */
.woocommerce-mini-cart-item .remove {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
  font-weight: 300;
}

.woocommerce-mini-cart-item .remove:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
  transform: scale(1.1);
}

/* Message panier vide */
.woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.woocommerce-mini-cart__empty-message::before {
  content: '🛒';
  font-size: 48px;
  opacity: 0.5;
}

/* Total */
.woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  margin: 0;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.08), rgba(0, 0, 0, 0.02));
  border-top: 1px solid var(--line);
  font-size: 17px;
  font-weight: 700;
}

.woocommerce-mini-cart__total strong {
  color: var(--ink);
  font-family: "Poppins", sans-serif;
}

.woocommerce-mini-cart__total .amount {
  color: var(--accent);
  font-size: 24px;
  font-family: "Poppins", sans-serif;
}

/* Boutons d'action */
.woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.woocommerce-mini-cart__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.woocommerce-mini-cart__buttons .button.checkout {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 16px rgba(88, 135, 62, 0.25);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.woocommerce-mini-cart__buttons .button.checkout::after {
  content: ' →';
  margin-left: 4px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
  background: #4a7840;
  border-color: #4a7840;
  box-shadow: 0 6px 24px rgba(88, 135, 62, 0.35);
  transform: translateY(-2px);
}

.woocommerce-mini-cart__buttons .button.checkout:hover::after {
  transform: translateX(4px);
}

.woocommerce-mini-cart__buttons .button.wc-forward {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}

.woocommerce-mini-cart__buttons .button.wc-forward:hover {
  background: #f5f5f5;
  border-color: var(--accent);
  color: var(--accent);
}

/* Responsive popup panier */
@media (max-width: 640px) {
  .mini-cart-content {
    width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    margin-top: auto;
  }

  .mini-cart-content h3 {
    padding: 24px 56px 24px 24px;
    font-size: 20px;
  }

  .widget_shopping_cart_content {
    padding: 20px 24px;
  }

  .woocommerce-mini-cart-item {
    padding: 14px;
  }

  .woocommerce-mini-cart-item img {
    width: 60px;
    height: 60px;
  }
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 0, 0, 0.12);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  color: var(--muted);
}

.lang-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}

/* Ajustements spécifiques aux pages produit */
body.single-product .site-header {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

body.single-product .nav-inner {
  padding: 14px 24px;
}

body.single-product .logo-img {
  height: 52px;
  max-height: 52px;
}

/* Harmonisation logo sur checkout */
body.woocommerce-checkout .logo-img {
  height: 52px;
  max-height: 52px;
}

/* Footer logo harmonisé (panier / checkout / fiches produit / boutique) */
body.woocommerce-cart .footer-logo,
body.woocommerce-checkout .footer-logo,
body.single-product .footer-logo,
body.post-type-archive-product .footer-logo,
body.woocommerce-shop .footer-logo,
body.tax-product_cat .footer-logo,
body.tax-product_tag .footer-logo {
  height: 32px;
  max-height: 32px;
  width: auto;
}

/* Masquer le 2ᵉ bloc de description sur les pages produit (onglet Description WooCommerce) */
body.single-product .woocommerce-tabs .wc-tabs li.description_tab,
body.single-product .woocommerce-Tabs-panel--description {
  display: none !important;
}

/* Masquer le tab Avis sur les fiches produit */
body.single-product .woocommerce-tabs .wc-tabs li.reviews_tab,
body.single-product .woocommerce-Tabs-panel--reviews {
  display: none !important;
}

/* Footer aligné comme la home sur les fiches produit */
body.single-product .site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 72px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--line);
}

body.single-product .footer-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

/* Mise en page fiche produit */
body.single-product div.product {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
  grid-template-areas:
    "gallery summary";
}

/* Mobile / tablette : retirer l'écart entre colonnes sur la fiche produit */
@media (max-width: 863px) {
  body.single-product div.product {
    gap: 0px;
  }
}

body.single-product div.product .images,
body.single-product div.product .summary {
  float: none;
  width: 100%;
  margin: 0;
}

body.single-product div.product .summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

body.single-product div.product .woocommerce-product-gallery {
  grid-area: gallery;
}

body.single-product div.product .entry-summary {
  grid-area: summary;
}

/* Bandeau réassurance sous le prix */
.reassurance-inline {
  margin: 14px 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.reassurance-inline .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  color: var(--muted);
}

.reassurance-inline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Nouveau layout single product */
.product-page .site-main {
  display: block;
  max-width: 1280px;
  padding: 96px 24px 120px;
}

.product-page .z-product {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

@media (max-width: 980px) {
  .product-page .z-product {
    grid-template-columns: 1fr;
  }
}

.z-product-left {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.z-visual {
  position: relative;
}

.z-visual-main {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  min-height: 420px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  animation: z-float 6s ease-in-out infinite;
}

.float-circle {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(88, 135, 62, 0.12), transparent 50%);
  z-index: 0;
}

.float-leaves {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(0, 0, 0, 0.05), transparent 40%);
  z-index: 0;
}

.z-visual-main .woocommerce-product-gallery {
  position: relative;
  z-index: 1;
}

.woocommerce-product-gallery {
  width: 100%;
}

.woocommerce-product-gallery__wrapper {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.z-product-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 14px;
}

.z-product-sidebar .z-price {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
}

.z-short {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  color: var(--muted);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

/* bundles retirés sur fiche produit */

.variation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 4px;
}

.variation-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.variation-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(88, 135, 62, 0.2);
}

.z-tabs {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.z-tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.z-tab-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.z-tab-btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(88, 135, 62, 0.25);
}

.z-tab-panel {
  display: none;
  color: var(--muted);
  line-height: 1.6;
}

.z-tab-panel.is-active {
  display: block;
}

.z-howto,
.z-before-after,
.z-social-wall,
.z-faq,
.z-help {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.z-howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.howto-step {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.howto-step span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.z-before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.ba-img {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.ba-img-before { background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(88,135,62,0.08)); }
.ba-img-after { background: linear-gradient(135deg, rgba(88,135,62,0.12), rgba(0,0,0,0.05)); }

.z-social-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.z-social-card {
  aspect-ratio: 9/16;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.z-faq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.z-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.z-help-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.z-help-card .btn {
  white-space: nowrap;
}

.z-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
  z-index: 50;
}

.z-mobile-price {
  font-weight: 700;
  color: var(--accent);
}

/* --------------------------------------------
   Panier & Checkout
---------------------------------------------*/
.cart-page .site-main,
.checkout-page .site-main {
  max-width: 1100px;
}

.cart-hero,
.checkout-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cart-lead,
.checkout-lead {
  color: var(--muted);
  margin: 6px 0 0;
}

.checkout-steps {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.checkout-steps .step {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f7f7f7;
  font-weight: 700;
}

.checkout-steps .step.is-active {
  background: var(--accent-soft);
  color: var(--ink);
}

.cart-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

@media (max-width: 863px) {
  .cart-hero,
  .checkout-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: relative;
    top: 0;
  }
}

.cart-left,
.checkout-left {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.04);
}

.cart-summary,
.checkout-summary {
  position: sticky;
  top: 96px;
  align-self: start;
}

.summary-card,
.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  display: grid;
  gap: 12px;
}

.cart-card .card-head,
.checkout-card .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-card h2,
.checkout-card h2 {
  margin: 4px 0 0;
}

.z-cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.z-cart-table thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.z-cart-table tbody tr {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.z-cart-table td {
  padding: 12px;
  vertical-align: middle;
}

.z-cart-table .product-thumbnail img {
  width: 74px;
  height: auto;
  border-radius: 10px;
}

.z-cart-table .product-name a {
  font-weight: 700;
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cart-actions .coupon {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cart-actions .coupon input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.checkout-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.checkout-badges .badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  font-weight: 700;
  color: var(--ink);
}

.checkout-card h2,
.summary-card h2 {
  margin: 0;
}

.checkout-note {
  margin: 6px 0 0;
  color: var(--muted);
}

.checkout .col2-set {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.checkout .woocommerce-billing-fields__field-wrapper,
.checkout .woocommerce-additional-fields__field-wrapper,
.checkout .woocommerce-shipping-fields .shipping_address {
  display: grid;
  gap: 10px;
}

.checkout .form-row input,
.checkout .form-row select,
.checkout .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.woocommerce-checkout-review-order-table .product-name {
  font-weight: 700;
}

.coupon-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.coupon-row input {
  flex: 1 1 180px;
}

.coupon-row .btn {
  white-space: nowrap;
}

.invoice-option {
  margin-top: 8px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fafafa;
}

.invoice-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 820px) {
  .z-product-sidebar {
    position: relative;
    top: 0;
  }
  .z-mobile-bar {
    display: flex;
  }
}

@keyframes z-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}


.site-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.04), rgba(88, 135, 62, 0.08));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.4);
  padding: 48px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 12px;
  line-height: 1.1;
}

.typing-word {
  border-right: 2px solid #0d0d0d;
  padding-left: 6px;
  color: #0d0d0d;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to {
    border-color: transparent;
  }
}

.hero-copy .subtitle {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(88, 135, 62, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-ghost:hover {
  background: var(--accent-soft);
}

.product-card {
  background: #fff;
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.mockup {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius) * 1.2);
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.08), rgba(88, 135, 62, 0.15));
  border: 1px dashed rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
}

.section {
  display: grid;
  gap: 20px;
}

.section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.list .dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.bento .item {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.bento h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.story {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}

.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.faq strong {
  display: block;
  margin-bottom: 6px;
}

.cta-panel {
  padding: 26px;
  border-radius: calc(var(--radius) * 1.1);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.02), rgba(88, 135, 62, 0.16));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-panel p {
  margin: 0;
  font-weight: 600;
}

.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px 72px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 32px;
  width: auto;
  display: block;
}

.hero-visual {
  display: grid;
  place-items: center;
  max-width: 480px;
  width: 100%;
}

.hero-video {
  width: 100%;
  aspect-ratio: 3/4;
  background: #000;
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 620px;
}

.btn-large {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.benefits-section {
  padding: 32px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-item {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 2px solid transparent;
}

.benefit-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin: 0 0 8px;
}

.benefit-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.packs-section {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.pack-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.pack-popular {
  border-color: var(--accent);
  border-width: 3px;
}

.pack-popular:hover {
  transform: translateY(-6px);
}

.pack-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #58873e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.pack-visual {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.pack-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px 12px 0 0;
}

.pack-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pack-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pack-subtitle {
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.pack-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-amount {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.price-unit {
  color: var(--muted);
  font-size: 14px;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

.pack-badge-inline {
  display: inline-block;
  background: linear-gradient(135deg, #58873e 0%, #6a9f4a 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-promo {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pack-saving {
  display: inline-block;
  background: rgba(88, 135, 62, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 6px;
}

.pack-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.pack-content .btn-full {
  margin-top: auto;
}

.ingredients-section {
  padding: 48px 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.02), rgba(88, 135, 62, 0.05));
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid var(--line);
}

.ingredients-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 32px;
}

.ingredients-visual {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(88, 135, 62, 0.15), rgba(0, 0, 0, 0.08));
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ingredients-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredients-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.ingredients-content p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Ingrédients (home) en badges */
.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.ingredient-tag {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: normal;
}

.ingredient-tag:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.ingredients-certifs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.certif-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
}

.ingredients-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.ingredients-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.ingredients-group h4 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.ingredients-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ingredients-group li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.certif-item svg {
  flex-shrink: 0;
}

.before-after {
  padding: 48px 0;
}

.before-after-header {
  text-align: center;
  margin-bottom: 32px;
}

.before-after-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 12px;
}

.before-after-header p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.ba-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .ba-layout {
    grid-template-columns: 1fr;
  }
}

.ba-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: var(--shadow);
  --ba-pos: 50%;
}

.ba-img {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  width: 100%;
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}

.ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.ba-divider {
  position: absolute;
  top: 0;
  left: var(--ba-pos);
  width: 3px;
  height: 100%;
  background: #fff;
  z-index: 3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translateX(-1.5px);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: ew-resize;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 2;
}

.ba-label-before {
  left: 16px;
}

.ba-label-after {
  right: 16px;
}

.ba-product-slot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.ba-product-slot h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin: 0 0 12px;
}

.ba-product-slot p {
  color: var(--muted);
  margin-bottom: 20px;
}

.ba-product-slot.image-only {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: stretch;
}

.ba-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) * 1.2);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.blog-section {
  padding: 48px 0;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0;
}

.blog-header a {
  color: var(--accent);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.blog-header a:hover {
  background: var(--accent-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  grid-template-rows: 200px 1fr;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.blog-body {
  padding: 20px;
}

.blog-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.blog-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Archive & single articles */
.blog-archive {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.blog-archive__hero {
  text-align: center;
  margin-bottom: 40px;
}

.blog-archive__pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.blog-archive__hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 5vw, 40px);
}

.blog-archive__sub {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.blog-archive__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-archive__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-archive__thumb {
  padding-top: 60%;
  background-size: cover;
  background-position: center;
}

.blog-archive__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-archive__meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.blog-archive__body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-archive__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-archive__link {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-single {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.article-wrapper {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-hero {
  padding: 28px 28px 18px;
}

.article-hero__meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.article-hero__pill {
  padding: 8px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.article-hero__date {
  color: var(--muted);
  font-size: 13px;
}

.article-hero__title {
  margin: 12px 0 0;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.2;
}

.article-hero__media {
  margin-top: 18px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}

.article-hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  padding: 0 28px 28px;
  color: var(--muted);
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
}

.article-cta {
  border-top: 1px solid var(--line);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: center;
  background: var(--accent-soft);
}

.article-cta__copy h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.article-cta__copy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.article-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-cta__visual img {
  max-width: 220px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* Page confirmation commande */
.z-thankyou {
  max-width: 980px;
  margin: 40px auto;
  padding: 0 16px;
}

.z-thankyou__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.z-thankyou__header h1 {
  margin: 6px 0 4px;
  font-size: clamp(24px, 4vw, 30px);
  font-family: "Poppins", sans-serif;
}

.z-thankyou__header p {
  margin: 0;
  color: var(--muted);
}

.z-thankyou__header p.muted {
  font-size: 13px;
}

.z-thankyou__header .badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.z-thankyou__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  background: #f8f8f8;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 16px;
}

.z-thankyou__meta div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}

.z-thankyou__meta strong {
  color: #111;
}

.z-thankyou__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.z-thankyou__block {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.z-thankyou__block h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.z-thankyou__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.z-thankyou__items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.z-thankyou__items .title {
  font-weight: 700;
}

.z-thankyou__items .qty {
  margin-left: 8px;
  color: var(--muted);
}

.z-thankyou__address p {
  margin: 0 0 8px;
  color: var(--muted);
}

.z-thankyou__cta {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--accent-soft);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}

@media (max-width: 720px) {
  .z-thankyou__card {
    padding: 22px;
  }
  .z-thankyou__meta div {
    font-size: 13px;
  }
  .z-thankyou__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Masquer le texte de confidentialité du checkout */
.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper {
  display: none !important;
}

@media (max-width: 1022px) {
  .woocommerce img,
  .woocommerce-page img {
    height: 100% !important;
  }
}

/* Page légale */
.legal-page-container {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background-color: #f8f9fa;
  padding: 120px 20px 60px;
  scroll-behavior: smooth;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.sticky-search-bar {
  position: sticky;
  top: 100px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border: 1px solid #eee;
  backdrop-filter: blur(5px);
}

.search-input-wrapper {
  position: relative;
}

#pageSearchInput {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

#pageSearchInput:focus {
  border-color: var(--accent);
  outline: none;
}

.legal-section {
  background: #fff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  scroll-margin-top: 120px;
}

.section-title {
  color: var(--accent);
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 18px;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-section h3 {
  color: var(--ink);
  margin-top: 20px;
  font-size: 1.1rem;
}

.legal-section p,
.legal-section li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-section ul {
  padding-left: 20px;
}

.contact-box {
  background-color: #f0f4f1;
  padding: 14px;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--ink);
}

.search-highlight {
  background-color: #fff3cd;
  font-weight: 700;
  padding: 2px 0;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 20px;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 720px) {
  .blog-archive {
    padding-top: 100px;
  }
  .article-single {
    padding-top: 100px;
  }
  .article-body {
    padding: 0 20px 22px;
  }
  .article-cta {
    padding: 20px;
  }
}

.reassurance {
  padding: 48px 0;
}

.reassurance-header {
  text-align: center;
  margin-bottom: 32px;
}

.reassurance-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.reassurance-card {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.reassurance-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin: 0 0 8px;
}

.reassurance-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.instagram-section {
  padding: 48px 0;
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.instagram-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #e8e8e8;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.social-btn:hover {
  transform: translateY(-2px);
  background: #dcdcdc;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.insta-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.insta-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.testimonials {
  padding: 48px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 32px;
}

.testimonials-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 12px;
}

.testimonials-header p {
  color: var(--muted);
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Overrides Mobile / Tablette (≤ 768px) pour UX simplifiée
   ========================================================= */
@media (max-width: 863px) {
  body {
    padding-bottom: 78px; /* espace pour la barre fixe */
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .primary-nav {
    left: auto;
    right: 0;
    width: 75%;
    margin-left: auto;
    text-align: right;
    box-shadow: -10px 12px 30px rgba(0, 0, 0, 0.12);
  }

  .primary-nav a {
    text-align: right;
  }

  .mobile-menu-toggle {
    order: 3;
    margin-left: auto;
  }

  .hero {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-visual {
    order: -1;
    max-width: 100%;
  }

  .hero-video {
    height: 60vh;
    max-height: 520px;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 6vw, 34px);
  }

  /* Slider horizontal pour les packs/blog/témoignages en mobile/tablette */
  .packs-grid,
  .blog-grid,
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .pack-card,
  .blog-card,
  .testimonial-card {
    min-width: 80%;
    scroll-snap-align: start;
  }

  .reassurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-bottom-bar {
    display: flex;
  }
}

/* Ajustements mobiles supplémentaires (≤ 863px) */
@media (max-width: 863px) {
  .site-main {
    padding: 80px 18px 80px;
  }

  .hero {
    padding-top: 20px;
    margin-top: 18px;

  }

  .hero .pill {
    margin-bottom: 12px;
  }

  .list li {
    align-items: flex-start;
  }

  .list .dot {
    margin-top: 4px;
    flex-shrink: 0;
  }

  .ingredients-content p {
    display: none;
  }

  .ba-img {
    background-position: top center;
  }

  .product-before-after .before-badge,
  .product-before-after .after-badge {
    top: auto;
    bottom: 12px;
  }

  .before-after-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .before-after-slider .ba-slide {
    min-width: 90%;
    scroll-snap-align: start;
    grid-template-columns: 1fr;
    gap: 12px;
    flex: 0 0 100%;
  }

  .before-after-slider::-webkit-scrollbar {
    display: none;
  }

  /* TikTok slider : format adapté mobile */
  .tiktok-slider {
    gap: 14px;
    padding-bottom: 10px;
  }

  .tiktok-item {
    flex: 0 0 80vw;
    border-radius: 16px;
  }
}

/* Checkout : ordre mobile -> récap d'abord, puis formulaire/paiement */
@media (max-width: 863px) {
  .checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .checkout-recap-col {
    order: -1;
  }
  .checkout-form-col {
    order: 0;
  }

  /* Nos engagements : slider horizontal 1 carte à la fois */
  .reassurance-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 6px;
  }

  .reassurance-card {
    min-width: 80%;
    scroll-snap-align: start;
  }

  /* Bénéfices : slider horizontal - une carte à la fois (comme les engagements) */
  .benefits-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .benefit-item {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 280px;
  }

  .benefit-item .benefit-icon {
    flex-shrink: 0;
  }

  .benefit-item h3 {
    flex-shrink: 0;
  }

  .benefit-item p {
    flex-grow: 1;
    display: flex;
    align-items: center;
  }
}

/* Dots de pagination pour le slider de bénéfices */
.slider-dots {
  display: none; /* Masqué par défaut sur desktop */
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dots .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent);
}

/* Afficher les dots sur mobile */
@media (max-width: 863px) {
  .slider-dots {
    display: flex;
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -20px;
  left: 12px;
  font-size: 80px;
  color: rgba(88, 135, 62, 0.12);
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 12px;
}

.testimonial-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.partners {
  padding: 48px 0;
}

.partners-header {
  text-align: center;
  margin-bottom: 24px;
}

.partners-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 8px;
}

.partners-header p {
  color: var(--muted);
  margin: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  width: 100%;
  min-height: 80px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  color: var(--muted);
  font-weight: 600;
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* Page Notre Histoire : design compact et rassurant */
.story-hero {
  text-align: center;
  padding: 28px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 28px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.story-hero-content {
  max-width: 640px;
  margin: 0 auto;
}

.story-hero h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 10px 0 12px;
}

.story-lead {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: var(--muted);
}

.story-intro {
  margin: 10px 0 0;
  line-height: 1.6;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 8px;
}

.story-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.story-card h2 {
  font-size: 18px;
  margin: 0;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.story-trust {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}

.trust-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.trust-text p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent-soft);
}

.story-finale {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.story-finale h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  margin: 0;
}

.story-finale p {
  line-height: 1.5;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.story-coaching {
  margin-top: 12px;
}

.coaching-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.coaching-card .trust-badges {
  margin-top: 8px;
}

.coaching-card .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

@media (max-width: 720px) {
  .coaching-card {
    flex-direction: column;
    align-items: flex-start;
  }
}


.contact-hero {
  text-align: center;
  padding: 60px 24px 40px;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.05), rgba(0, 0, 0, 0.02));
  border-radius: 16px;
  margin-bottom: 32px;
}

.contact-hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 42px);
  margin: 12px 0 10px;
}

.contact-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.contact-quick {
  margin-bottom: 24px;
}

.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  display: grid;
  gap: 10px;
}

.quick-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin: 0;
}

.quick-card p {
  margin: 0;
  color: var(--muted);
}

.quick-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-info-section {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.contact-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--ink);
}

.contact-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--ink);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.contact-form-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.contact-form-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin: 0 0 24px;
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 135, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  color: #dc2626;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

@media (max-width: 820px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    justify-content: space-between;
  }

  .primary-nav {
    display: none; /* Hide nav by default */
    order: 3; /* Move it to the end of the flex order */
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-top: 1px solid var(--line);
  }

  .mobile-menu-open .primary-nav {
    display: flex; /* Show when menu is open */
    flex-direction: column;
  }

  .primary-nav .menu,
  .primary-nav .menu-items {
    flex-direction: column;
    width: 100%;
  }

  .primary-nav a {
    display: block;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    order: 3;
    background: none;
    border: none;
    cursor: pointer;
  }
}

/*
 * =================================================================
 * SINGLE PRODUCT PAGE - ZINYSS PREMIUM DESIGN
 * Layout 2 colonnes : Contenu scrollable + Buy box sticky
 * =================================================================
 */

/* Container principal - Grid 2 colonnes */
.product-layout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* COLONNE GAUCHE - Scrollable */
.product-left-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* COLONNE DROITE - Sticky Buy Box */
.product-buy-box-sticky {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===================================
   HERO SECTION - Simple Image Slider
   =================================== */
.product-image-slider {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-main-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.03), rgba(88, 135, 62, 0.01));
  border-radius: 16px;
  padding: 40px 20px;
  min-height: 400px;
}

.main-product-image {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Gallery Thumbnails */
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 2px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

.thumb-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 135, 62, 0.2);
}

.thumb-item.active {
  border-color: var(--accent);
  border-width: 3px;
  box-shadow: 0 4px 12px rgba(88, 135, 62, 0.3);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================
   BUY BOX - Sticky Sidebar
   =================================== */
.product-breadcrumb {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-breadcrumb a:hover {
  color: var(--accent);
}

.product-breadcrumb .separator {
  color: var(--line);
}

.product-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

/* Rating Stars */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-rating .stars {
  display: flex;
  gap: 2px;
}

.product-rating .star {
  font-size: 18px;
  color: #ddd;
}

.product-rating .star.filled {
  color: #fbbf24;
}

.product-rating .rating-count {
  font-size: 14px;
  color: var(--muted);
}

/* Brand Badge */
.product-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.product-brand-badge svg {
  flex-shrink: 0;
}

/* Pack Bars - Horizontal Design */
.pack-bars-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pack-bar {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--ink);
}

.pack-bar:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.pack-bar.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(88, 135, 62, 0.25);
}

.pack-bar__title {
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pack-bar__price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pack-bar__price .old {
  text-decoration: line-through;
  opacity: 0.7;
}

.pack-bar__price .new {
  font-weight: 700;
  font-size: 17px;
}

/* Price Display */
.product-price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-current {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.price-old {
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(88, 135, 62, 0.3);
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(88, 135, 62, 0.4);
}

/* Reassurance Icons */
/* Reassurance Badges - New Design */
.product-reassurance-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.reassurance-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--accent-soft);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.reassurance-badge:hover {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 4px 12px rgba(88, 135, 62, 0.15);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.badge-text span {
  font-size: 12px;
  color: var(--muted);
}

/* ===================================
   CONTENT SECTIONS - Left Column
   =================================== */

/* Short Description */
.product-short-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Tabs Container */
.product-tabs-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.tabs-nav {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 24px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color 0.3s ease;
  border-radius: 0;
}

.tab-btn:hover {
  color: var(--accent);
}

.tab-btn.active {
  color: var(--accent);
  font-weight: 600;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.benefit-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Ingredients List */
.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ingredient-item {
  padding: 16px;
  background: var(--accent-soft);
  border-radius: 12px;
}

.ingredient-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--ink);
}

.ingredient-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Usage Steps */
.product-usage-steps {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.product-usage-steps h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.step-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Before/After Comparison */
.product-before-after {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.product-before-after h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}

.before-after-slider {
  display: grid;
  gap: 16px;
}

.before-after-slider .ba-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.comparison-side {
  text-align: center;
}

.comparison-label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.comparison-placeholder {
  aspect-ratio: 4/3;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
}

.comparison-divider {
  color: var(--accent);
}

/* Social Wall */
.product-social-wall {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.product-social-wall h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}

.social-scroll-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.social-video-item {
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--accent-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
}

.tiktok-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

.tiktok-slider::-webkit-scrollbar {
  display: none;
}

.tiktok-item {
  flex: 0 0 240px;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
}

.tiktok-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tiktok-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tiktok-item:hover .tiktok-overlay {
  opacity: 1;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  color: #0d0d0d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* FAQ Section */
.product-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.product-faq h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

/* Help Banner */
.product-help-banner {
  background: linear-gradient(135deg, var(--accent), #3d6b2a);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
}

.help-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.help-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.help-text {
  flex: 1;
}

.help-text h4 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.help-text p {
  margin: 0;
  opacity: 0.9;
}

/* ===================================
   MOBILE STICKY BAR
   =================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 50;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-price-main {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.sticky-price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.sticky-cta {
  padding: 14px 32px;
  white-space: nowrap;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .product-layout-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 100px;
  }

  .product-buy-box-sticky {
    position: relative;
    top: 0;
    order: -1;
  }

  .mobile-sticky-bar {
    display: flex;
  }
}

@media (max-width: 768px) {
  .product-layout-container {
    padding: 26px 16px 100px;
  }

  .product-image-slider {
    padding: 20px;
  }

  .slider-main-image {
    min-height: 300px;
    padding: 30px 15px;
  }

  .product-buy-box-sticky {
    padding: 24px;
  }

  .product-title {
    font-size: 24px;
  }

  .price-current {
    font-size: 28px;
  }

  .pack-bars-container {
    gap: 8px;
  }

  .pack-bar {
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .pack-bar__price {
    align-self: flex-end;
  }

  .tabs-nav {
    flex-wrap: wrap;
  }

  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .comparison-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-divider {
    transform: rotate(90deg);
  }

  .social-scroll-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PAGE NOTRE HISTOIRE - DESIGN ANIMÉ
   ============================================ */

/* Hero animé - Réduit */
.story-hero-animated {
  position: relative;
  text-align: center;
  padding: 40px 32px 30px;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.08), rgba(0, 0, 0, 0.02));
  border-radius: 20px;
  margin-bottom: 40px;
  overflow: hidden;
}

.story-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.story-hero-animated h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 44px);
  margin: 12px 0 14px;
  line-height: 1.2;
}

.story-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Animations d'entrée */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay {
  animation: slideUp 0.8s ease-out 0.4s both;
}

/* Décoration flottante désactivée */

/* Timeline en grille - Cartes côte à côte */
.story-timeline {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.timeline-line {
  display: none;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(88, 135, 62, 0.2);
  color: var(--accent);
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 28px rgba(88, 135, 62, 0.3);
}

.timeline-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.timeline-item:hover .timeline-content {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.timeline-number {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.timeline-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}

.timeline-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* Responsive timeline */
@media (max-width: 768px) {
  .story-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
  }

  .timeline-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Section Certifications - Réduit */
.story-certifications {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-certifications.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.certif-icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  animation: pulse-soft 3s ease-in-out infinite;
}

@keyframes pulse-soft {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(88, 135, 62, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(88, 135, 62, 0);
  }
}

.certif-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  margin: 0 0 16px;
  color: var(--ink);
}

.certif-header p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.certif-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.certif-badge {
  background: var(--accent-soft);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.certif-badge:hover {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(88, 135, 62, 0.2);
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.certif-badge span {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
}

/* Section Finale CTA - Réduit */
.story-finale-cta {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #3d6b2a 100%);
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 40px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-finale-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.story-finale-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
  animation: float-around 25s ease-in-out infinite;
}

.finale-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.finale-icon-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.finale-icon {
  font-size: 40px;
  animation: bounce-in 0.6s ease-out both;
}

.finale-icon.delay-1 {
  animation-delay: 0.2s;
}

.finale-icon.delay-2 {
  animation-delay: 0.4s;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.story-finale-cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.3;
}

.story-finale-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.btn-animated {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--accent);
  border: 2px solid #fff;
}

.btn-animated:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-animated svg {
  transition: transform 0.3s ease;
}

.btn-animated:hover svg {
  transform: translateX(5px);
}

/* Section Coaching WhatsApp */
.story-coaching-whatsapp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-coaching-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.coaching-card-modern {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.coaching-card-modern:hover {
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.coaching-illustration {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(88, 135, 62, 0.15));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  animation: pulse-soft 3s ease-in-out infinite;
}

.coaching-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--ink);
}

.coaching-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.coaching-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.feature-tag:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #58873e;
  border-color: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #58873e;
  border-color: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

/* Responsive coaching */
@media (max-width: 768px) {
  .coaching-card-modern {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .coaching-illustration {
    margin: 0 auto;
  }

  .coaching-features {
    justify-content: center;
  }
}

/* Animation au scroll générique */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE CONTACT - LAYOUT STICKY MODERNE
   ============================================ */

/* Hero Contact Compact */
.contact-hero-compact {
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.06), rgba(0, 0, 0, 0.01));
  border-radius: 20px;
  margin-bottom: 40px;
}

.contact-hero-compact h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 12px 0 14px;
  line-height: 1.2;
  color: var(--ink);
}

.contact-hero-compact p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
}

/* Layout 2 colonnes avec Sticky */
.contact-layout-sticky {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

/* Sidebar Sticky à gauche */
.contact-sidebar-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
}

.quick-response-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.quick-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.quick-response-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}

.quick-response-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.quick-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.quick-info-list {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}

.info-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Formulaire à droite */
.contact-form-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--ink);
}

.form-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.required {
  color: #e74c3c;
}

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 135, 62, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  color: #e74c3c;
  font-size: 13px;
  margin-top: 4px;
}

.btn-submit {
  margin-top: 8px;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* Section bas de page */
.contact-bottom-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.bottom-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.bottom-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.bottom-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.bottom-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink);
}

.bottom-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.bottom-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bottom-card a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.social-links-bottom {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Contact */
@media (max-width: 980px) {
  .contact-layout-sticky {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-sidebar-sticky {
    position: relative;
    top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero-compact {
    padding: 32px 24px;
  }

  .quick-response-card {
    padding: 28px 20px;
  }

  .contact-form-container {
    padding: 28px 20px;
  }

  .contact-bottom-info {
    gap: 16px;
  }
}

/* ============================================
   NOUVELLE PAGE PRODUIT OPTIMISÉE
   ============================================ */

.product-page-zinyss {
  background: #fafafa;
  padding: 32px 0 60px;
}

.product-container-new {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 480px;
  gap: 48px;
  align-items: start;
}

/* ============================================
   COLONNE GAUCHE - IMAGES & CONTENU
   ============================================ */

.product-left-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section Images */
.product-images-section {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.main-product-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.05), rgba(0, 0, 0, 0.02));
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-product-image img:hover {
  transform: scale(1.05);
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
}

.product-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
}

.thumb-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.thumb-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(88, 135, 62, 0.3);
}

/* Description Courte */
.product-short-description {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* Bénéfices */
.product-benefits-section {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.product-benefits-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px 0;
}

/* Onglets Bénéfices / Ingrédients */
.benefits-tabs-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--line);
}

.benefit-tab {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-light);
  background: transparent;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.benefit-tab:hover {
  color: var(--accent);
  background: rgba(88, 135, 62, 0.04);
}

.benefit-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 700;
}

.benefit-tab-content {
  display: none;
}

.benefit-tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.04), rgba(0, 0, 0, 0.01));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(88, 135, 62, 0.15);
  border-color: var(--accent);
}

/* Icône de bénéfice sur page produit */
.product-benefits-section .benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.benefit-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px 0;
}

.benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-light);
  margin: 0;
}

/* Liste des ingrédients */
.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.04), rgba(0, 0, 0, 0.01));
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.ingredient-item:hover {
  background: rgba(88, 135, 62, 0.08);
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(88, 135, 62, 0.1);
}

.ingredient-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}

.ingredient-content {
  flex: 1;
}

.ingredient-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px 0;
}

.ingredient-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-light);
  margin: 0;
}

/* Mode d'emploi */
.product-usage-section {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.product-usage-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px 0;
}

.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================
   CHECKOUT PAGE STYLES
   ========================================== */

/* Page Checkout Zinyss */
.checkout-page-zinyss {
  background: #f8f9fa;
  padding: 0;
  min-height: 100vh;
}

/* Hero Section Animé - Checkout */
.checkout-hero-animated {
  position: relative;
  color: #0d0d0d;
  padding: 50px 0;
  text-align: center;
  margin-bottom: 40px;
}

.checkout-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 10px auto 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.15);
}

.checkout-hero-animated .pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(0);
  color: #0d0d0d;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-hero-animated h1 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.checkout-lead {
  font-size: 15px;
  font-weight: 400;
  color: rgba(13, 13, 13, 0.9);
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Decoration */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

.floating-circle.circle-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-circle.circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-circle.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 50%;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-slide-up-delay {
  animation: slideUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

/* Container Checkout */
.container-checkout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Layout principal */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6px;
  padding: 8px 0 10px;
  align-items: start;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Sections */
.checkout-section {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px 0;
}

/* Sélecteur de Packs */
.packs-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pack-option-checkout {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: #fff;
}

.pack-option-checkout:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(88, 135, 62, 0.12);
  transform: translateY(-2px);
}

.pack-option-checkout.selected {
  border-color: var(--accent);
  background: rgba(88, 135, 62, 0.04);
  box-shadow: 0 4px 20px rgba(88, 135, 62, 0.2);
}

.pack-option-checkout.recommended {
  border-color: var(--accent);
}

.badge-best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.pack-image {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.pack-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pack-info {
  text-align: center;
  flex: 1;
}

.pack-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.pack-qty {
  font-size: 13px;
  color: var(--ink-light);
  margin: 0 0 12px 0;
}

.pack-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pack-price-old {
  font-size: 14px;
  color: var(--ink-light);
  text-decoration: line-through;
}

.pack-price-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.pack-badge-promo {
  background: #ff6b35;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.pack-selector {
  width: 24px;
  height: 24px;
}

.pack-selector input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}

/* Panier Checkout */
.cart-items-checkout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-checkout {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.item-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.item-details h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.item-details p {
  font-size: 13px;
  color: var(--ink-light);
  margin: 0;
}

/* Sélecteur de Quantité */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
}

.qty-btn:hover {
  background: var(--accent);
  color: #fff;
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-input {
  width: 50px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: #f8f9fa;
}

.item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* Champs de formulaire personnalisés */
.checkout-fields-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group.full-width {
  grid-column: 1 / -1;
}

.field-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.field-group label .required {
  color: #e74c3c;
  font-weight: 700;
}

.field-group .input-text {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  background: #fff;
}

.field-group .input-text:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 135, 62, 0.1);
}

.field-group textarea.input-text {
  resize: vertical;
  min-height: 80px;
}

.field-group select.input-text {
  cursor: pointer;
}

.variation-info {
  font-size: 13px;
  color: var(--ink-light);
  margin: 4px 0 0 0;
}

/* Invoice Section */
.invoice-section {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.vat-field {
  display: none;
  margin-top: 12px;
}

.vat-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* Coupon Section */
.coupon-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.coupon-input-wrapper {
  display: flex;
  gap: 8px;
}

.coupon-input-wrapper .input-text {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.coupon-input-wrapper .input-text:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 135, 62, 0.1);
}

.btn-apply-coupon {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-apply-coupon:hover {
  background: #6a9f4a;
  transform: translateY(-1px);
}

.btn-apply-coupon:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.coupon-message {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.summary-row.discount {
  color: var(--accent);
}

.summary-row.discount .summary-price {
  font-weight: 700;
}

/* Order Summary */
.order-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--ink);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 12px;
}

.summary-price {
  font-weight: 600;
}

.summary-price.free {
  color: var(--accent);
  font-weight: 700;
}

.summary-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}

/* Champs de formulaire */
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.woocommerce-billing-fields,
.woocommerce-shipping-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row {
  margin: 0;
}

.woocommerce-billing-fields .form-row-wide,
.woocommerce-shipping-fields .form-row-wide {
  grid-column: 1 / -1;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 135, 62, 0.1);
}

/* Sidebar */
.checkout-sidebar {
  position: relative;
}

.summary-sticky {
  position: sticky;
  top: 24px;
}

.summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.summary-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line);
}

/* Order Review */
#order_review {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.woocommerce-checkout-review-order-table th {
  font-weight: 600;
  color: var(--ink-light);
  font-size: 14px;
}

.woocommerce-checkout-review-order-table td {
  font-weight: 600;
  color: var(--ink);
}

.cart-subtotal td,
.order-total td {
  font-size: 16px;
}

.order-total th,
.order-total td {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 16px;
  border-bottom: none;
}

.order-total td {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Affichage des coupons de réduction */
.cart-discount th {
  color: #15803d !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-discount td {
  color: #15803d !important;
  font-weight: 700;
}

.cart-discount .woocommerce-remove-coupon {
  color: #dc2626;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  margin-left: 6px;
}

.cart-discount .woocommerce-remove-coupon:hover {
  opacity: 1;
}

/* Style du subtotal quand il y a une remise */
.woocommerce-checkout-review-order-table tfoot .cart-subtotal.has-discount td {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-checkout-review-order-table tfoot .cart-subtotal.has-discount td::before {
  content: attr(data-original-price);
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 400;
}

/* Réassurances */
.checkout-reassurances {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.reassurance-item svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    order: -1;
  }

  .summary-sticky {
    position: static;
  }

  .packs-selector {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checkout-hero-animated {
    padding: 40px 0;
  }

  .checkout-hero-animated h1 {
    font-size: 28px;
  }

  .checkout-lead {
    font-size: 14px;
  }

  .checkout-hero-animated .pill {
    font-size: 11px;
    padding: 5px 14px;
  }

  .floating-circle.circle-1 {
    width: 80px;
    height: 80px;
  }

  .floating-circle.circle-2 {
    width: 60px;
    height: 60px;
  }

  .floating-circle.circle-3 {
    width: 70px;
    height: 70px;
  }

  .checkout-section {
    padding: 24px 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .cart-item-checkout {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }

  .item-quantity,
  .item-price {
    grid-column: 1 / -1;
  }

  .item-quantity {
    justify-self: start;
  }

  .item-price {
    justify-self: end;
  }

  .woocommerce-billing-fields,
  .woocommerce-shipping-fields {
    grid-template-columns: 1fr;
  }

  .summary-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .container-checkout {
    padding: 0 16px;
  }

  .checkout-hero-animated {
    padding: 35px 0;
  }

  .checkout-hero-animated h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .checkout-lead {
    font-size: 13px;
  }

  .checkout-hero-animated .pill {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 10px;
  }

  .floating-circle.circle-1 {
    width: 60px;
    height: 60px;
  }

  .floating-circle.circle-2 {
    width: 50px;
    height: 50px;
  }

  .floating-circle.circle-3 {
    width: 55px;
    height: 55px;
  }

  .checkout-section {
    padding: 20px 16px;
  }

  .pack-option-checkout {
    padding: 16px;
  }

  .pack-image {
    height: 100px;
  }
}

.usage-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(135deg, rgba(88, 135, 62, 0.04), rgba(0, 0, 0, 0.01));
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.usage-step:hover {
  background: rgba(88, 135, 62, 0.08);
  transform: translateX(4px);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.step-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px 0;
}

.step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-light);
  margin: 0;
}

/* FAQ */
.product-faq-section {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.product-faq-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: rgba(88, 135, 62, 0.04);
  border-color: var(--accent);
}

.faq-item summary {
  padding: 18px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item[open] summary:after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  padding: 0 20px 18px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-light);
}

/* ============================================
   COLONNE DROITE - CARTE STICKY
   ============================================ */

.product-buy-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-brand {
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.product-brand span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.product-title-card {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.product-price-card {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.product-price-card del {
  font-size: 20px;
  color: var(--ink-light);
  margin-right: 8px;
}

/* Sélection des Packs */
.pack-selection {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.pack-title {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px 0;
}

.pack-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pack-option {
  cursor: pointer;
  position: relative;
}

.pack-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-card {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.pack-option input[type="radio"]:checked + .pack-card {
  border-color: var(--accent);
  background: rgba(88, 135, 62, 0.06);
  box-shadow: 0 6px 20px rgba(88, 135, 62, 0.2);
}

.pack-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pack-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pack-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.pack-quantity {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 600;
}

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.pack-price .old-price {
  font-size: 16px;
  color: var(--ink-light);
  text-decoration: line-through;
}

.pack-price .current-price {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.pack-economy {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(88, 135, 62, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Bouton Checkout */
.product-cart-form {
  margin-top: 8px;
}

.btn-checkout-direct {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(88, 135, 62, 0.3);
}

.btn-checkout-direct:hover {
  background: #6fa04a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(88, 135, 62, 0.4);
}

.btn-checkout-direct svg {
  transition: transform 0.3s ease;
}

.btn-checkout-direct:hover svg {
  transform: translateX(-4px);
}

/* Réassurances */
.product-reassurances {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}

.reassurance-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.reassurance-item span {
  font-weight: 600;
}

/* ============================================
   RESPONSIVE - PAGE PRODUIT
   ============================================ */

@media (max-width: 1024px) {
  .product-container-new {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-buy-card {
    position: relative;
    top: 0;
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-page-zinyss {
    padding: 20px 0 40px;
  }

  .product-container-new {
    padding: 0 16px;
    gap: 24px;
  }

  .product-buy-card {
    padding: 24px;
  }

  .product-title-card {
    font-size: 24px;
  }

  .product-price-card {
    font-size: 28px;
  }

  .benefits-grid {
    gap: 16px;
  }

  .product-benefits-section,
  .product-usage-section,
  .product-faq-section {
    padding: 24px;
  }

  .product-benefits-section h2,
  .product-usage-section h2,
  .product-faq-section h2 {
    font-size: 22px;
  }

  .thumb-item {
    width: 60px;
    height: 60px;
  }
}

/* ============================================
   CARTE WHATSAPP - PAGE PRODUIT
   ============================================ */

.product-whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
  overflow: hidden;
}

.whatsapp-card-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  position: relative;
}

.whatsapp-card-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.whatsapp-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.whatsapp-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.whatsapp-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.whatsapp-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.btn-whatsapp-product {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #fff;
  color: #25D366;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.btn-whatsapp-product:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-product svg {
  width: 20px;
  height: 20px;
}

/* Responsive WhatsApp Card */
@media (max-width: 768px) {
  .whatsapp-card-content {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .whatsapp-text h3 {
    font-size: 18px;
  }

  .btn-whatsapp-product {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive TikTok Section */
@media (max-width: 640px) {
  .product-tiktok-section {
    padding: 24px;
  }

  .product-tiktok-section h2 {
    font-size: 22px;
  }

  .tiktok-video-card {
    width: 160px;
    height: 284px;
  }
}

/* Réorganisation de la page produit sur mobile - JavaScript gère l'ordre */
@media (max-width: 1023px) {
  /* Container en flex column pour mobile */
  .product-layout-container {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Sidebar n'est plus sticky sur mobile */
  .product-sidebar {
    position: static !important;
    top: auto !important;
  }
}

/* Section Code Promo - Checkout */
.coupon-card {
  margin-bottom: 20px;
}

.coupon-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.coupon-section {
  margin: 0;
}

.coupon-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coupon-input-wrapper #coupon_code {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #1f2937;
  transition: border-color 0.3s ease;
}

.coupon-input-wrapper #coupon_code:focus {
  outline: none;
  border-color: #58873e;
}

.coupon-input-wrapper .btn-apply-coupon {
  padding: 10px 20px;
  background: transparent;
  color: #58873e;
  border: 2px solid #58873e;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.coupon-input-wrapper .btn-apply-coupon:hover {
  background: #58873e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(88, 135, 62, 0.2);
}

.coupon-input-wrapper .btn-apply-coupon:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.coupon-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  display: none;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coupon-message .success {
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dcfce7;
  padding: 4px 0;
  border-radius: 6px;
  font-weight: 600;
}

.coupon-message .success::before {
  content: "🎉";
  display: inline-block;
  font-size: 18px;
  animation: bounce 0.5s ease-out;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.coupon-message .error {
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-message .error::before {
  content: "✕";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fee2e2;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .coupon-input-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .coupon-input-wrapper #coupon_code,
  .coupon-input-wrapper .btn-apply-coupon {
    width: 100%;
  }
}

/* ========================================
   AMÉLIORATIONS MOBILE & HEADER
   ======================================== */

/* Section ingrédients: Mobile très petit (<418px) */
@media (max-width: 418px) {
  .ingredients-section {
    padding: 20px 0;
    margin: 0;
    border-radius: 0;
  }
.ingredients-section,
.ingredients-layout {
  overflow: hidden;
}
  .ingredients-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .ingredients-visual {
    max-height: 180px;
    width: 100%;
    overflow: hidden;
  }

  .ingredients-visual img {
    object-fit: contain;
    max-height: 100%;
    width: 100%;
    height: auto;
  }

  .ingredients-content {
    width: 100%;
  }

  .ingredients-content h2 {
    font-size: 18px;
    line-height: 1.3;
    margin: 8px 0 10px;
  }

  .ingredients-content p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .ingredient-tag {
    font-size: 10px;
    padding: 4px 8px;
    white-space: normal;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .ingredients-certifs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .certif-item {
    font-size: 10px;
    padding: 4px 8px;
  }

  .certif-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}

/* Page produit: Réduire espacements pour mobile <404px */
@media (max-width: 403px) {
  .product-page .site-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-container-new {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-images-section {
    padding: 16px;
  }

  .product-buy-card {
    padding: 18px;
  }
}
