/* =================================================================
   TEMPLATE FICHE PRODUIT — BOUTIQUE ASNK / Ecolo Green
   Tout le CSS est scopé sous .asnk-product pour ne pas entrer en
   conflit avec le thème WordPress.  Variables de marque dans :root.
   ================================================================= */

:root{
  /* ---- Couleurs de marque ---- */
  --asnk-navy:        #16243F;   /* principal : titres, texte fort, boutons */
  --asnk-navy-700:    #20335A;   /* hover bouton navy */
  --asnk-green:       #3E9B2E;   /* accent éco */
  --asnk-green-700:   #2F7A22;   /* hover vert */
  --asnk-gold:        #C9A24B;   /* accent discret : filets, détails */
  --asnk-white:       #FFFFFF;
  --asnk-cream:       #FDF8F2;   /* fond crème doux */
  --asnk-mint:        #F1F8EE;   /* fond vert très clair (bloc éco) */
  --asnk-grey:        #5B6470;   /* texte secondaire */
  --asnk-line:        #ECE7DE;   /* filets / bordures discrètes */
  --asnk-line-soft:   #F2EEE6;

  /* ---- Typographie ---- */
  --asnk-font-title:  "Playfair Display", "Iowan Old Style", Georgia, serif;
  --asnk-font-body:   "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ---- Rayons / ombres ---- */
  --asnk-r-sm:  10px;
  --asnk-r-md:  16px;
  --asnk-r-lg:  22px;
  --asnk-r-pill: 999px;
  --asnk-shadow-sm: 0 1px 2px rgba(22,36,63,.05), 0 2px 8px rgba(22,36,63,.05);
  --asnk-shadow-md: 0 6px 22px rgba(22,36,63,.08), 0 2px 6px rgba(22,36,63,.05);
  --asnk-shadow-lg: 0 20px 50px rgba(22,36,63,.16);

  --asnk-ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset léger, scopé ---------- */
.asnk-product *,
.asnk-product *::before,
.asnk-product *::after{ box-sizing:border-box; }

.asnk-product{
  font-family:var(--asnk-font-body);
  color:var(--asnk-navy);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  background:var(--asnk-white);
}
.asnk-product img{ max-width:100%; display:block; }
.asnk-product button{ font-family:inherit; cursor:pointer; }
.asnk-product a{ color:inherit; }

.asnk-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

/* =================================================================
   BARRE DE DÉMO (mini-header)  —  NON exportée en production.
   En vrai WordPress, l'en-tête + le panier viennent du thème.
   Présente ici uniquement pour démontrer l'animation panier.
   ================================================================= */
.asnk-demobar{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--asnk-line);
}
.asnk-demobar__in{
  max-width:1200px; margin:0 auto; padding:12px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.asnk-brand{ display:flex; align-items:baseline; gap:9px; }
.asnk-brand b{
  font-family:var(--asnk-font-title); font-weight:700; font-size:21px;
  letter-spacing:.01em; color:var(--asnk-navy);
}
.asnk-brand span{
  font-size:11px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--asnk-green);
}
.asnk-cartbtn{
  position:relative; display:inline-flex; align-items:center; gap:9px;
  background:var(--asnk-white); color:var(--asnk-navy);
  border:1px solid var(--asnk-line); border-radius:var(--asnk-r-pill);
  padding:9px 16px 9px 13px; font-size:14px; font-weight:600;
  transition:border-color .18s var(--asnk-ease), box-shadow .18s var(--asnk-ease);
}
.asnk-cartbtn:hover{ border-color:var(--asnk-navy); box-shadow:var(--asnk-shadow-sm); }
.asnk-cartbtn svg{ width:20px; height:20px; }
.asnk-cartbtn__count{
  position:absolute; top:-7px; right:-7px; min-width:21px; height:21px; padding:0 5px;
  display:grid; place-items:center; background:var(--asnk-green); color:#fff;
  border-radius:var(--asnk-r-pill); font-size:11px; font-weight:700;
  border:2px solid #fff; transform:scale(0); transition:transform .26s var(--asnk-ease);
}
.asnk-cartbtn__count.is-on{ transform:scale(1); }
.asnk-cartbtn__count.pop{ animation:asnk-pop .42s var(--asnk-ease); }
@keyframes asnk-pop{ 0%{transform:scale(1);} 40%{transform:scale(1.5);} 100%{transform:scale(1);} }

