/* ========================================================================
   PARFUMURI CLUB — Style v3 · Notino-inspired clean minimal
   Pure white, no decorations, green CTAs, maximum clarity
   ======================================================================== */

/* ── 1. TOKENS ──────────────────────────────────── */
:root{
  --bg:#ffffff;
  --bg-gray:#f5f5f5;
  --bg-hover:#fafafa;

  --text:#1a1a1a;
  --text-secondary:#555;
  --text-muted:#888;
  --text-light:#aaa;

  --border:#e5e5e5;
  --border-light:#eee;

  --green:#00a049;
  --green-hover:#008f3f;
  --green-light:#e6f7ee;
  --green-text:#00743a;

  --red:#e02020;
  --gold:#f5a623;

  --radius:4px;
  --radius-md:8px;

  --shadow-sm:0 1px 3px rgba(0,0,0,.08);
  --shadow-md:0 2px 12px rgba(0,0,0,.1);
  --shadow-lg:0 4px 24px rgba(0,0,0,.12);

  --font:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease:cubic-bezier(.25,.8,.25,1);
  --dur:200ms;
}


/* ── 2. RESET & BASE ────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; }

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  font-size:14px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding-bottom:70px;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; height:auto; }
button,input,select,textarea{ font-family:inherit; font-size:inherit; }

:focus-visible{
  outline:2px solid var(--green);
  outline-offset:2px;
}

@media(prefers-reduced-motion:reduce){
  *{ transition:none!important; animation:none!important; }
}


/* ── 3. TYPOGRAPHY ──────────────────────────────── */
h1,h2,h3,h4{
  margin:0 0 .4em;
  font-weight:700;
  line-height:1.2;
  color:var(--text);
}
h1{ font-size:22px; }
h2{ font-size:20px; }
h3{ font-size:16px; }

@media(min-width:769px){
  h1{ font-size:26px; }
  h2{ font-size:22px; }
}

p{ margin:0 0 .75rem; color:var(--text-secondary); font-size:14px; line-height:1.65; }
.small{ font-size:12px; }
.muted{ color:var(--text-muted); }

.prose{ color:var(--text-secondary); font-size:14px; line-height:1.7; }
.prose p{ margin:0 0 .7rem; }
.prose strong{ color:var(--text); font-weight:600; }


/* ── 4. LAYOUT ──────────────────────────────────── */
.container{ width:100%; max-width:1200px; margin:0 auto; padding:0 16px; }
@media(min-width:769px){ .container{ padding:0 24px; } }
.section{ padding:40px 0; }
.main{ min-height:60vh; }


/* ── 5. HEADER ──────────────────────────────────── */
.topbar{
  background:var(--text);
  color:#fff;
  font-size:12px;
  font-weight:500;
  letter-spacing:.03em;
}
.topbar__row{
  display:flex;
  justify-content:center;
  align-items:center;
  height:32px;
  gap:16px;
}

.header{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid var(--border);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:56px;
  gap:12px;
}

.brand{ display:flex; align-items:center; gap:8px; float:none!important; }
.brand__name{
  font-weight:800;
  font-size:18px;
  letter-spacing:-.02em;
  color:var(--text);
  text-transform:uppercase;
}