/* =================================================================
   1 · FIL D'ARIANE
   ================================================================= */
.asnk-breadcrumb{ padding:20px 0 4px; }
.asnk-breadcrumb ol{
  list-style:none; margin:0; padding:0;
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  font-size:13px; color:var(--asnk-grey);
}
.asnk-breadcrumb a{ text-decoration:none; color:var(--asnk-grey); transition:color .18s; }
.asnk-breadcrumb a:hover{ color:var(--asnk-green); }
.asnk-breadcrumb li[aria-current]{ color:var(--asnk-navy); font-weight:600; }
.asnk-breadcrumb svg{ width:13px; height:13px; color:#C9C2B6; flex:none; }

/* =================================================================
   2 · BLOC HAUT — 2 colonnes desktop
   ================================================================= */
.asnk-top{
  display:grid; grid-template-columns:1fr; gap:32px;
  padding:18px 0 8px;
}
@media (min-width:920px){
  .asnk-top{ grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:56px; align-items:start; }
}

/* ----- Galerie ----- */
.asnk-gallery{ display:flex; flex-direction:column; gap:14px; }
.asnk-gallery__stage{
  position:relative;
  background:var(--asnk-cream);
  border:1px solid var(--asnk-line);
  border-radius:var(--asnk-r-lg);
  overflow:hidden;
  aspect-ratio:1/1;
}
.asnk-gallery__stage img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity .4s var(--asnk-ease), transform 1.1s var(--asnk-ease);
}
.asnk-gallery__stage img.is-active{ opacity:1; }
.asnk-gallery__stage:hover img.is-active{ transform:scale(1.05); }
.asnk-ecoflag{
  position:absolute; top:14px; left:14px; z-index:2;
  display:inline-flex; align-items:center; gap:7px;
  background:var(--asnk-green); color:#fff;
  font-size:12px; font-weight:700; letter-spacing:.02em;
  padding:7px 13px 7px 11px; border-radius:var(--asnk-r-pill);
  box-shadow:0 4px 14px rgba(62,155,46,.32);
}
.asnk-ecoflag svg{ width:15px; height:15px; }

.asnk-thumbs{
  display:grid; grid-template-columns:repeat(5,1fr); gap:10px;
}
.asnk-thumb{
  position:relative; padding:0; background:var(--asnk-cream);
  border:1.5px solid var(--asnk-line); border-radius:var(--asnk-r-sm);
  overflow:hidden; aspect-ratio:1/1;
  transition:border-color .18s var(--asnk-ease), transform .18s var(--asnk-ease);
}
.asnk-thumb img{ width:100%; height:100%; object-fit:cover; }
.asnk-thumb:hover{ transform:translateY(-2px); border-color:var(--asnk-gold); }
.asnk-thumb[aria-current="true"]{ border-color:var(--asnk-navy); }
.asnk-thumb:focus-visible{ outline:2px solid var(--asnk-green); outline-offset:2px; }

/* ----- Colonne achat ----- */
.asnk-buy{ display:flex; flex-direction:column; }
@media (min-width:920px){
  .asnk-buy{ position:sticky; top:88px; }
}
.asnk-eyebrow{
  font-size:12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--asnk-green); margin:0 0 10px;
  display:inline-flex; align-items:center; gap:8px;
}
.asnk-eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--asnk-green); }
.asnk-title{
  font-family:var(--asnk-font-title); font-weight:700;
  font-size:clamp(28px,4.4vw,42px); line-height:1.12; letter-spacing:-.01em;
  margin:0 0 14px; color:var(--asnk-navy); text-wrap:balance;
}
.asnk-title em{ color:var(--asnk-green); font-style:italic; }

.asnk-priceline{ display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; margin:0 0 18px; }
.asnk-price{
  font-family:var(--asnk-font-title); font-weight:700;
  font-size:34px; color:var(--asnk-navy); line-height:1;
}
.asnk-price small{ font-family:var(--asnk-font-body); font-size:14px; font-weight:500; color:var(--asnk-grey); }
.asnk-vat{ font-size:13px; color:var(--asnk-grey); }

.asnk-shortdesc{
  font-size:15.5px; line-height:1.66; color:#3a4453;
  margin:0 0 24px; max-width:46ch; text-wrap:pretty;
}

/* divider à filet or */
.asnk-rule{ height:1px; background:linear-gradient(90deg,var(--asnk-gold),transparent 70%); border:0; margin:0 0 22px; }

/* ----- Quantité + bouton ----- */
.asnk-cartrow{ display:flex; flex-wrap:wrap; gap:12px; align-items:stretch; }
.asnk-qty{
  display:inline-flex; align-items:center; background:#fff;
  border:1px solid var(--asnk-line); border-radius:var(--asnk-r-md); overflow:hidden;
}
.asnk-qty button{
  width:48px; height:56px; border:0; background:transparent; font-size:22px; line-height:1;
  color:var(--asnk-navy); display:grid; place-items:center;
  transition:background .15s var(--asnk-ease), color .15s;
}
.asnk-qty button:hover{ background:var(--asnk-cream); color:var(--asnk-green); }
.asnk-qty button:disabled{ opacity:.3; cursor:not-allowed; }
.asnk-qty input{
  width:48px; height:56px; border:0; text-align:center; font-family:inherit;
  font-size:17px; font-weight:600; color:var(--asnk-navy); background:transparent;
  -moz-appearance:textfield;
}
.asnk-qty input::-webkit-outer-spin-button,
.asnk-qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }

.asnk-addcart{
  flex:1 1 230px; min-height:56px;
  display:inline-flex; align-items:center; justify-content:center; gap:11px;
  background:var(--asnk-navy); color:#fff; border:0; border-radius:var(--asnk-r-md);
  font-size:16px; font-weight:600; letter-spacing:.01em; padding:0 22px;
  box-shadow:var(--asnk-shadow-sm);
  transition:background .18s var(--asnk-ease), box-shadow .18s var(--asnk-ease), transform .08s var(--asnk-ease);
}
.asnk-addcart svg{ width:20px; height:20px; }
.asnk-addcart:hover{ background:var(--asnk-navy-700); box-shadow:var(--asnk-shadow-md); }
.asnk-addcart:active{ transform:translateY(1px); }
.asnk-addcart.is-done{ background:var(--asnk-green); }

.asnk-sku{ font-size:13px; color:var(--asnk-grey); margin:16px 0 0; }
.asnk-sku b{ color:var(--asnk-navy); font-weight:600; }