.nav--desktop{ display:none; gap:4px; align-items:center; }
.nav__link{
  font-size:13px;
  font-weight:600;
  color:var(--text-secondary);
  padding:6px 12px;
  border-radius:var(--radius);
  transition:color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav__link:hover{ color:var(--text); background:var(--bg-gray); }

.header__actions{ display:flex; gap:6px; align-items:center; }

.iconbtn{
  background:transparent;
  border:0;
  cursor:pointer;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
  color:var(--text);
  border-radius:var(--radius);
  transition:background var(--dur) var(--ease);
}
.iconbtn:hover{ background:var(--bg-gray); }

.btn--ghost{
  background:#fff;
  border:1px solid var(--border);
  color:var(--text);
  padding:7px 14px;
  border-radius:var(--radius);
  font-weight:700;
  font-size:13px;
  display:inline-flex; align-items:center; gap:6px;
  cursor:pointer;
  transition:border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn--ghost:hover{
  border-color:#ccc;
  background:var(--bg-gray);
}

.pill{
  background:var(--green);
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:1px 6px;
  border-radius:10px;
  min-width:18px;
  text-align:center;
}

@media(min-width:769px){
  .nav--desktop{ display:flex; }
  .iconbtn--menu{ display:none; }
}


/* ── 6. BUTTONS ─────────────────────────────────── */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:10px 20px;
  border-radius:var(--radius);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  border:1px solid transparent;
  transition:background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform 100ms;
  text-decoration:none;
  line-height:1.2;
}

.btn--primary{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}
.btn--primary:hover{ background:var(--green-hover); border-color:var(--green-hover); }
.btn--primary:active{ transform:scale(.98); }

.btn--outline{
  background:#fff;
  color:var(--green);
  border-color:var(--green);
}
.btn--outline:hover{ background:var(--green-light); }

.btn--full{ width:100%; }


/* ── 7. PRODUCT GRID & CARDS ────────────────────── */
.section__head{
  margin-bottom:24px;
}

.sortbar{
  margin-bottom:20px;
  display:flex; gap:8px; align-items:center;
}
.sortbar__select{
  padding:8px 30px 8px 10px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  font-size:13px;
  cursor:pointer;
  outline:none;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 10px center;
}
.sortbar__select:focus{ border-color:var(--green); }

.product-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1px;
  background:var(--border-light);
  border:1px solid var(--border-light);
}
@media(min-width:600px){ .product-grid{ grid-template-columns:repeat(3, 1fr); } }
@media(min-width:960px){ .product-grid{ grid-template-columns:repeat(4, 1fr); } }

.card{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  position:relative;
  transition:box-shadow var(--dur) var(--ease);
}
.card:hover{ box-shadow:var(--shadow-md); z-index:1; }

.card__imgWrap{
  aspect-ratio:1/1;
  overflow:hidden;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}
.card__img{
  width:100%; height:100%;
  object-fit:contain;
  transition:transform .3s var(--ease);
}
.card:hover .card__img{ transform:scale(1.03); }

.card__badge{
  position:absolute;
  top:8px; left:8px;
  background:var(--red);
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:2px 6px;
  border-radius:2px;
}

.card__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:10px 12px 14px;
  border-top:1px solid var(--border-light);
}