/* ----- Bloc 3 arguments éco (STATIQUE) ----- */
.asnk-eco{
  margin-top:26px; background:var(--asnk-mint);
  border:1px solid #DCEAD3; border-radius:var(--asnk-r-md); padding:20px 22px;
}
.asnk-eco__head{
  display:flex; align-items:center; gap:9px; margin:0 0 14px;
  font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--asnk-green-700);
}
.asnk-eco__head svg{ width:18px; height:18px; }
.asnk-eco__list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.asnk-eco__item{ display:flex; gap:13px; align-items:flex-start; }
.asnk-eco__ico{
  flex:none; width:38px; height:38px; border-radius:11px; background:#fff;
  border:1px solid #DCEAD3; display:grid; place-items:center; color:var(--asnk-green-700);
}
.asnk-eco__ico svg{ width:21px; height:21px; }
.asnk-eco__item h4{ margin:0 0 2px; font-size:14.5px; font-weight:700; color:var(--asnk-navy); }
.asnk-eco__item p{ margin:0; font-size:13.5px; line-height:1.5; color:#4b5563; }

/* ----- Bandeau réassurance (STATIQUE) ----- */
.asnk-trust{
  margin-top:18px; display:grid; grid-template-columns:1fr; gap:2px;
  border:1px solid var(--asnk-line); border-radius:var(--asnk-r-md); overflow:hidden;
}
@media (min-width:560px){ .asnk-trust{ grid-template-columns:repeat(3,1fr); } }
.asnk-trust__item{
  display:flex; align-items:center; gap:11px; padding:14px 16px; background:#fff;
}
@media (min-width:560px){
  .asnk-trust__item + .asnk-trust__item{ box-shadow:-1px 0 0 var(--asnk-line); }
}
.asnk-trust__item svg{ width:24px; height:24px; color:var(--asnk-gold); flex:none; }
.asnk-trust__item b{ display:block; font-size:13.5px; font-weight:700; color:var(--asnk-navy); }
.asnk-trust__item span{ display:block; font-size:12px; color:var(--asnk-grey); }

/* =================================================================
   3 · DESCRIPTION LONGUE + SPÉCIFICATIONS (onglets)
   ================================================================= */
.asnk-details{ margin:64px 0 8px; }
.asnk-tablist{
  display:flex; gap:4px; border-bottom:1px solid var(--asnk-line); flex-wrap:wrap;
}
.asnk-tab{
  position:relative; background:transparent; border:0; padding:14px 6px 16px;
  margin-right:22px; font-size:15px; font-weight:600; color:var(--asnk-grey);
  letter-spacing:.01em; transition:color .18s var(--asnk-ease);
}
.asnk-tab::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:2.5px;
  background:var(--asnk-green); border-radius:2px;
  transform:scaleX(0); transform-origin:left; transition:transform .26s var(--asnk-ease);
}
.asnk-tab:hover{ color:var(--asnk-navy); }
.asnk-tab[aria-selected="true"]{ color:var(--asnk-navy); }
.asnk-tab[aria-selected="true"]::after{ transform:scaleX(1); }
.asnk-tab .cnt{
  font-size:11px; font-weight:700; color:var(--asnk-grey);
  background:var(--asnk-line-soft); border-radius:var(--asnk-r-pill); padding:1px 7px; margin-left:6px;
}

.asnk-panel{ padding:30px 0 0; }
.asnk-panel[hidden]{ display:none; }

/* — Description longue — */
.asnk-longdesc{ display:grid; grid-template-columns:1fr; gap:28px; max-width:880px; }
.asnk-longdesc p{ margin:0 0 14px; font-size:15.5px; line-height:1.72; color:#3a4453; text-wrap:pretty; }
.asnk-longdesc p:last-child{ margin-bottom:0; }
.asnk-longdesc h3{
  font-family:var(--asnk-font-title); font-weight:600; font-size:21px; color:var(--asnk-navy);
  margin:0 0 10px;
}
.asnk-feat{ list-style:none; margin:14px 0 0; padding:0; display:grid; gap:10px; }
.asnk-feat li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color:#3a4453; }
.asnk-feat svg{ width:18px; height:18px; color:var(--asnk-green); flex:none; margin-top:2px; }

/* — Tableau de spécifications (style « filet or central ») — */
.asnk-specs{ max-width:760px; }
.asnk-specs table{ width:100%; border-collapse:collapse; }
.asnk-specs caption{
  text-align:left; font-family:var(--asnk-font-title); font-weight:600; font-size:20px;
  color:var(--asnk-navy); padding-bottom:14px;
}
.asnk-specs tr{ border-bottom:1px solid var(--asnk-line-soft); }
.asnk-specs tr:last-child{ border-bottom:0; }
.asnk-specs th,
.asnk-specs td{ padding:13px 18px; font-size:14.5px; vertical-align:top; }
.asnk-specs th{
  text-align:left; width:46%; font-weight:500; color:var(--asnk-grey);
  border-right:1px solid var(--asnk-gold);
}
.asnk-specs td{ font-weight:600; color:var(--asnk-navy); }
.asnk-specs tr:nth-child(even){ background:var(--asnk-cream); }

/* — Onglet Avis (état vide) — */
.asnk-reviews-empty{
  max-width:560px; text-align:center; margin:14px auto 8px; padding:40px 24px;
  border:1px dashed var(--asnk-line); border-radius:var(--asnk-r-lg); background:var(--asnk-cream);
}
.asnk-reviews-empty .stars{ display:inline-flex; gap:4px; color:var(--asnk-gold); margin-bottom:14px; }
.asnk-reviews-empty .stars svg{ width:22px; height:22px; }
.asnk-reviews-empty h3{ font-family:var(--asnk-font-title); font-weight:600; font-size:21px; margin:0 0 8px; color:var(--asnk-navy); }
.asnk-reviews-empty p{ margin:0; font-size:14.5px; color:var(--asnk-grey); }

/* =================================================================
   4 · PRODUITS LIÉS
   ================================================================= */
.asnk-related{ margin:66px 0 80px; }
.asnk-related__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin:0 0 26px; }
.asnk-related h2{
  font-family:var(--asnk-font-title); font-weight:700; font-size:clamp(24px,3vw,32px);
  margin:0; color:var(--asnk-navy); letter-spacing:-.01em;
}
.asnk-related__sub{ font-size:13px; color:var(--asnk-grey); margin:6px 0 0; }
.asnk-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (min-width:760px){ .asnk-grid{ grid-template-columns:repeat(4,1fr); gap:22px; } }

.asnk-card{
  display:flex; flex-direction:column; background:#fff;
  border:1px solid var(--asnk-line); border-radius:var(--asnk-r-md); overflow:hidden;
  transition:transform .22s var(--asnk-ease), box-shadow .22s var(--asnk-ease), border-color .22s;
}
.asnk-card:hover{ transform:translateY(-4px); box-shadow:var(--asnk-shadow-md); border-color:var(--asnk-line); }
.asnk-card__media{ position:relative; background:var(--asnk-cream); aspect-ratio:1/1; overflow:hidden; }
.asnk-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--asnk-ease); }
.asnk-card:hover .asnk-card__media img{ transform:scale(1.04); }
.asnk-card__tag{
  position:absolute; top:11px; left:11px; background:rgba(255,255,255,.92);
  font-size:11px; font-weight:700; letter-spacing:.04em; color:var(--asnk-green-700);
  padding:4px 10px; border-radius:var(--asnk-r-pill);
}
.asnk-card__body{ padding:16px 16px 18px; display:flex; flex-direction:column; flex:1; }
.asnk-card__title{
  font-family:var(--asnk-font-title); font-weight:600; font-size:16.5px; line-height:1.28;
  margin:0 0 4px; color:var(--asnk-navy);
}
.asnk-card__desc{ font-size:12.5px; color:var(--asnk-grey); margin:0 0 14px; line-height:1.45; }
.asnk-card__foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.asnk-card__price{ font-family:var(--asnk-font-title); font-weight:700; font-size:19px; color:var(--asnk-navy); }
.asnk-card__btn{
  display:inline-flex; align-items:center; gap:6px; background:var(--asnk-cream); color:var(--asnk-navy);
  border:1px solid var(--asnk-line); border-radius:var(--asnk-r-pill);
  padding:8px 14px; font-size:13px; font-weight:600;
  transition:background .18s var(--asnk-ease), color .18s, border-color .18s;
}
.asnk-card__btn svg{ width:15px; height:15px; }
.asnk-card__btn:hover{ background:var(--asnk-navy); color:#fff; border-color:var(--asnk-navy); }

/* =================================================================
   MINI-PANIER (drawer) + animation
   ================================================================= */
.asnk-overlay{
  position:fixed; inset:0; background:rgba(22,36,63,.42); z-index:90;
  opacity:0; visibility:hidden; transition:opacity .3s var(--asnk-ease), visibility .3s;
}
.asnk-overlay.is-open{ opacity:1; visibility:visible; }
.asnk-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(410px,92vw); z-index:91;
  background:#fff; box-shadow:var(--asnk-shadow-lg);
  display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .42s var(--asnk-ease);
}
.asnk-drawer.is-open{ transform:translateX(0); }
.asnk-drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 22px; border-bottom:1px solid var(--asnk-line);
}
.asnk-drawer__head h3{
  font-family:var(--asnk-font-title); font-weight:700; font-size:19px; margin:0; color:var(--asnk-navy);
  display:flex; align-items:center; gap:9px;
}
.asnk-drawer__head h3 svg{ width:20px; height:20px; color:var(--asnk-green); }
.asnk-close{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--asnk-line); background:#fff;
  display:grid; place-items:center; color:var(--asnk-navy);
  transition:background .15s, border-color .15s;
}
.asnk-close:hover{ background:var(--asnk-cream); border-color:var(--asnk-navy); }
.asnk-close svg{ width:18px; height:18px; }