.card__title{
  font-size:13px;
  font-weight:500;
  line-height:1.35;
  margin-bottom:6px;
  color:var(--text);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.card__title:hover{ color:var(--green); }

.price{
  font-weight:700;
  font-size:16px;
  color:var(--text);
  margin-top:auto;
  padding-top:4px;
}
.price strong{ font-weight:700; }
.price__old{
  text-decoration:line-through;
  color:var(--text-muted);
  font-size:13px;
  margin-left:6px;
  font-weight:400;
}

.card__actions{
  margin-top:8px;
  display:flex;
  gap:6px;
}
.card__actions .btn{
  padding:8px 0;
  flex:1;
  font-size:12px;
  font-weight:700;
  border-radius:var(--radius);
}


/* ── 8. PRODUCT PAGE ────────────────────────────── */
.crumbs{
  padding:12px 0 20px;
  font-size:12px;
  color:var(--text-muted);
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
}
.crumbs a{ color:var(--text-secondary); }
.crumbs a:hover{ color:var(--green); text-decoration:underline; }

.product-layout{
  display:grid;
  gap:24px;
}
@media(min-width:769px){
  .product-layout{
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
  }
}
@media(min-width:1024px){
  .product-layout{ grid-template-columns:55% 1fr; }
}

.product__media-col{ position:relative; }
@media(min-width:769px){
  .product__media-col{ position:sticky; top:72px; }
}

.gallery-main{
  background:#fff;
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  cursor:zoom-in;
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery-main .product__img{
  max-width:90%;
  max-height:90%;
  object-fit:contain;
  transition:transform .3s var(--ease);
}
.gallery-main:hover .product__img{ transform:scale(1.04); }

.badge-discount{
  position:absolute;
  top:10px; left:10px;
  background:var(--red);
  color:#fff;
  font-weight:700;
  font-size:12px;
  padding:3px 8px;
  border-radius:2px;
}

.gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:6px;
  margin-top:8px;
}
.gallery__img{
  border-radius:var(--radius);
  cursor:pointer;
  border:2px solid transparent;
  padding:4px;
  background:#fff;
  aspect-ratio:1;
  object-fit:contain;
  opacity:.5;
  transition:opacity var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.gallery__img:hover{ opacity:.8; }
.gallery__img.is-active{
  border-color:var(--text);
  opacity:1;
}

/* Product info */
.product-info h1{
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
}
@media(min-width:769px){
  .product-info h1{ font-size:24px; }
}

.star-rating{ display:flex; gap:1px; color:var(--gold); }

.price-row{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.price-xl{
  font-size:28px;
  font-weight:800;
  color:var(--text);
  letter-spacing:-.02em;
}
@media(min-width:769px){ .price-xl{ font-size:32px; } }
.price-old{
  font-size:16px;
  color:var(--text-muted);
  text-decoration:line-through;
  font-weight:400;
}

/* Stock */
.stock-line{
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  font-size:13px;
  font-weight:600;
  color:var(--green-text);
}
.stock-dot{
  width:7px; height:7px;
  background:var(--green);
  border-radius:50%;
}

/* Social proof badges */
.proof-badge{
  background:var(--bg-gray);
  border:1px solid var(--border-light);
  padding:8px 12px;
  border-radius:var(--radius);
  font-size:13px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  color:var(--text);
}
.proof-badge--fire{ background:#fff8f0; border-color:#fde8cc; }
.proof-badge--stock{ background:#fffbe6; border-color:#fce588; color:#7c5e14; }

/* Offer bar */
.offer-bar{
  background:#fff;
  border:1px dashed var(--green);
  padding:10px 14px;
  border-radius:var(--radius);
  margin-top:12px;
}
.offer-bar__title{ font-weight:700; font-size:13px; color:var(--text); }
.offer-bar__sub{ font-size:12px; color:var(--text-muted); margin-top:2px; }

/* Review link */
.review-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  background:var(--bg-gray);
  border:1px solid var(--border-light);
  border-radius:var(--radius);
  transition:background var(--dur) var(--ease);
  margin-top:12px;
}
.review-link:hover{ background:var(--border-light); }
.review-link__stars{ display:flex; gap:1px; color:var(--gold); }
.review-link__text{ font-size:13px; font-weight:600; color:var(--text); }

/* Olfactive notes */
.olf-notes{
  margin-bottom:20px;
  background:var(--bg-gray);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  padding:16px;
}
.olf-notes__title{
  margin:0 0 12px;
  font-size:14px;
  font-weight:700;
  color:var(--text);
  display:flex;
  align-items:center;
  gap:6px;
}
.olf-row{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:8px 0;
}
.olf-row + .olf-row{ border-top:1px solid var(--border-light); }
.olf-label{
  min-width:70px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  padding-top:1px;
}
.olf-label--top{ color:#c7923a; }
.olf-label--heart{ color:#c2185b; }
.olf-label--base{ color:#6d4c41; }
.olf-value{ font-size:13px; color:var(--text-secondary); line-height:1.45; }

/* Product actions */
.product__actions{
  margin:20px 0 24px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.product__actions .addToCartBtn{
  height:52px;
  font-size:16px;
  font-weight:700;
  border-radius:var(--radius);
  background:var(--green);
  border:none;
  color:#fff;
  transition:background var(--dur) var(--ease);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
}
.product__actions .addToCartBtn:hover{ background:var(--green-hover); }

.product__actions .btn--direct{
  height:44px;
  font-size:14px;
  font-weight:700;
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:1px solid var(--green);
  color:var(--green);
  background:#fff;
  text-decoration:none;
  transition:background var(--dur) var(--ease);
}
.product__actions .btn--direct:hover{ background:var(--green-light); }

/* Trust badges */
.trust-row{
  display:flex;
  justify-content:center;
  gap:16px;
  padding:10px 0;
  flex-wrap:wrap;
}
.trust-badge{
  display:flex;
  align-items:center;
  gap:5px;
  font-size:12px;
  font-weight:600;
  color:var(--text-muted);
}
.trust-badge svg{ color:var(--green); flex-shrink:0; }

/* USP list */
.usp-list{
  list-style:none;
  margin:0;
  padding:16px;
  background:var(--bg-gray);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
}
.usp-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 0;
}
.usp-item:first-child{ padding-top:0; }
.usp-item:last-child{ padding-bottom:0; }
.usp-item + .usp-item{ border-top:1px solid var(--border-light); }
.usp-icon{
  font-size:16px;
  flex-shrink:0;
  width:22px;
  text-align:center;
  line-height:1.4;
}
.usp-title{ font-weight:700; font-size:13px; color:var(--text); margin-bottom:1px; }
.usp-desc{ font-size:12px; color:var(--text-muted); line-height:1.5; }

/* Accordions */
.product-details details{ border-bottom:1px solid var(--border-light); }
.product-details summary{
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  color:var(--text);
}
.product-details summary:hover{ color:var(--green); }
.product-details summary::-webkit-details-marker{ display:none; }
.product-details summary span{
  font-size:18px;
  color:var(--text-light);
  transition:transform var(--dur) var(--ease);
  line-height:1;
}
details[open] > summary span{ transform:rotate(45deg); }
.product-details .prose{ padding:0 0 14px; }


/* ── 9. REVIEWS ─────────────────────────────────── */
.tab-pane{ padding-top:24px; }
.tab-pane h1{ font-size:20px; margin:0 0 16px 0; }
.reviews-notice{
  background:var(--bg-gray);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  padding:14px 16px;
  margin-bottom:20px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.reviews-notice svg{ color:var(--green); flex-shrink:0; margin-top:1px; }
.reviews-notice h4{ margin:0 0 3px; font-size:13px; font-weight:700; }
.reviews-notice p{ margin:0; font-size:12px; color:var(--text-muted); line-height:1.5; }

.showmore-button{
  cursor:pointer;
  background:var(--text);
  color:white;
  text-transform:uppercase;
  text-align:center;
  padding:10px 16px;
  margin-top:8px;
  border-radius:var(--radius);
  font-size:12px;
  font-weight:700;
  letter-spacing:.03em;
}
.showmore-button:hover{ background:#333; }


/* ── 10. STICKY BUY BAR ────────────────────────── */
.stickyBuy{
  position:fixed;
  bottom:0; left:0; right:0;
  background:#fff;
  padding:8px 16px;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  z-index:90;
  box-shadow:0 -2px 8px rgba(0,0,0,.06);
}
.stickyBuy__price{
  font-weight:800;
  font-size:18px;
  color:var(--text);
}
.stickyBuy .addToCartBtn,
.stickyBuy .btn--primary{
  background:var(--green);
  border-color:var(--green);
  color:#fff;
  animation:none;
}
.stickyBuy .btn--primary:hover{ background:var(--green-hover); }

@keyframes stickyPulse{
  0%,100%{ box-shadow:none; }
}


/* ── 11. TOAST ──────────────────────────────────── */
#addedToast:not([style*="none"]){ display:flex!important; }

@keyframes slideUp{
  from{ transform:translateY(10px); opacity:0; }
  to{ transform:translateY(0); opacity:1; }
}


/* ── 12. LIGHTBOX ───────────────────────────────── */
#imgLightbox{ backdrop-filter:blur(4px); }


/* ── 13. MOBILE NAV ─────────────────────────────── */
.mnav{ position:fixed; inset:0; z-index:200; display:flex; }
.mnav[hidden]{ display:none; }
.mnav__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.4);
}
.mnav__panel{
  width:280px;
  max-width:85vw;
  background:#fff;
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  box-shadow:var(--shadow-lg);
}
.mnav__head{
  padding:14px 16px;
  border-bottom:1px solid var(--border-light);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.mnav__body{ padding:16px; overflow-y:auto; flex:1; }
.mnav__title{
  font-weight:700;
  margin:14px 0 6px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--text-muted);
}
.mnav__links{ display:flex; flex-direction:column; }
.mnav__link{
  display:block;
  padding:10px 0;
  border-bottom:1px solid var(--border-light);
  font-weight:600;
  font-size:14px;
  color:var(--text);
}
.mnav__link:hover{ color:var(--green); }
.mnav__cta{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}


/* ── 14. PAGINATION ─────────────────────────────── */
.pager{
  display:flex;
  justify-content:center;
  gap:4px;
  padding-top:32px;
}
.pager__a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px; height:36px;
  font-size:13px;
  font-weight:600;
  color:var(--text-secondary);
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:all var(--dur) var(--ease);
}
.pager__a:hover{ border-color:var(--text); color:var(--text); }
.pager__a.is-active{
  background:var(--green);
  border-color:var(--green);
  color:#fff;
}


/* ── 15. FOOTER ─────────────────────────────────── */
.footer{
  background:var(--bg-gray);
  border-top:1px solid var(--border);
  color:var(--text-muted);
  padding:40px 0 20px;
  font-size:13px;
}
.footer a{ color:var(--text-secondary); }
.footer a:hover{ color:var(--text); text-decoration:underline; }

.footer__top{
  display:grid;
  gap:32px;
  padding-bottom:24px;
  border-bottom:1px solid var(--border-light);
}
@media(min-width:769px){
  .footer__top{ grid-template-columns:1fr 2fr; }
}

.footer__brand{
  background:#fff;
  padding:20px;
  border-radius:var(--radius-md);
  border:1px solid var(--border-light);
}
.footer__logoRow{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}
.footer__logo{ height:28px; width:auto; }
.footer__badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:12px 0;
}
.fBadge{
  font-size:11px;
  background:#fff;
  padding:4px 8px;
  border-radius:var(--radius);
  font-weight:600;
  color:var(--text);
  border:1px solid var(--border-light);
}
.footer__note{
  font-size:11px;
  color:var(--text-muted);
  margin:10px 0 0;
  line-height:1.5;
}

.footer__cols{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
@media(min-width:769px){
  .footer__cols{ grid-template-columns:repeat(4, 1fr); }
}

.footer__title{
  font-weight:700;
  margin-bottom:10px;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.06em;
  color:var(--text);
}

.footer__list{ list-style:none; padding:0; margin:0; }
.footer__list li{ margin-bottom:6px; }
.footer__list a{
  color:var(--text-muted);
  font-size:13px;
}
.footer__list a:hover{ color:var(--text); }

.footer__bottom{
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--text-muted);
  font-size:12px;
  flex-wrap:wrap;
}


/* ── 16. CART MODAL ─────────────────────────────── */
.modal{ position:fixed; inset:0; z-index:9999; display:flex; justify-content:center; align-items:center; }
.modal[hidden]{ display:none; }
.modal__backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.4);
  z-index:9998;
}
.modal__panel{
  position:fixed;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:min(520px, calc(100vw - 24px));
  max-height:90vh;
  overflow:auto;
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  z-index:9999;
}
.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 20px;
  border-bottom:1px solid var(--border-light);
}
.modal__title{
  font-size:18px;
  font-weight:700;
  color:var(--text);
  margin:0;
}
.modal__body{ padding:16px 20px; }
.modal__footer{
  padding:16px 20px;
  border-top:1px solid var(--border-light);
  background:var(--bg-hover);
}
.modal__footerActions{ margin-top:12px; }

/* Cart item */
.cartItem{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  padding-bottom:14px;
  border-bottom:1px solid var(--border-light);
}
.cartItem__img{
  width:64px; height:80px;
  object-fit:contain;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--border-light);
  padding:4px;
}

/* Totals */
.totals{
  background:#fff;
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  padding:14px;
}
.totals__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  font-size:14px;
  color:var(--text-secondary);
}
.totals__row strong{ color:var(--text); font-weight:700; }
.totals__row--big{
  font-weight:700;
  font-size:16px;
  margin-top:8px;
  margin-bottom:0;
  border-top:1px solid var(--border-light);
  padding-top:10px;
  color:var(--text);
}