.asnk-drawer__body{ flex:1; overflow:auto; padding:8px 22px; }
.asnk-drawer__empty{ text-align:center; color:var(--asnk-grey); font-size:14px; padding:50px 10px; }
.asnk-li{ display:flex; gap:13px; padding:16px 0; border-bottom:1px solid var(--asnk-line-soft); }
.asnk-li__img{ flex:none; width:62px; height:62px; border-radius:10px; overflow:hidden; background:var(--asnk-cream); border:1px solid var(--asnk-line); }
.asnk-li__img img{ width:100%; height:100%; object-fit:cover; }
.asnk-li__main{ flex:1; min-width:0; }
.asnk-li__name{ font-size:13.5px; font-weight:600; color:var(--asnk-navy); margin:0 0 3px; line-height:1.3; }
.asnk-li__meta{ font-size:12.5px; color:var(--asnk-grey); }
.asnk-li__price{ font-weight:700; color:var(--asnk-navy); font-size:14px; white-space:nowrap; }
.asnk-li__rm{ background:none; border:0; color:var(--asnk-grey); font-size:12px; padding:4px 0 0; text-decoration:underline; }
.asnk-li__rm:hover{ color:var(--asnk-green); }

.asnk-drawer__foot{ border-top:1px solid var(--asnk-line); padding:18px 22px 22px; }
.asnk-subtotal{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px; }
.asnk-subtotal b{ font-size:15px; color:var(--asnk-navy); }
.asnk-subtotal strong{ font-family:var(--asnk-font-title); font-size:24px; color:var(--asnk-navy); }
.asnk-drawer__note{ font-size:11.5px; color:var(--asnk-grey); margin:0 0 16px; }
.asnk-drawer__cta{
  display:flex; flex-direction:column; gap:9px;
}
.asnk-btn-primary{
  width:100%; min-height:52px; background:var(--asnk-navy); color:#fff; border:0;
  border-radius:var(--asnk-r-md); font-size:15px; font-weight:600;
  transition:background .18s var(--asnk-ease);
}
.asnk-btn-primary:hover{ background:var(--asnk-navy-700); }
.asnk-btn-ghost{
  width:100%; min-height:48px; background:#fff; color:var(--asnk-navy); border:1px solid var(--asnk-line);
  border-radius:var(--asnk-r-md); font-size:14px; font-weight:600;
  transition:border-color .18s, background .18s;
}
.asnk-btn-ghost:hover{ border-color:var(--asnk-navy); background:var(--asnk-cream); }

/* clone volant vers le panier */
.asnk-fly{
  position:fixed; z-index:120; border-radius:14px; overflow:hidden; pointer-events:none;
  box-shadow:var(--asnk-shadow-lg);
  transition:transform .85s cubic-bezier(.5,-0.2,.4,1), opacity .85s ease, width .85s var(--asnk-ease), height .85s var(--asnk-ease);
}
.asnk-fly img{ width:100%; height:100%; object-fit:cover; }