/* Free shipping progress */
.ship-bar{ margin:12px 0; }
.ship-bar__labels{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:4px;
}
.ship-bar__track{
  height:6px;
  background:var(--border-light);
  border-radius:99px;
  overflow:hidden;
}
.ship-bar__fill{
  height:100%;
  background:var(--green);
  border-radius:99px;
  transition:width .4s ease;
}


/* ── 17. COOKIE CONSENT ─────────────────────────── */
.cc{
  position:fixed;
  bottom:16px; left:16px; right:16px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:16px;
  z-index:400;
  box-shadow:var(--shadow-lg);
  max-width:440px;
}
.cc[hidden]{ display:none; }
.cc__title{ font-weight:700; margin-bottom:6px; font-size:14px; color:var(--text); }
.cc__desc{ font-size:12px; color:var(--text-muted); margin-bottom:10px; line-height:1.5; }
.cc__links{ font-size:12px; color:var(--text-muted); margin-bottom:12px; }
.cc__links a{ color:var(--text-secondary); text-decoration:underline; }
.cc__links .dot{ margin:0 4px; }
.cc__actions{ display:flex; gap:8px; flex-wrap:wrap; }
.cc__actions .btn{ padding:8px 14px; font-size:12px; flex:1; }

/* Cookie modal */
.ccm{ position:fixed; inset:0; z-index:500; display:flex; justify-content:center; align-items:center; }
.ccm[hidden]{ display:none; }
.ccm__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.4); }
.ccm__panel{
  position:relative;
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  width:min(480px, calc(100vw - 32px));
  max-height:85vh;
  overflow:auto;
}
.ccm__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  padding:16px 20px;
  border-bottom:1px solid var(--border-light);
}
.ccm__title{ font-size:16px; font-weight:700; color:var(--text); }
.ccm__body{ padding:16px 20px; }
.ccm__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border-light);
}
.ccm__rowTitle{ font-size:14px; font-weight:700; color:var(--text); margin-bottom:2px; }
.ccm__foot{
  display:flex;
  gap:8px;
  padding:14px 20px;
  border-top:1px solid var(--border-light);
  flex-wrap:wrap;
}
.ccm__foot .btn{ font-size:13px; padding:10px 16px; }

.divider{ height:1px; background:var(--border-light); margin:14px 0; border:0; }

/* Switch toggle */
.switch{ position:relative; display:inline-block; width:40px; height:22px; flex-shrink:0; }
.switch input{ opacity:0; width:0; height:0; }
.slider{
  position:absolute; inset:0;
  background:#ddd;
  border-radius:22px;
  cursor:pointer;
  transition:.2s;
}
.slider:before{
  position:absolute;
  content:"";
  height:18px; width:18px;
  left:2px; bottom:2px;
  background:#fff;
  border-radius:50%;
  transition:.2s;
  box-shadow:0 1px 3px rgba(0,0,0,.15);
}
input:checked + .slider{ background:var(--green); }
input:checked + .slider:before{ transform:translateX(18px); }

/* Cookie floating button */
.ccFloating{
  position:fixed;
  bottom:12px; left:12px;
  z-index:300;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:6px 12px;
  font-size:11px;
  font-weight:600;
  color:var(--text-muted);
  cursor:pointer;
  box-shadow:var(--shadow-sm);
}
.ccFloating:hover{ color:var(--text); border-color:#ccc; }

/* CC revoke override */
.cc-revoke{ display:none!important; }


/* ── 18. EXIT POPUP ─────────────────────────────── */
/* Uses inline styles in PHP, but these are fallback resets */


/* ── 19. UTILITIES ──────────────────────────────── */
.list-unstyled,.description{ list-style:none; margin:0; padding:0; }

/* No entrance animations - clean & fast like Notino */