/* toast */
.asnk-toast{
  position:fixed; left:50%; bottom:26px; transform:translate(-50%,16px); z-index:130;
  background:var(--asnk-navy); color:#fff; padding:13px 20px; border-radius:var(--asnk-r-pill);
  font-size:14px; font-weight:600; box-shadow:var(--asnk-shadow-lg);
  display:flex; align-items:center; gap:9px; opacity:0; visibility:hidden;
  transition:opacity .3s var(--asnk-ease), transform .3s var(--asnk-ease), visibility .3s;
}
.asnk-toast.is-on{ opacity:1; visibility:visible; transform:translate(-50%,0); }
.asnk-toast svg{ width:18px; height:18px; color:#7BD867; }

@media (prefers-reduced-motion:reduce){
  .asnk-product *{ animation:none !important; transition:none !important; }
}

.asnk-visually-hidden{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* =================================================================
   OVERRIDES — neutraliser le style <button> global du thème (ArunaLuxe)
   sur les éléments de la fiche (onglets, miniatures, quantité, etc.)
   ================================================================= */
.asnk-product .asnk-thumb{ background:var(--asnk-cream)!important; border:1.5px solid var(--asnk-line)!important; border-radius:var(--asnk-r-sm)!important; padding:0!important; box-shadow:none!important; min-height:0!important; min-width:0!important; }
.asnk-product .asnk-thumb[aria-current="true"]{ border-color:var(--asnk-navy)!important; }
.asnk-product .asnk-thumb:hover{ border-color:var(--asnk-gold)!important; }
.asnk-product .asnk-tab{ background:transparent!important; border:0!important; border-radius:0!important; box-shadow:none!important; color:var(--asnk-grey)!important; padding:14px 6px 16px!important; min-height:0!important; text-transform:none!important; letter-spacing:.01em!important; }
.asnk-product .asnk-tab:hover{ background:transparent!important; color:var(--asnk-navy)!important; }
.asnk-product .asnk-tab[aria-selected="true"]{ color:var(--asnk-navy)!important; background:transparent!important; }
.asnk-product .asnk-qty button{ background:transparent!important; border:0!important; border-radius:0!important; box-shadow:none!important; min-height:0!important; color:var(--asnk-navy)!important; padding:0!important; }
.asnk-product .asnk-qty button:hover{ background:var(--asnk-cream)!important; color:var(--asnk-green)!important; }
.asnk-product .asnk-close{ box-shadow:none!important; min-height:0!important; padding:0!important; }
.asnk-product .asnk-li__rm{ background:none!important; border:0!important; box-shadow:none!important; padding:4px 0 0!important; min-height:0!important; width:auto!important; text-transform:none!important; letter-spacing:normal!important; }
.asnk-product .asnk-card__btn{ box-shadow:none!important; min-height:0!important; }

/* =================================================================
   OVERRIDE PRÉRÉGLAGES ELEMENTOR (kit ArunaLuxe) sur les titres.
   Le kit applique sa typo globale à h1-h6 via .elementor-kit-XX hN
   (spécificité > nos classes) → on reprend la main, scopé + !important,
   et on neutralise l'effet texte transparent/dégradé éventuel.
   ================================================================= */
.asnk-product h1,.asnk-product h2,.asnk-product h3,.asnk-product h4,.asnk-product h5,.asnk-product h6{
  margin:0;
  -webkit-text-fill-color:currentColor!important;
  background:none!important;
  -webkit-background-clip:border-box!important; background-clip:border-box!important;
  text-shadow:none!important;
}
.asnk-product .asnk-title{ font-family:var(--asnk-font-title)!important; font-weight:700!important; font-size:clamp(28px,4.4vw,42px)!important; line-height:1.12!important; letter-spacing:-.01em!important; color:var(--asnk-navy)!important; text-transform:none!important; }
.asnk-product .asnk-title em{ color:var(--asnk-green)!important; font-style:italic!important; }
.asnk-product .asnk-related h2{ font-family:var(--asnk-font-title)!important; font-weight:700!important; font-size:clamp(24px,3vw,32px)!important; line-height:1.15!important; letter-spacing:-.01em!important; color:var(--asnk-navy)!important; text-transform:none!important; }
.asnk-product .asnk-card__title{ font-family:var(--asnk-font-title)!important; font-weight:600!important; font-size:16.5px!important; line-height:1.28!important; letter-spacing:normal!important; color:var(--asnk-navy)!important; text-transform:none!important; }
.asnk-product .asnk-longdesc h3{ font-family:var(--asnk-font-title)!important; font-weight:600!important; font-size:21px!important; line-height:1.3!important; letter-spacing:normal!important; color:var(--asnk-navy)!important; text-transform:none!important; }
.asnk-product .asnk-eco__item h4{ font-family:var(--asnk-font-body)!important; font-weight:700!important; font-size:14.5px!important; line-height:1.3!important; letter-spacing:normal!important; color:var(--asnk-navy)!important; text-transform:none!important; margin:0 0 2px!important; }
.asnk-product .asnk-reviews-empty h3{ font-family:var(--asnk-font-title)!important; font-weight:600!important; font-size:21px!important; line-height:1.3!important; color:var(--asnk-navy)!important; text-transform:none!important; }
.asnk-product .asnk-drawer__head h3{ font-family:var(--asnk-font-title)!important; font-weight:700!important; font-size:19px!important; line-height:1.2!important; color:var(--asnk-navy)!important; text-transform:none!important; display:flex; align-items:center; gap:9px; }
.asnk-product .asnk-specs caption{ font-family:var(--asnk-font-title)!important; font-weight:600!important; font-size:20px!important; color:var(--asnk-navy)!important; text-align:left!important; }

/* =================================================================
   HEADER OVERLAY — le thème replie son header (hauteur 0) et le fait
   flotter par-dessus le contenu, qui démarre donc à y=0. On dégage la
   fiche avec un padding-top responsive (CSS chargé uniquement sur les
   pages produit, donc sans effet sur le reste du site).
   ================================================================= */
.asnk-product{ padding-top:140px; }
@media (max-width:920px){ .asnk-product{ padding-top:116px; } }
@media (max-width:560px){ .asnk-product{ padding-top:94px; } }

/* Boutons secondaires : rétablir le style du design (le thème force tout en navy) */
.asnk-product .asnk-btn-primary{ background:var(--asnk-navy)!important; color:#fff!important; border:0!important; }
.asnk-product .asnk-btn-primary:hover{ background:var(--asnk-navy-700)!important; }
.asnk-product .asnk-btn-ghost{ background:#fff!important; color:var(--asnk-navy)!important; border:1px solid var(--asnk-line)!important; }
.asnk-product .asnk-btn-ghost:hover{ background:var(--asnk-cream)!important; border-color:var(--asnk-navy)!important; }
.asnk-product .asnk-card__btn{ background:var(--asnk-cream)!important; color:var(--asnk-navy)!important; border:1px solid var(--asnk-line)!important; }
.asnk-product .asnk-card__btn:hover{ background:var(--asnk-navy)!important; color:#fff!important; border-color:var(--asnk-navy)!important; }

/* ===== Prix fiche produit : nettement séparé du titre (sinon collé, même navy/Playfair → illisible) ===== */
.asnk-product .asnk-title{ margin:0 0 2px!important; }
.asnk-product .asnk-priceline{ margin:28px 0 22px!important; align-items:baseline!important; gap:10px!important; }
.asnk-product .asnk-price{ color:var(--asnk-navy)!important; line-height:1!important; }
.asnk-product .asnk-price .woocommerce-price-suffix,
.asnk-product .asnk-price small{
  font-family:var(--asnk-font-body)!important; font-weight:600!important; font-size:12.5px!important;
  color:var(--asnk-grey)!important; text-transform:uppercase; letter-spacing:.06em; margin-left:6px;
}
