/* ===================== TOKENS ===================== */
:root{
  --bg:#121212;
  --surface:#1B1B1B;
  --surface-2:#232323;
  --border:rgba(237,234,226,.12);
  --text:#EDEAE2;
  --text-muted:#A8A59C;
  --brass:#C9A24B;
  --brass-light:#E8CB86;
  --blush:#E8B4B8;
  --emerald-deep:#0F3D2E;
  --emerald-soft:#154B39;
  --radius:2px;
  --shadow-lg: 0 24px 60px rgba(0,0,0,.5);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Metrophobic', sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Metrophobic', sans-serif;
  font-weight:400;
  line-height:1.12;
  letter-spacing:-0.05em;
  margin:0 0 .4em;
  color:var(--text);
}
h1 em{font-style:italic; color:var(--brass-light);}
p{line-height:1.7; margin:0 0 1em; color:var(--text-muted);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
button, input, textarea{font-family:'Metrophobic', sans-serif;}
button{cursor:pointer;}

.tag-label{
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:.6em;
}

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9em 1.8em;
  border-radius:var(--radius);
  font-size:.95rem;
  letter-spacing:.03em;
  border:1px solid transparent;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-brass{
  background:linear-gradient(135deg, var(--brass-light), var(--brass));
  color:#1a1305;
}
.btn-brass:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(201,162,75,.3);}
.btn-brass:disabled{
  background:var(--surface-2); color:var(--text-muted); cursor:not-allowed; transform:none; box-shadow:none;
  border:1px solid var(--border);
}
.btn-ghost{
  border-color:currentColor;
  background:transparent;
  color:var(--text);
}
.btn-ghost:hover{background:rgba(237,234,226,.06);}
.btn-outline{
  border-color:var(--border);
  background:transparent;
  color:var(--text);
}
.btn-outline:hover{border-color:var(--brass); color:var(--brass-light);}
.btn-quiet{
  border-color:transparent;
  background:var(--surface-2);
  color:var(--text);
  font-size:.85rem;
}
.btn-quiet:hover{background:var(--border);}
.btn-block{width:100%;}
.btn:focus-visible, .icon-btn:focus-visible, .tag-btn:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--brass); outline-offset:2px;
}

/* ===================== HEADER ===================== */
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(18,18,18,.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  gap:20px;
}
.logo-img{height: 20px; width:auto;}
.main-nav{display:flex; gap:28px; flex:1; justify-content:center;}
.main-nav a{
  font-size:.92rem; color:var(--text);
  position:relative; padding:4px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background:var(--brass); transform:scaleX(0); transform-origin:left;
  transition:transform .3s var(--ease);
}
.main-nav a:hover::after{transform:scaleX(1);}
.nav-toggle{display:none; background:none; border:none; flex-direction:column; gap:5px; padding:6px;}
.nav-toggle span{width:22px; height:2px; background:var(--text); display:block;}
.cart-toggle{
  position:relative; background:none; border:none; color:var(--text);
  display:flex; align-items:center;
}
.cart-count{
  position:absolute; top:-8px; right:-10px;
  background:var(--brass); color:#1a1305;
  font-size:.68rem; font-weight:700;
  width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

/* ===================== HERO ===================== */
.hero{
  position:relative;
  background:radial-gradient(120% 140% at 15% 0%, var(--emerald-soft), var(--bg) 68%);
  color:var(--text);
  padding:85px 28px 90px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:40px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hero-thread{position:absolute; inset:0; opacity:.6; pointer-events:none;}
.hero-thread svg{width:100%; height:100%;}
.hero-content{max-width:560px; position:relative; z-index:2; grid-column:1; transform: translateX(225px);}
.eyebrow{
  font-size:.78rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--blush); margin-bottom:1em;
}
.hero h1{font-size:clamp(2.4rem, 4.6vw, 3.6rem);}
.hero-sub{color:var(--text-muted); max-width:460px; font-size:1.05rem;}
.hero-cta{display:flexbox; gap:16px; margin-top:1.6em; flex-wrap:wrap;}
.hero-jewel{grid-column:2; justify-self:center; width:100%; max-width:400px; image:url(images/Teal Turaco.png)  position:center; z-index:1;}

@media (max-width: 768px) {
    .hero {
        padding: 25px 28px 25px;
        align-items: start;
        display: block;
        align-content: center;
    }

    .hero-content {
        transform: none;
        padding: 28px;
    }
}

/* ===================== SHOP ===================== */
.shop-section{max-width:1240px; margin:0 auto; padding:110px 28px 60px;}
.section-head{text-align:center; margin-bottom:36px;}
.section-head h2{font-size:clamp(1.9rem,3vw,2.6rem);}

.filter-tags{display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-bottom:52px;}
.tag-btn{
  border:1px solid var(--border);
  background:transparent;
  padding:.55em 1.3em;
  border-radius:999px;
  font-size:.85rem; color:var(--text);
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.tag-btn:hover{border-color:var(--brass);}
.tag-btn.is-active{background:var(--brass); color:#1a1305; border-color:var(--brass);}

.product-carousel{
    position:relative;
    width:100%;
}

.product-grid{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:0 0 10px;
}

.product-grid::-webkit-scrollbar{
    display:none;
}

.product-grid > *{
    flex:0 0 calc((100% - 48px) / 3);
    scroll-snap-align:start;
}


/* CAROUSEL ARROWS */

.carousel-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:5;

    width:44px;
    height:44px;

    border:1px solid var(--border);
    border-radius:50%;

    background:var(--surface);
    color:var(--text);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    font-size:1.2rem;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.carousel-arrow:hover{
    background:var(--brass);
    color:#1a1305;
    border-color:var(--brass);
}

.carousel-prev{
    left:-22px;
}

.carousel-next{
    right:-22px;
}


/* PAGINATION */

.product-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:28px;
}

.product-pagination button{
    width:8px;
    height:8px;
    padding:0;
    border:none;
    border-radius:50%;
    background:var(--border);
    cursor:pointer;
    transition:all .25s ease;
}

.product-pagination button.is-active{
    width:24px;
    border-radius:999px;
    background:var(--brass);
}


/* MOBILE */

@media (max-width:640px){

    .product-grid > *{
        flex:0 0 85%;
    }

    .carousel-prev{
        left:8px;
    }

    .carousel-next{
        right:8px;
    }

}

.product-card{
  position:relative;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .3s var(--ease), border-color .3s var(--ease);
}
.product-card:hover{transform:translateY(-4px); border-color:rgba(201,162,75,.4);}
.product-media-link{display:block;}
.product-media{
  aspect-ratio:1/1;
  background:linear-gradient(160deg, var(--surface-2), var(--surface));
  display:flex; align-items:center; justify-content:center;
  padding:30px;
  position:relative;
  overflow:hidden;
}
.product-media img{width:100%; height:100%; object-fit:contain;}
.price-tag{
  position:absolute; top:14px; right:14px;
  background:var(--brass-light);
  color:#1a1305;
  font: size 1.5em;
  padding:.35em .7em;
  border-radius:2px;
  box-shadow:0 4px 10px rgba(0,0,0,.3);
}
.product-info{padding:20px 22px 22px; flex:1; display:flex; flex-direction:column;}
.product-cat{
  font-size:.7rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--brass); margin-bottom:.5em;
}
.product-info h3{font-size:1.15rem; margin-bottom:.3em;}
.product-info h3 a{color:var(--text);}
.product-desc{font-size:.9rem; color:var(--text-muted); flex:1; margin-bottom:1.2em;}

.product-actions{display:flex; gap:10px;}
.product-actions .btn{flex:1; padding:.7em .5em; font-size:.82rem;}

/* ===================== STORY ===================== */
.story-section{background:#0E1815; color:var(--text); padding:110px 28px; border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
.story-inner{max-width:720px; margin:0 auto; text-align:center;}
.story-section h2{font-size:clamp(1.8rem,3vw,2.4rem);}

/* ===================== FOOTER ===================== */
.site-footer{background:var(--bg); color:var(--text); padding:70px 28px 24px;}
.footer-inner{
  max-width:1240px; margin:0 auto;
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px;
  border-bottom:1px solid var(--border);
  padding-bottom:40px;
}
.footer-logo-img{height:24px; width:auto; margin-bottom:.7em;}
.footer-inner p, .footer-inner a{color:var(--text-muted); font-size:.9rem;}
.footer-col h4{font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; color:var(--brass); margin-bottom:.9em;}
.footer-col a{display:block; margin-bottom:.5em;}
.footer-col a:hover{color:var(--brass-light);}
.footer-bottom{text-align:center; font-size:.78rem; color:#6b6960; padding-top:20px;}

/* ===================== OVERLAY / CART / MODAL ===================== */
.overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.55);
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease); z-index:50;
}
.overlay.is-visible{opacity:1; pointer-events:auto;}

.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(420px, 92vw);
  background:var(--surface); z-index:60;
  transform:translateX(100%); transition:transform .35s var(--ease);
  display:flex; flex-direction:column;
  box-shadow:var(--shadow-lg);
  border-left:1px solid var(--border);
}
.cart-drawer.is-open{transform:translateX(0);}
.cart-head{display:flex; align-items:center; justify-content:space-between; padding:24px; border-bottom:1px solid var(--border);}
.cart-head h3{margin:0;}
.icon-btn{background:none; border:none; font-size:1.6rem; line-height:1; color:var(--text); padding:4px;}
.cart-items{flex:1; overflow-y:auto; padding:12px 24px;}
.cart-empty{color:var(--text-muted); text-align:center; padding:40px 0; font-size:.92rem;}

.cart-item{display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--border);}
.cart-item-thumb{width:64px; height:64px; background:var(--surface-2); border-radius:2px; flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.cart-item-thumb img{width:100%; height:100%; object-fit:cover;}
.cart-item-body{flex:1;}
.cart-item-body h4{margin:0 0 .2em; font-size:.95rem; font-weight:400; color:var(--text);}
.cart-item-price{font-size:.85rem; color:var(--brass-light);}
.qty-row{display:flex; align-items:center; gap:10px; margin-top:.5em;}
.qty-btn{width:24px; height:24px; border:1px solid var(--border); background:none; color:var(--text); border-radius:50%; font-size:.9rem; display:flex; align-items:center; justify-content:center;}
.remove-link{font-size:.78rem; color:#d98a8a; text-decoration:underline; background:none; border:none; margin-left:auto; padding:0;}

.cart-foot{padding:20px 24px 26px; border-top:1px solid var(--border);}
.cart-total-row{display:flex; justify-content:space-between; font-size:1.1rem; margin-bottom:14px; color:var(--text);}
.cart-note{font-size:.76rem; color:var(--text-muted); text-align:center; margin-top:.8em; margin-bottom:0;}

.modal{
  position:fixed; inset:0; z-index:70;
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
}
.modal.is-open{opacity:1; pointer-events:auto;}
.modal-card{
  background:var(--surface); max-width:480px; width:100%; max-height:90vh; overflow-y:auto;
  padding:36px 32px; border-radius:var(--radius); position:relative;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
}
.modal-close{position:absolute; top:14px; right:16px;}
.modal-sub{font-size:.9rem;}

.order-summary{background:var(--surface-2); border-radius:2px; padding:14px 16px; margin-bottom:20px; font-size:.85rem;}
.order-line{display:flex; justify-content:space-between; padding:4px 0; font-size:.85rem; color:var(--text);}
.order-line.total{border-top:1px dashed var(--border); margin-top:6px; padding-top:8px; color:var(--brass-light);}

#checkoutForm{display:flex; flex-direction:column; gap:16px;}
#checkoutForm label{font-size:.85rem; color:var(--text); display:flex; flex-direction:column; gap:6px;}
#checkoutForm input, #checkoutForm textarea{
  font-size:.95rem; padding:.7em .8em;
  border:1px solid var(--border); border-radius:2px; background:var(--surface-2); color:var(--text);
  resize:vertical;
}
#checkoutForm input::placeholder, #checkoutForm textarea::placeholder{color:#7a7768;}
.form-error{color:#e08a8a; font-size:.8rem; margin:-6px 0 0;}

.toast{
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--brass); color:#1a1305; padding:14px 22px; border-radius:4px;
  font-size:.9rem; opacity:0; pointer-events:none; transition:all .3s var(--ease); z-index:90;
}
.toast.is-visible{opacity:1; transform:translateX(-50%) translateY(0);}

/* ===================== PRODUCT DETAIL PAGE ===================== */
.breadcrumb{
  max-width:1240px; margin:0 auto; padding:24px 28px 0;
  font-size:.82rem; color:var(--text-muted);
}
.breadcrumb a:hover{color:var(--brass-light);}

.pdp{
  max-width:1240px; margin:0 auto;
  padding:36px 28px 100px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.pdp-media{
  grid-area:pdp-media;
  width:80%;
  justify-self:center;
  background:linear-gradient(160deg, var(--surface-2), var(--surface));
  border:1px solid var(--border);
  border-radius:var(--radius);
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:50px;
  position:relative;
  overflow:hidden;
  touch-action:none;
}
.pdp-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform-origin:center center;
  transition:transform .15s ease;
  will-change:transform;
}

/* PDP DESKTOP LAYOUT FIX
   The PDP renderer outputs media, desktop zoom hint, then product body.
   Keep the media + hint on the left and all product information on the right. */
@media (min-width:961px){
  .pdp{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    grid-template-rows:auto auto;
    grid-template-areas:
      "pdp-media pdp-body"
      "pdp-hint  pdp-body";
    align-items:start;
    column-gap:60px;
    row-gap:4px;
  }

  .pdp-media{grid-area:pdp-media;}
  .pdp-desktop-zoom-hint{
    grid-area:pdp-hint;
    margin:0;
    width:80%;
    justify-self:center;
    font-size:.82rem;
    color:var(--text-muted);
    text-align:center;
  }

  .pdp-body{
    grid-area:pdp-body;
  }
}


/* Desktop hover zoom */
@media (hover:hover) and (pointer:fine){
  .pdp-media img{cursor:zoom-in;}
  .pdp-media.is-zoomed img{transition:none;}
}

/* Mobile pinch zoom */
@media (hover:none) and (pointer:coarse){
  .pdp-media{touch-action:none;}
  .pdp-media img{transition:none;}
}
.pdp-body{display:flex; flex-direction:column; padding-top:8px;}
.pdp-cat{font-size:.78rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brass); margin-bottom:.8em;}
.pdp-body h1{font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:.3em;}
.pdp-price{font-size:1.4rem; color:var(--brass-light); margin-bottom:1.2em;}
.pdp-desc{font-size:1rem; color:var(--text-muted); margin-bottom:1.6em; max-width:460px;}

.pdp-divider{border:none; border-top:1px solid var(--border); margin:0 0 1.6em;}

.qty-stepper{display:flex; align-items:center; gap:16px; margin-bottom:1.6em;}
.qty-stepper span{min-width:20px; text-align:center; font-size:1.05rem;}
.qty-stepper .qty-btn{width:34px; height:34px; font-size:1.1rem;}

.pdp-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:1.4em;}
.pdp-actions .btn{padding:1em 2em;}

.pdp-hint{font-size:.82rem; color:var(--text-muted); margin-bottom:0;}
.pdp-hint.unlocked{color:var(--brass-light);}

.pdp-notfound{max-width:600px; margin:0 auto; padding:140px 28px; text-align:center;}

.related-section{max-width:1240px; margin:0 auto; padding:0 28px 110px;}
.related-section .section-head{text-align:left; margin-bottom:28px;}
.related-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:30px;}

/* ===================== RESPONSIVE ===================== */
@media (max-width:960px){
  .hero{grid-template-columns:1fr; text-align:center; padding-top:65px;}
  .hero-jewel{grid-column: 1;
        justify-self: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        text-align: center;}
  .product-grid, .related-grid{grid-template-columns:repeat(2,1fr);}
  .footer-inner{grid-template-columns:1fr 1fr; row-gap:30px;}
  .pdp{
    grid-template-columns:1fr;
    grid-template-areas:
      "pdp-media"
      "pdp-hint"
      "pdp-body";
    gap:34px;
  }
  .pdp-media{grid-area:pdp-media;}
  .pdp-desktop-zoom-hint{grid-area:pdp-hint;}
  .pdp-body{grid-area:pdp-body;}
}
@media (max-width:640px){
  .main-nav{
    position:fixed; top:60px; left:0; right:0; background:var(--surface);
    flex-direction:column; align-items:flex-start; padding:20px 28px;
    gap:16px; border-bottom:1px solid var(--border);
    transform:translateY(-150%); transition:transform .3s var(--ease); z-index:39;
  }
  .main-nav.is-open{transform:translateY(0);}
  .nav-toggle{display:flex;}
  .product-grid, .related-grid{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;}
  .pdp-actions{flex-direction:column;}
  .pdp-actions .btn{width:100%;}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important; scroll-behavior:auto !important;}
}
#pdpAddToBag:disabled {
  opacity: 0.6;
  cursor: default;
}
[data-add]:disabled {
  opacity: 0.6;
  cursor: default;
}


/* ===================== PLP / SHOP PAGE ===================== */
.plp-page{max-width:1240px;margin:0 auto;padding:120px 28px 100px;}
.plp-head{text-align:center;margin-bottom:52px;}
.plp-head h1{font-size:clamp(2.2rem,4vw,3.4rem);margin:.2em 0 .35em;text-transform:uppercase;}
.plp-head p:not(.tag-label){color:var(--text-muted);max-width:560px;margin:0 auto;}
.plp-layout{display:block;}
.plp-filters{width:100%;box-sizing:border-box;margin-bottom:28px;border:1px solid var(--border);background:var(--surface);padding:22px 24px;border-radius:var(--radius);}
.plp-filter-group{display:flex;align-items:center;gap:18px;}
.plp-filter-group + .plp-filter-group{margin-top:18px;padding-top:18px;border-top:1px solid var(--border);}
.plp-filter-title{margin:0;font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;color:var(--brass);white-space:nowrap;}
.plp-category-buttons{display:flex;flex-wrap:wrap;gap:8px;}
.plp-category-buttons .tag-btn{text-align:center;border-radius:8px;width:auto;}
.plp-price-head{display:flex;align-items:center;justify-content:space-between;gap:10px;min-width:145px;}
#plpPriceValue{font-size:.9rem;color:var(--text);}
.plp-price-range{flex:1;width:100%;accent-color:var(--brass);margin:0;}
.plp-price-scale{display:flex;justify-content:space-between;gap:15px;font-size:.75rem;color:var(--text-muted);min-width:75px;}
.plp-results{min-width:0;}
.plp-results-head{display:flex;justify-content:flex-end;margin-bottom:18px;color:var(--text-muted);font-size:.82rem;}
.plp-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.plp-empty{text-align:center;padding:80px 20px;border:1px solid var(--border);border-radius:var(--radius);color:var(--text-muted);}
.plp-empty h2{color:var(--text);margin-bottom:8px;text-transform:uppercase;}

/* Product card: entire card feels tappable */
.product-card[data-product-card]{cursor:pointer;}
.product-card[data-product-card] a{text-decoration:none;}
.product-card h3,.product-card h3 a{text-transform:uppercase;}

/* Instagram removed in Version 5 */

/* ===================== LATEST DROP PAGE ===================== */
.latest-drop{max-width:1240px;margin:0 auto;padding:110px 28px 80px;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:70px;align-items:center;}
.latest-drop-media{aspect-ratio:1/1;background:linear-gradient(160deg,var(--surface-2),var(--surface));border:1px solid var(--border);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;overflow:hidden;padding:50px;}
.latest-drop-media img{width:100%;height:100%;object-fit:contain;}
.latest-drop-copy h1{font-size:clamp(2.2rem,4vw,3.6rem);margin:.2em 0 .35em;}
.latest-drop-copy>p:not(.tag-label){color:var(--text-muted);max-width:520px;line-height:1.8;}
.latest-drop-note{font-size:.9rem;color:var(--brass-light)!important;margin:24px 0 30px;}
.latest-drop-instagram{text-align:center;padding:30px 28px 110px;}

/* Pincode controls */
.delivery-check{margin:0 0 1.5em;}
.pincode-form{display:flex;gap:10px;align-items:stretch;width:100%;}
.pincode-form input{min-width:0;flex:1 1 auto;border:1px solid var(--border);background:var(--surface);color:var(--text);padding:.9em 1em;border-radius:6px;font:inherit;}
.pincode-form input:focus{outline:none;border-color:var(--brass);box-shadow:0 0 0 2px rgba(201,162,75,.12);}
.pincode-btn{flex:0 0 auto;white-space:nowrap;}
.pincode-message{min-height:1.4em;margin:8px 0 0;font-size:.82rem;}
.pincode-message.is-error{color:#c77;}
.pincode-message.is-success{color:#8b9b57;}

@media(max-width:960px){
  .plp-category-buttons{flex-direction:row;flex-wrap:wrap;}
  .plp-category-buttons .tag-btn{width:auto;}
  .plp-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .latest-drop{grid-template-columns:1fr;gap:40px;padding-top:70px;}
  .latest-drop-copy{text-align:center;}
  .latest-drop-copy>p:not(.tag-label){margin-left:auto;margin-right:auto;}
}
@media(max-width:640px){
  .plp-page{padding:80px 18px 110px;}
  .plp-grid{grid-template-columns:1fr;}
  .plp-layout{display:flex;flex-direction:column;}
  .plp-filters{
    order:2;
    position:sticky;
    bottom:0;
    z-index:40;
    margin:22px -18px -110px;
    width:calc(100% + 36px);
    border-radius:0;
    border-left:0;
    border-right:0;
    border-bottom:0;
    padding:14px 18px;
    box-shadow:0 -8px 24px rgba(0,0,0,.12);
    backdrop-filter:blur(12px);
  }
  .plp-results{order:1;}
  .plp-filter-group{display:block;}
  .plp-filter-group + .plp-filter-group{margin-top:12px;padding-top:12px;}
  .plp-filter-title{margin-bottom:8px;}
  .plp-category-buttons{gap:6px;}
  .plp-category-buttons .tag-btn{font-size:.76rem;padding:.55em .8em;}
  .plp-price-head{min-width:0;margin-bottom:5px;}
  .plp-price-scale{min-width:0;margin-top:2px;}
  .latest-drop{padding:70px 18px 50px;}
  .latest-drop-media{padding:24px;}
  .pincode-form{gap:8px;}
  .pincode-btn{padding-left:1.1em!important;padding-right:1.1em!important;}
}



/* ===================== VERSION 5 FINISHING TOUCHES ===================== */
.product-card h3,
.product-card h3 a,
.pdp-body h1,
.latest-drop-copy h1,
.plp-head h1{
  text-transform:uppercase;
}
@media(max-width:640px){
  .plp-filters .plp-price-range{width:100%;}
  .plp-filters .pincode-btn{min-width:72px;}
}

/* ===================== VERSION 6 — FILTERS / PDP / COUPONS ===================== */

/* Desktop PLP: filter sidebar, top-aligned with product grid */
.plp-layout{display:grid;grid-template-columns:240px minmax(0,1fr);gap:48px;align-items:start;}
.plp-filters{position:sticky;top:100px;margin:0;width:240px;box-sizing:border-box;}
.plp-filter-sheet-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;}
.plp-filter-sheet-head .plp-filter-title{margin:0;}
.plp-filter-close{display:none;background:none;border:0;font-size:1.5rem;line-height:1;cursor:pointer;color:var(--text);}
.plp-filter-fab,.plp-filter-backdrop{display:none;}

/* Discount UI */
.discount-box,.cart-discount-box{margin:14px 0;}
.discount-box label,.cart-discount-box label{display:block;font-size:.78rem;text-transform:uppercase;letter-spacing:.1em;color:var(--brass);margin-bottom:8px;}
.discount-row{display:flex;gap:8px;align-items:stretch;}
.discount-row input{min-width:0;flex:1;border:1px solid var(--border);background:var(--surface);color:var(--text);padding:.8em .9em;border-radius:6px;font:inherit;text-transform:uppercase;}
.discount-row input:focus{outline:none;border-color:var(--brass);}
.discount-row .btn{flex:0 0 auto;padding:.8em 1em;}
.discount-message{min-height:1.2em;margin:6px 0 0;font-size:.78rem;}
.discount-message.is-error{color:#c77;}
.discount-message.is-success{color:#8b9b57;}
.cart-total-row.is-hidden,.cart-discount-row.is-hidden{display:none!important;}
.checkout-discount-row[hidden]{display:none!important;}

/* Returns & Exchange */
.pdp-info-section{margin:22px 0;}
.pdp-info-section h3{margin:0 0 7px;text-transform:uppercase;font-size:.8rem;letter-spacing:.1em;}
.pdp-info-section p{margin:0;color:var(--text-muted);font-size:.85rem;}

/* Zoom hint */
.pdp-zoom-hint{display:none;}
.latest-drop-pdp .pdp-zoom-hint{display:none;}

/* Sticky mobile Add to Bag */
@media(max-width:640px){
  .pdp-actions{
    position:sticky;
    bottom:0;
    z-index:45;
    margin:18px -18px -1px;
    padding:12px 18px calc(12px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(12px);
    border-top:1px solid var(--border);
  }
  .pdp-actions .btn{width:100%;margin:0;}
  .pdp-zoom-hint{
    display:block;
    position:absolute;
    left:50%;
    bottom:12px;
    transform:translateX(-50%);
    padding:6px 10px;
    border-radius:999px;
    background:rgba(20,18,14,.68);
    color:#fff;
    font-size:.7rem;
    white-space:nowrap;
    pointer-events:none;
    letter-spacing:.04em;
  }

  /* Mobile PLP: floating Filters button + bottom-sheet filter */
  .plp-layout{display:flex;flex-direction:column;}
  .plp-results{order:1;}
  .plp-filters{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:80;
    width:100%;
    margin:0;
    max-height:min(70vh,520px);
    overflow:auto;
    border-radius:18px 18px 0 0;
    border:1px solid var(--border);
    padding:18px 18px calc(20px + env(safe-area-inset-bottom));
    background:var(--surface);
    box-shadow:0 -12px 35px rgba(0,0,0,.18);
    transform:translateY(110%);
    transition:transform .25s ease;
    visibility:hidden;
  }
  .plp-filters.is-open{transform:translateY(0);visibility:visible;}
  .plp-filter-close{display:block;}
  .plp-filter-sheet-head{margin-bottom:8px;}
  .plp-filter-group{display:block;}
  .plp-filter-group + .plp-filter-group{margin-top:18px;padding-top:18px;border-top:1px solid var(--border);}
  .plp-category-buttons{flex-direction:row;flex-wrap:wrap;}
  .plp-category-buttons .tag-btn{width:auto;}
  .plp-filter-backdrop{
    position:fixed;
    inset:0;
    z-index:70;
    background:rgba(0,0,0,.38);
    opacity:0;
    visibility:hidden;
    transition:opacity .2s ease;
    display:block;
  }
  .plp-filter-backdrop.is-visible{opacity:1;visibility:visible;}
  .plp-filter-fab{
    display:block;
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:65;
    border:1px solid var(--border);
    background:var(--surface);
    color:var(--text);
    padding:.85em 1.25em;
    border-radius:999px;
    box-shadow:0 8px 24px rgba(0,0,0,.16);
    font:inherit;
    cursor:pointer;
  }
  body.filters-open{overflow:hidden;}
  .discount-row .btn{min-width:74px;}
}

/* Latest drop PDP */
.latest-drop-pdp{align-items:start;}
.latest-drop-pdp .latest-drop-copy{padding-top:10px;}
.latest-drop-pdp .latest-drop-description{color:var(--text-muted);line-height:1.8;}
.latest-price-note{display:none;}

/* ===================== LATEST BUYS GOLD SHINE ===================== */
.shop-section .price-tag{
  position:absolute;
  top:14px;
  right:14px;
  overflow:hidden;
  isolation:isolate;
}
.shop-section .price-tag::after{
  content:"";
  position:absolute;
  top:-30%;
  bottom:-30%;
  left:-55%;
  width:35%;
  height:160%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);
  animation:sukalaGoldShine 3.2s ease-in-out infinite;
  pointer-events:none;
}
@keyframes sukalaGoldShine{
  0%,45%{left:-55%;opacity:0;}
  55%{opacity:1;}
  75%{left:125%;opacity:.9;}
  100%{left:125%;opacity:0;}
}
@media(prefers-reduced-motion:reduce){
  .shop-section .price-tag::after{animation:none;display:none;}
}

/* ===================== VERSION 7 ===================== */
.delivery-section,.packaging-section{padding:0;margin:24px 0;}
.delivery-section{border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:22px 0;}
.delivery-section h3,.packaging-section h3{text-transform:uppercase;font-size:.8rem;letter-spacing:.1em;margin:0 0 9px;}
.delivery-check{margin:0;}
.pincode-form{display:flex;gap:10px;align-items:stretch;}
.pincode-form input{width:170px;min-width:0;border:1px solid var(--border);background:var(--surface);color:var(--text);padding:.85em .9em;border-radius:2px;outline:none;}
.pincode-form input:focus{border-color:var(--brass);}
.pincode-btn{min-width:72px;}
.pincode-message{min-height:1.3em;margin:8px 0 0;font-size:.8rem;}
.pincode-message.is-error{color:#d98d8d;}
.pincode-message.is-success{color:#9fbc72;}
.packaging-head{display:flex;gap:20px;align-items:center;justify-content:space-between;}
.packaging-head p{font-size:.85rem;max-width:620px;margin:0;color:var(--text-muted);}
.switch{position:relative;display:inline-block;width:46px;height:26px;flex:0 0 auto;}
.switch input{opacity:0;width:0;height:0;position:absolute;}
.switch-slider{position:absolute;inset:0;background:var(--surface-2);border:1px solid var(--border);border-radius:999px;transition:.2s;cursor:pointer;}
.switch-slider:before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;border-radius:50%;background:var(--text-muted);transition:.2s;}
.switch input:checked + .switch-slider{background:var(--brass);border-color:var(--brass);}
.switch input:checked + .switch-slider:before{transform:translateX(20px);background:#1a1305;}
.pdp-actions .btn-brass{width:100%;}
.cart-remove-selected{
  width:100%;
  margin:8px 0 12px;
  padding:8px 10px;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text-muted);
  border-radius:6px;
  font:inherit;
  font-size:.72rem;
  cursor:pointer;
}
.cart-remove-selected:disabled{
  opacity:.4;
  cursor:not-allowed;
}
.cart-total-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.pdp-tax-note{
  margin:-8px 0 18px;
  color:var(--text-muted);
  font-size:.72rem;
  letter-spacing:.01em;
}
@media(max-width:640px){
  .cart-item{
    grid-template-columns:22px 62px minmax(0,1fr) 28px;
    gap:8px;
  }
  .cart-trash{font-size:16px;}
}

.cart-trash svg{width:18px;height:18px;display:block;}

/* ===================== FINAL — PLP FILTERS ===================== */

/* Desktop: clean horizontal category chips */
@media (min-width:641px){
  .plp-filters{
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    flex-wrap:nowrap!important;
    gap:22px!important;
    overflow-x:auto;
    scrollbar-width:none;
    white-space:nowrap;
  }
  .plp-filters::-webkit-scrollbar{display:none;}
  .plp-filter-group{
    flex:0 0 auto!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    gap:10px!important;
  }
  .plp-category-buttons{
    display:flex!important;
    flex-direction:row!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    gap:6px!important;
  }
  .plp-category-buttons .tag-btn{
    flex:0 0 auto!important;
    white-space:nowrap;
  }
}

/* Mobile: filters open as a cart-style drawer from the right */
@media (max-width:640px){
  .plp-filter-backdrop{
    z-index:110!important;
  }

  .plp-filters{
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(88vw,380px)!important;
    max-height:none!important;
    height:100dvh!important;
    border-radius:18px 0 0 18px!important;
    padding:22px 20px calc(22px + env(safe-area-inset-bottom))!important;
    overflow-y:auto!important;
    transform:translateX(105%)!important;
    transition:transform .28s ease!important;
    visibility:hidden!important;
    z-index:120!important;
    box-shadow:-12px 0 35px rgba(0,0,0,.22)!important;
  }

  .plp-filters.is-open{
    transform:translateX(0)!important;
    visibility:visible!important;
  }

  .plp-filter-sheet-head{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    margin-bottom:24px!important;
    padding-bottom:14px;
    border-bottom:1px solid var(--border);
  }

  .plp-filter-sheet-head .plp-filter-title{
    font-size:.78rem!important;
    margin:0!important;
  }

  .plp-filter-close{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:34px!important;
    height:34px!important;
    margin:0!important;
    border:1px solid var(--border)!important;
    border-radius:50%!important;
    background:transparent!important;
    color:var(--text)!important;
    font-size:1.35rem!important;
    line-height:1!important;
  }

  .plp-filter-group,
  .plp-filter-group + .plp-filter-group{
    display:block!important;
    margin:0!important;
    padding:20px 0!important;
    border:0!important;
    border-bottom:1px solid var(--border)!important;
  }

  .plp-filter-group .plp-filter-title{
    display:block;
    margin-bottom:12px!important;
  }

  .plp-category-buttons{
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:8px!important;
  }

  .plp-category-buttons .tag-btn{
    width:100%!important;
    text-align:left;
    padding:.75em .9em!important;
  }

  .plp-filter-fab{
    z-index:95!important;
  }
}

/* ===================== SPECIAL PACKAGING — COMING SOON ===================== */
.packaging-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.packaging-head > div{min-width:0;flex:1;}
.packaging-coming-soon{
  flex:0 0 auto;
  font-size:.64rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--brass);
  white-space:nowrap;
}
.packaging-section .switch{
  opacity:.42;
  cursor:not-allowed;
  pointer-events:none;
}
/* ===================== SPECIAL PACKAGING — PROMINENT COMING SOON ===================== */
.packaging-section{
  opacity:.58;
}
.packaging-section h3,
.packaging-section p{
  color:var(--text-muted)!important;
}
.packaging-coming-soon{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border:1px solid var(--brass);
  border-radius:4px;
  background:rgba(180,145,75,.12);
  color:var(--brass)!important;
  font-size:.68rem!important;
  font-weight:700;
  letter-spacing:.12em;
  white-space:nowrap;
}
.packaging-disabled{
  opacity:.35!important;
  pointer-events:none!important;
  cursor:not-allowed!important;
}

/* ===================== PREMIUM PLP FILTER SYSTEM ===================== */
.plp-layout{display:block!important;}
.plp-toolbar{
  position:sticky;
  top:78px;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 0;
  margin:0 0 10px;
  background:var(--bg);
  border-bottom:1px solid var(--border);
}
.plp-toolbar-main{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}
.plp-filter-label{
  display:flex;
  align-items:center;
  gap:7px;
  flex:0 0 auto;
  font-size:.64rem;
  letter-spacing:.13em;
  color:var(--text-muted);
  white-space:nowrap;
}
.plp-filter-icon{font-size:.7rem;opacity:.7;}
.plp-category-buttons{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:nowrap;
}
.filter-chip{
  appearance:none;
  border:1px solid transparent;
  background:transparent;
  color:var(--text-muted);
  padding:8px 13px;
  border-radius:999px;
  font:inherit;
  font-size:.72rem;
  letter-spacing:.02em;
  white-space:nowrap;
  cursor:pointer;
  transition:all .18s ease;
}
.filter-chip:hover{
  color:var(--text);
  background:var(--surface-2);
}
.filter-chip.is-active{
  color:var(--text);
  border-color:var(--text);
  background:var(--surface);
}
.plp-price-control{
  display:flex;
  align-items:center;
  gap:9px;
  padding-left:15px;
  border-left:1px solid var(--border);
  flex:0 0 auto;
}
.plp-price-label{
  font-size:.62rem;
  letter-spacing:.12em;
  color:var(--text-muted);
}
.plp-price-control #plpPriceValue{
  min-width:76px;
  font-size:.72rem;
  font-variant-numeric:tabular-nums;
}
.plp-price-range{
  width:120px;
  accent-color:var(--brass);
}
.plp-clear-all{
  appearance:none;
  border:0;
  background:none;
  color:var(--text-muted);
  font:inherit;
  font-size:.68rem;
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
  white-space:nowrap;
}
.plp-active-filters{
  display:flex;
  align-items:center;
  gap:6px;
  min-height:0;
  margin:0 0 12px;
}
.plp-active-filters:not(.has-filters){display:none;}
.active-filter-chip{
  appearance:none;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border:1px solid var(--border);
  background:var(--surface-2);
  color:var(--text);
  border-radius:999px;
  padding:6px 9px;
  font:inherit;
  font-size:.67rem;
  cursor:pointer;
}
.active-filter-chip span{font-size:.9rem;color:var(--text-muted);}
.plp-filters{display:none!important;}
.plp-filter-fab{display:none!important;}
.plp-filter-backdrop{display:none!important;}

/* Mobile */
@media(max-width:640px){
  .plp-toolbar{
    position:sticky;
    top:0;
    margin:0 -18px 10px;
    padding:10px 18px;
    z-index:40;
    background:var(--bg);
  }
  .plp-toolbar-main{
    width:100%;
    justify-content:space-between;
  }
  .plp-filter-label{display:none;}
  .plp-toolbar-main > .plp-category-buttons,
  .plp-toolbar-main > .plp-price-control{
    display:none;
  }
  .plp-clear-all{display:none;}

  .plp-filter-fab{
    display:flex!important;
    align-items:center;
    justify-content:center;
    gap:7px;
    position:fixed!important;
    right:16px;
    bottom:18px;
    z-index:95!important;
    min-width:96px;
    height:44px;
    border:1px solid var(--border);
    border-radius:999px;
    background:var(--surface);
    color:var(--text);
    box-shadow:0 8px 24px rgba(0,0,0,.16);
    font:inherit;
    font-size:.72rem;
  }
  .plp-fab-icon{font-size:.7rem;opacity:.7;}

  .plp-filters{
    display:block!important;
    position:fixed!important;
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(88vw,390px)!important;
    height:100dvh!important;
    max-height:none!important;
    padding:24px 20px calc(24px + env(safe-area-inset-bottom))!important;
    overflow-y:auto!important;
    background:var(--surface)!important;
    border-left:1px solid var(--border)!important;
    border-radius:16px 0 0 16px!important;
    box-shadow:-14px 0 40px rgba(0,0,0,.24)!important;
    transform:translateX(105%)!important;
    visibility:hidden!important;
    transition:transform .28s cubic-bezier(.2,.7,.2,1),visibility .28s!important;
    z-index:120!important;
  }
  .plp-filters.is-open{
    transform:translateX(0)!important;
    visibility:visible!important;
  }
  .plp-filter-sheet-head{
    display:flex!important;
    align-items:flex-start!important;
    justify-content:space-between!important;
    padding-bottom:18px;
    margin-bottom:2px!important;
    border-bottom:1px solid var(--border);
  }
  .plp-drawer-eyebrow{
    margin:0 0 5px;
    color:var(--brass);
    font-size:.58rem;
    letter-spacing:.14em;
  }
  .plp-filter-title{
    margin:0!important;
    font-size:1.15rem!important;
    letter-spacing:-.01em;
  }
  .plp-filter-close{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:34px!important;
    height:34px!important;
    border:1px solid var(--border)!important;
    border-radius:50%!important;
    background:transparent!important;
    color:var(--text)!important;
    font-size:1.25rem!important;
  }
  .plp-mobile-filter-group{
    padding:22px 0;
    border-bottom:1px solid var(--border);
  }
  .plp-mobile-group-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:14px;
    font-size:.76rem;
    text-transform:uppercase;
    letter-spacing:.1em;
  }
  .plp-mobile-group-head strong{
    font-size:.76rem;
    font-weight:500;
    text-transform:none;
    letter-spacing:0;
    font-variant-numeric:tabular-nums;
  }
  .plp-mobile-filter-group .plp-category-buttons{
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:7px!important;
  }
  .plp-mobile-filter-group .filter-chip{
    text-align:left;
    border:1px solid var(--border);
    border-radius:8px;
    padding:12px 13px;
    font-size:.76rem;
  }
  .plp-mobile-filter-group .filter-chip.is-active{
    border-color:var(--text);
    background:var(--surface-2);
  }
  .plp-mobile-filter-group .plp-price-range{
    width:100%;
    margin:8px 0 6px;
  }
  .plp-price-scale{
    display:flex;
    justify-content:space-between;
    color:var(--text-muted);
    font-size:.65rem;
  }
  .plp-drawer-actions{
    position:sticky;
    bottom:0;
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:10px;
    padding:16px 0 calc(4px + env(safe-area-inset-bottom));
    margin-top:8px;
    background:linear-gradient(var(--surface),var(--surface));
  }
  .plp-drawer-clear{
    border:1px solid var(--border);
    border-radius:7px;
    background:transparent;
    color:var(--text);
    font:inherit;
    font-size:.72rem;
  }
  .plp-show-results{
    min-height:44px;
  }
  .plp-filter-backdrop{
    display:block!important;
    position:fixed!important;
    inset:0!important;
    z-index:110!important;
    background:rgba(0,0,0,.42)!important;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .25s ease,visibility .25s ease;
  }
  .plp-filter-backdrop.is-visible{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
  }
}

/* ===================== PLP FILTER DRAWER — CART DRAWER STYLE ===================== */
@media(max-width:640px){
  .plp-filters{
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(88vw,390px)!important;
    height:100dvh!important;
    max-height:none!important;
    padding:22px 20px calc(22px + env(safe-area-inset-bottom))!important;
    margin:0!important;
    background:var(--surface)!important;
    border:0!important;
    border-left:1px solid var(--border)!important;
    border-radius:18px 0 0 18px!important;
    box-shadow:-18px 0 45px rgba(0,0,0,.24)!important;
    overflow-y:auto!important;
    transform:translateX(105%)!important;
    visibility:hidden!important;
    transition:transform .28s ease,visibility .28s ease!important;
    z-index:120!important;
  }

  .plp-filters.is-open{
    transform:translateX(0)!important;
    visibility:visible!important;
  }

  .plp-filter-sheet-head{
    display:flex!important;
    align-items:flex-start!important;
    justify-content:space-between!important;
    padding:0 0 18px!important;
    margin:0 0 4px!important;
    border-bottom:1px solid var(--border)!important;
  }

  .plp-drawer-eyebrow{
    margin:0 0 6px!important;
    font-size:.58rem!important;
    letter-spacing:.14em!important;
    color:var(--brass)!important;
  }

  .plp-filter-title{
    margin:0!important;
    font-size:1.15rem!important;
    font-weight:500!important;
  }

  .plp-filter-close{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:32px!important;
    height:32px!important;
    margin:0!important;
    border:1px solid var(--border)!important;
    border-radius:50%!important;
    background:transparent!important;
    color:var(--text)!important;
    font-size:1.25rem!important;
  }

  .plp-mobile-filter-group{
    padding:20px 0!important;
    border-bottom:1px solid var(--border)!important;
  }

  .plp-drawer-actions{
    position:sticky!important;
    bottom:0!important;
    margin:0 -20px!important;
    padding:14px 20px calc(10px + env(safe-area-inset-bottom))!important;
    background:var(--surface)!important;
    border-top:1px solid var(--border)!important;
  }

  .plp-filter-backdrop{
    position:fixed!important;
    inset:0!important;
    background:rgba(0,0,0,.42)!important;
    z-index:110!important;
  }
}

/* ===================== VERSION 10 — MOBILE PLP FILTER CLEANUP ===================== */

/* Mobile: active filter chips live only inside the filter drawer.
   Nothing should float over the PLP/product grid. */
@media(max-width:640px){
  .plp-active-filters{
    display:none!important;
  }

  .plp-toolbar{
    position:sticky!important;
    top:0!important;
    z-index:40!important;
  }

  /* Cart-drawer-style PLP filter drawer */
  .plp-filters{
    position:fixed!important;
    top:0!important;
    right:0!important;
    bottom:0!important;
    left:auto!important;
    width:min(88vw,390px)!important;
    height:100dvh!important;
    max-height:none!important;
    margin:0!important;
    padding:22px 20px calc(22px + env(safe-area-inset-bottom))!important;
    background:var(--surface)!important;
    border:0!important;
    border-left:1px solid var(--border)!important;
    border-radius:18px 0 0 18px!important;
    box-shadow:-18px 0 45px rgba(0,0,0,.24)!important;
    overflow-y:auto!important;
    transform:translateX(105%)!important;
    visibility:hidden!important;
    opacity:1!important;
    z-index:120!important;
    transition:transform .28s ease, visibility .28s ease!important;
  }

  .plp-filters.is-open{
    transform:translateX(0)!important;
    visibility:visible!important;
  }

  .plp-filter-sheet-head{
    display:flex!important;
    align-items:flex-start!important;
    justify-content:space-between!important;
    padding:0 0 18px!important;
    margin:0 0 4px!important;
    border-bottom:1px solid var(--border)!important;
  }

  .plp-drawer-eyebrow{
    margin:0 0 6px!important;
    font-size:.58rem!important;
    letter-spacing:.14em!important;
    color:var(--brass)!important;
  }

  .plp-filter-title{
    margin:0!important;
    font-size:1.15rem!important;
    font-weight:500!important;
  }

  .plp-filter-close{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:32px!important;
    height:32px!important;
    margin:0!important;
    border:1px solid var(--border)!important;
    border-radius:50%!important;
    background:transparent!important;
    color:var(--text)!important;
    font-size:1.25rem!important;
    line-height:1!important;
    flex:0 0 auto;
  }

  .plp-mobile-filter-group{
    display:block!important;
    padding:20px 0!important;
    border-bottom:1px solid var(--border)!important;
  }

  .plp-mobile-group-head{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    margin-bottom:14px!important;
  }

  .plp-mobile-filter-group .plp-category-buttons{
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:7px!important;
  }

  .plp-mobile-filter-group .filter-chip{
    width:100%!important;
    text-align:left!important;
    border:1px solid var(--border)!important;
    border-radius:8px!important;
    padding:12px 13px!important;
  }

  .plp-mobile-filter-group .filter-chip.is-active{
    border-color:var(--text)!important;
    background:var(--surface-2)!important;
  }

  .plp-drawer-actions{
    position:sticky!important;
    bottom:0!important;
    z-index:2!important;
    display:grid!important;
    grid-template-columns:1fr 1.5fr!important;
    gap:10px!important;
    margin:8px -20px 0!important;
    padding:14px 20px calc(10px + env(safe-area-inset-bottom))!important;
    background:var(--surface)!important;
    border-top:1px solid var(--border)!important;
  }

  .plp-filter-backdrop{
    display:block!important;
    position:fixed!important;
    inset:0!important;
    z-index:110!important;
    background:rgba(0,0,0,.42)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transition:opacity .25s ease,visibility .25s ease!important;
  }

  .plp-filter-backdrop.is-visible{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
  }

  .plp-filter-fab{
    display:flex!important;
    position:fixed!important;
    right:16px!important;
    bottom:18px!important;
    z-index:95!important;
    align-items:center!important;
    justify-content:center!important;
    gap:7px!important;
    min-width:96px!important;
    height:44px!important;
    border:1px solid var(--border)!important;
    border-radius:999px!important;
    background:var(--surface)!important;
    color:var(--text)!important;
    box-shadow:0 8px 24px rgba(0,0,0,.16)!important;
  }
}

/* VERSION 10 FINAL — MOBILE PLP FILTER TRIGGER IS NOT FLOATING */
@media(max-width:640px){
  .plp-filter-fab{
    display:none!important;
  }

  .plp-mobile-inline-filter{
    display:flex!important;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:44px;
    margin:0 0 12px;
    padding:0;
    border:0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:transparent;
    color:var(--text);
    font:inherit;
    font-size:.72rem;
    letter-spacing:.08em;
    text-transform:uppercase;
  }

  .plp-mobile-inline-filter span:last-child{
    font-size:1rem;
    letter-spacing:0;
  }
}

.plp-mobile-inline-filter{
  display:none;
}

/* VERSION 10 FINAL FINAL — MOBILE PLP HAS ZERO FLOATING/OUTSIDE FILTER CHIPS */
@media(max-width:640px){
  .plp-toolbar,
  .plp-toolbar-main,
  .plp-toolbar-main .plp-category-buttons,
  .plp-toolbar-main .plp-price-control,
  .plp-toolbar-main .plp-filter-label,
  .plp-toolbar-main .plp-clear-all,
  .plp-active-filters,
  .plp-filter-fab{
    display:none!important;
  }

  /* The only filter control outside the drawer. */
  .plp-mobile-inline-filter{
    display:flex!important;
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    height:46px!important;
    min-height:46px!important;
    margin:8px 0 14px!important;
    padding:0 2px!important;
    align-items:center!important;
    justify-content:space-between!important;
    border:0!important;
    border-top:1px solid var(--border)!important;
    border-bottom:1px solid var(--border)!important;
    border-radius:0!important;
    background:transparent!important;
    color:var(--text)!important;
    box-shadow:none!important;
    font:inherit!important;
    font-size:.72rem!important;
    letter-spacing:.08em!important;
    text-transform:uppercase!important;
    z-index:1!important;
  }

  .plp-mobile-inline-filter span:last-child{
    font-size:1rem!important;
    letter-spacing:0!important;
  }

  /* Backdrop is only active when drawer JS opens it. */
  .plp-filter-backdrop{
    display:block!important;
    position:fixed!important;
    inset:0!important;
    z-index:110!important;
    background:rgba(0,0,0,.42)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
  }

  .plp-filter-backdrop.is-visible{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
  }

  /* Category chips are visible only inside the drawer. */
  .plp-filters .plp-category-buttons,
  .plp-filters .filter-chip{
    display:flex!important;
  }
}

/* VERSION 10 — DESKTOP PLP SPACING */
@media(min-width:641px){
  .plp-page{
    padding-top:28px!important;
  }

  .plp-head{
    margin-bottom:22px!important;
  }

  .plp-layout{
    margin-top:0!important;
    padding-top:0!important;
  }

  .plp-toolbar{
    margin-top:0!important;
  }
}

/* ===================== SUKALA PLP — PREMIUM STICKY TABS ===================== */
.plp-layout{
  display:block!important;
  position:relative;
}

.plp-tabs{
  position:sticky;
  top:53px;
  z-index:35;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  margin:0 0 28px;
  background:rgba(18,18,18,.94);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.plp-tabs-scroll{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  width:100%;
  max-width:900px;
}

.plp-tab{
  position:relative;
  appearance:none;
  border:0;
  background:transparent;
  color:var(--text-muted);
  padding:17px 18px 16px;
  font:inherit;
  font-size:.72rem;
  letter-spacing:.08em;
  white-space:nowrap;
  cursor:pointer;
  transition:color .2s ease;
}

.plp-tab::after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  bottom:0;
  height:2px;
  background:var(--brass);
  transform:scaleX(0);
  transition:transform .2s ease;
}

.plp-tab:hover,
.plp-tab.is-active{
  color:var(--text);
}

.plp-tab.is-active::after{
  transform:scaleX(1);
}

.plp-price-tab{
  display:flex;
  align-items:center;
  gap:7px;
}

.plp-tab-chevron{
  font-size:.9rem;
  line-height:1;
  transform:translateY(-1px);
  transition:transform .2s ease;
}

.plp-price-tab[aria-expanded="true"] .plp-tab-chevron{
  transform:rotate(180deg);
}

.plp-price-popover{
  position:absolute;
  top:calc(100% + 10px);
  left:50%;
  transform:translateX(-50%);
  width:min(320px,calc(100vw - 36px));
  padding:18px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  box-shadow:0 16px 38px rgba(0,0,0,.28);
}

.plp-price-popover[hidden]{
  display:none;
}

.plp-price-popover-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}

.plp-price-popover-head span{
  font-size:.6rem;
  letter-spacing:.13em;
  color:var(--text-muted);
}

.plp-price-popover-head strong{
  font-size:.8rem;
  font-weight:500;
}

.plp-price-popover .plp-price-range{
  display:block;
  width:100%;
  accent-color:var(--brass);
}

.plp-price-scale{
  display:flex;
  justify-content:space-between;
  margin-top:6px;
  color:var(--text-muted);
  font-size:.62rem;
}

.plp-price-reset{
  margin-top:14px;
  padding:0;
  border:0;
  background:none;
  color:var(--brass-light);
  font:inherit;
  font-size:.65rem;
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
}

.plp-results-head{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-height:28px;
  margin-bottom:16px;
}

#plpCount{
  color:var(--text-muted);
  font-size:.72rem;
  letter-spacing:.04em;
}

/* Remove all previous filter/drawer entry points from the new tab system. */
.plp-filters,
.plp-filter-fab,
.plp-filter-backdrop,
.plp-active-filters,
.plp-mobile-inline-filter{
  display:none!important;
}

@media(max-width:640px){
  .plp-page{
    padding-top:80px!important;
  }

  .plp-head{
    margin-bottom:26px!important;
  }

  .plp-tabs{
    top:60px;
    justify-content:flex-start;
    min-height:50px;
    margin:0 -18px 20px;
    overflow:hidden;
  }

  .plp-tabs-scroll{
    justify-content:flex-start;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    padding:0 12px;
  }

  .plp-tabs-scroll::-webkit-scrollbar{
    display:none;
  }

  .plp-tab{
    padding:15px 14px 14px;
    font-size:.68rem;
    letter-spacing:.06em;
  }

  .plp-tab::after{
    left:14px;
    right:14px;
  }

  .plp-price-popover{
    position:fixed;
    top:110px;
    left:18px;
    right:18px;
    transform:none;
    width:auto;
    z-index:50;
  }

  .plp-results-head{
    margin-bottom:12px;
  }
}

/* FINAL — PLP PRICE TAB REMOVED */
.plp-price-tab,
.plp-price-popover{
  display:none!important;
}

/* FINAL — PRICE FILTER REMOVED FROM PLP */
.plp-price-tab,
.plp-price-popover,
.plp-price-control,
.plp-price-group{
  display:none!important;
}

/* FINAL CART CLEANUP — SPECIAL PACKAGING IS NOT SHOWN IN CART */
.cart-drawer .cart-packaging-unavailable,
.cart-drawer .cart-packaging-note,
.cart-drawer .cart-packaging-row,
.cart-packaging-unavailable,
.cart-packaging-note,
.cart-packaging-row{
  display:none!important;
}

/* FINAL CART UX — SINGLE ITEM REMOVAL ONLY */
.cart-select,
.cart-remove-check,
.cart-checkmark,
.cart-remove-selected{
  display:none!important;
}

/* VERSION 11 — MOBILE PDP STICKY CTA */
@media (max-width:640px){
  .pdp-sticky-add,
  .pdp-mobile-sticky,
  .sticky-add-to-bag,
  .pdp-sticky-bar{
    background:#111111!important;
    background-color:#111111!important;
    border-top:1px solid var(--border)!important;
    color:var(--text)!important;
  }

  .pdp-sticky-add .btn,
  .pdp-mobile-sticky .btn,
  .sticky-add-to-bag .btn,
  .pdp-sticky-bar .btn,
  .pdp-sticky-add button,
  .pdp-mobile-sticky button,
  .sticky-add-to-bag button,
  .pdp-sticky-bar button{
    background:var(--brass)!important;
    background-color:var(--brass)!important;
    color:#111111!important;
    border-color:var(--brass)!important;
  }
}

/* FINAL PDP ZOOM HINT POSITION */
@media (min-width:961px){
  .pdp-desktop-zoom-hint{
    margin-top:0!important;
    transform:none!important;
    line-height:1.25;
  }
}

/* FINAL FINAL — MOBILE PDP STICKY CTA + HINT */
@media (max-width:640px){
  .pdp-actions{
    background:#111!important;
    background-color:#111!important;
    color:var(--text)!important;
    border-top:1px solid var(--border)!important;
    backdrop-filter:none!important;
    -webkit-backdrop-filter:none!important;
  }

  .pdp-actions .btn,
  .pdp-actions .btn-brass,
  #pdpAddToBag{
    background:var(--brass)!important;
    background-color:var(--brass)!important;
    color:#111!important;
    border-color:var(--brass)!important;
  }

  /* The zoom instruction is intentionally desktop-only. */
  .pdp-zoom-hint{
    display:none!important;
  }
}

/* FINAL ZOOM INSTRUCTIONS */
@media (max-width:640px){
  .pdp-zoom-hint{
    display:block!important;
    position:absolute;
    left:50%;
    bottom:12px;
    transform:translateX(-50%);
    padding:6px 10px;
    border-radius:999px;
    background:rgba(20,18,14,.68);
    color:#fff;
    font-size:.7rem;
    white-space:nowrap;
    pointer-events:none;
    letter-spacing:.04em;
  }

  .pdp-desktop-zoom-hint{
    display:none!important;
  }
}

@media (min-width:641px){
  .pdp-zoom-hint{
    display:none!important;
  }

  .pdp-desktop-zoom-hint{
    display:block;
  }
}

/* FINAL CTA STATE SYNC */
[data-add]:disabled,
[data-plp-add]:disabled,
#pdpAddToBag:disabled,
#latestAddToBag:disabled{
  cursor:default;
}


/* ================================================================
   VERSION 15 — FULL-PAGE ORDER JOURNEY + TRUE EDGE-TO-EDGE PDP
   ================================================================ */

/* -------------------- PDP MOBILE MEDIA -------------------- */
@media (max-width: 640px){
  /* Let the media itself own the full viewport width while keeping
     breadcrumb/product copy comfortably inset. */
  .pdp{
    padding-left:0!important;
    padding-right:0!important;
    gap:26px!important;
  }
  .pdp-media{
    width:100vw!important;
    max-width:none!important;
    margin-left:0!important;
    margin-right:0!important;
    justify-self:stretch!important;
    border-left:0!important;
    border-right:0!important;
    border-radius:0!important;
    padding:18px!important;
    box-sizing:border-box!important;
  }
  .pdp-body,
  .pdp-desktop-zoom-hint{
    margin-left:18px!important;
    margin-right:18px!important;
  }
  .pdp-desktop-zoom-hint{
    width:auto!important;
  }
}

/* -------------------- FULL-PAGE CART -------------------- */
/* The cart is now a full-screen order journey, not a side drawer. */
.cart-drawer{
  position:fixed!important;
  inset:0!important;
  width:100vw!important;
  height:100dvh!important;
  max-width:none!important;
  transform:translateY(100%)!important;
  transition:transform .35s var(--ease)!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  background:var(--surface)!important;
  z-index:60!important;
}
.cart-drawer.is-open{
  transform:translateY(0)!important;
}

.cart-head{
  min-height:76px;
  padding:20px clamp(20px,4vw,56px)!important;
  border-bottom:1px solid var(--border)!important;
}

.cart-step-heading h3{
  margin:0!important;
  font-size:clamp(1rem,2vw,1.35rem)!important;
  letter-spacing:.12em!important;
}

.cart-step-label{
  display:block!important;
  margin-bottom:5px!important;
  color:var(--brass)!important;
  font-size:.62rem!important;
  letter-spacing:.18em!important;
}

/* Gamified two-step tracker */
.checkout-stepper{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:14px!important;
  width:min(760px,calc(100% - 40px))!important;
  margin:26px auto 8px!important;
}
.stepper-step{
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--text-muted);
  white-space:nowrap;
}
.stepper-dot{
  width:32px;
  height:32px;
  border:1px solid var(--border);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:.76rem;
  letter-spacing:0;
  flex:0 0 32px;
}
.stepper-step.is-active .stepper-dot,
.stepper-step.is-complete .stepper-dot{
  background:var(--brass);
  color:#111;
  border-color:var(--brass);
}
.stepper-step.is-active .stepper-text,
.stepper-step.is-complete .stepper-text{
  color:var(--text);
}
.stepper-text{
  font-size:.67rem;
  letter-spacing:.11em;
}
.stepper-line{
  height:1px;
  width:min(120px,14vw);
  background:var(--border);
}
.stepper-line.is-complete{
  background:var(--brass);
}

/* The cart content becomes a centered, roomy page. */
.cart-items{
  width:min(1120px,calc(100% - 40px))!important;
  margin:0 auto!important;
  padding:20px 0 34px!important;
  overflow-y:auto!important;
  flex:1!important;
}
.cart-foot{
  width:min(1120px,calc(100% - 40px))!important;
  margin:0 auto!important;
  padding:20px 0 34px!important;
  flex-shrink:0!important;
}
.cart-foot > .btn{
  max-width:640px!important;
  margin:18px auto 0!important;
}
.cart-scroll-hint{
  margin:12px auto 0!important;
}

/* Order rows are more spacious on the full page. */
.cart-item{
  padding:20px 0!important;
  gap:20px!important;
}
.cart-item-thumb{
  width:84px!important;
  height:84px!important;
}

/* -------------------- STEP 2 FULL PAGE -------------------- */
.modal{
  padding:0!important;
  align-items:stretch!important;
  justify-content:stretch!important;
}
.modal-card{
  width:100vw!important;
  max-width:none!important;
  min-height:100dvh!important;
  max-height:none!important;
  overflow-y:auto!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  padding:34px max(20px,calc((100vw - 1120px)/2)) 60px!important;
}
.checkout-stepper-modal{
  margin-top:10px!important;
  margin-bottom:38px!important;
}
.modal-card > h3{
  font-size:clamp(1.8rem,4vw,2.6rem)!important;
  letter-spacing:.04em;
}
.modal-card .order-summary{
  max-width:760px;
}
#checkoutForm{
  max-width:760px;
}

/* Remove the overlay dimming when the cart is open: the cart itself is the
   full-page surface. */
.overlay.is-visible{
  opacity:0!important;
  pointer-events:none!important;
}

/* -------------------- MOBILE ORDER JOURNEY -------------------- */
@media(max-width:640px){
  .cart-head{
    min-height:68px!important;
    padding:17px 18px!important;
  }
  .checkout-stepper{
    width:calc(100% - 36px)!important;
    gap:8px!important;
    margin:20px auto 4px!important;
  }
  .stepper-dot{
    width:28px;
    height:28px;
    flex-basis:28px;
    font-size:.7rem;
  }
  .stepper-text{
    font-size:.56rem;
    letter-spacing:.07em;
  }
  .stepper-line{
    width:24px;
  }
  .cart-items,
  .cart-foot{
    width:calc(100% - 36px)!important;
  }
  .cart-items{
    padding-top:12px!important;
  }
  .cart-foot{
    padding-bottom:calc(20px + env(safe-area-inset-bottom))!important;
  }
  .cart-item-thumb{
    width:72px!important;
    height:72px!important;
  }
  .modal-card{
    padding:22px 18px calc(40px + env(safe-area-inset-bottom))!important;
  }
  .checkout-stepper-modal{
    margin:4px auto 30px!important;
  }
}

/* Respect reduced motion. */
@media(prefers-reduced-motion:reduce){
  .cart-drawer,
  .modal{
    transition:none!important;
  }
}


/* ================================================================
   VERSION 17 — DEDICATED PREMIUM CART PAGE
   Inspired by contemporary luxury fashion/ecommerce principles:
   editorial whitespace, clear order hierarchy, transparent pricing,
   and a focused checkout journey.
   ================================================================ */

.cart-page-body{
  background:var(--bg);
}
.cart-page{
  min-height:calc(100vh - 80px);
  padding:clamp(54px,7vw,100px) 28px 110px;
}
.cart-page-hero{
  width:min(1180px,100%);
  margin:0 auto;
  text-align:center;
}
.cart-page-hero h1{
  margin:8px 0 12px;
  font-size:clamp(2.4rem,5vw,4.6rem);
  font-weight:400;
  letter-spacing:-.035em;
}
.cart-page-intro{
  margin:0 auto;
  max-width:520px;
  color:var(--text-muted);
  font-size:1rem;
  line-height:1.8;
}

/* Premium two-step journey tracker */
.cart-journey{
  width:min(760px,100%);
  margin:48px auto 68px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.journey-step{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text-muted);
  transition:opacity .2s ease, transform .2s ease;
}
.journey-number{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  border-radius:50%;
  font-size:.68rem;
  letter-spacing:.08em;
}
.journey-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
  white-space:nowrap;
}
.journey-copy strong{
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.journey-copy small{
  font-size:.68rem;
  color:var(--text-muted);
}
.journey-step.is-active,
.journey-step.is-complete{
  color:var(--text);
}
.journey-step.is-active .journey-number,
.journey-step.is-complete .journey-number{
  background:var(--brass);
  border-color:var(--brass);
  color:#111;
}
.journey-progress{
  width:100px;
  height:1px;
  background:var(--border);
  position:relative;
  overflow:hidden;
}
.journey-progress span{
  position:absolute;
  inset:0 auto 0 0;
  width:0;
  background:var(--brass);
  transition:width .35s ease;
}
.journey-progress.is-complete span{
  width:100%;
}

/* Step layouts */
.cart-step{
  width:min(1180px,100%);
  margin:0 auto;
  display:none;
}
.cart-step.is-active{
  display:grid;
}
.cart-step-one{
  grid-template-columns:minmax(0,1fr) 360px;
  gap:72px;
  align-items:start;
}
.cart-main-column{
  min-width:0;
}
.cart-section-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  padding-bottom:18px;
  border-bottom:1px solid var(--border);
}
.section-kicker,
.summary-kicker{
  margin:0 0 8px;
  color:var(--brass);
  font-size:.65rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.cart-section-heading h2,
.review-form-column h2{
  margin:0;
  font-size:clamp(1.65rem,3vw,2.5rem);
  font-weight:400;
  letter-spacing:-.025em;
}
.cart-piece-count{
  color:var(--text-muted);
  font-size:.78rem;
}

/* Clean product rows */
.cart-page-items{
  min-height:120px;
}
.cart-page-items .cart-item{
  display:grid;
  grid-template-columns:110px minmax(0,1fr) 42px;
  align-items:center;
  gap:24px;
  padding:24px 0!important;
  border-bottom:1px solid var(--border);
}
.cart-page-items .cart-item-thumb{
  width:110px!important;
  height:110px!important;
  background:#1b1b1b;
  border:1px solid var(--border);
}
.cart-page-items .cart-item-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cart-page-items .cart-item-body h4{
  margin:0 0 8px;
  font-size:1rem;
  font-weight:400;
  letter-spacing:.03em;
}
.cart-page-items .cart-item-price{
  color:var(--brass-light);
  font-size:.95rem;
}
.cart-page-items .cart-trash{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  background:transparent;
  border:1px solid var(--border);
  border-radius:50%;
  color:var(--text-muted);
}
.cart-page-items .cart-trash:hover{
  color:var(--text);
  border-color:var(--brass);
}
.cart-page-items .cart-trash svg{
  width:17px;
  height:17px;
}
.cart-empty{
  padding:80px 0;
  color:var(--text-muted);
  text-align:center;
  border-bottom:1px solid var(--border);
}

/* Reassurance */
.cart-assurance{
  display:flex;
  gap:14px;
  margin-top:28px;
  padding:18px 0;
  color:var(--text-muted);
}
.assurance-mark{
  color:var(--brass);
  font-size:1rem;
}
.cart-assurance strong{
  display:block;
  margin-bottom:5px;
  color:var(--text);
  font-size:.78rem;
  font-weight:500;
}
.cart-assurance p{
  margin:0;
  font-size:.72rem;
  line-height:1.6;
}

/* Summary card — quiet luxury rather than a heavy box */
.cart-summary-card,
.review-summary-card{
  position:sticky;
  top:104px;
  padding:26px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.summary-kicker{
  margin-bottom:20px;
}
.cart-summary-card .cart-total-row{
  padding:8px 0;
  border:0;
}
.cart-summary-card .cart-total-row span:first-child{
  color:var(--text-muted);
}
.cart-summary-card .cart-total-row span:last-child{
  color:var(--text);
}
.cart-summary-card .cart-discount-box{
  margin:20px 0 10px;
  padding:16px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.cart-summary-card .cart-discount-box label{
  display:block;
  margin-bottom:9px;
  color:var(--text-muted);
  font-size:.67rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.summary-total{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:20px;
  padding:22px 0 18px;
}
.summary-total span{
  font-size:.9rem;
}
.summary-total strong{
  color:var(--brass-light);
  font-size:1.45rem;
  font-weight:400;
}
.cart-primary-cta{
  min-height:56px;
  letter-spacing:.04em;
}
.cart-note{
  margin:13px 0 0!important;
  color:var(--text-muted);
  font-size:.67rem;
  line-height:1.6;
  text-align:center;
}

/* Review page */
.cart-step-two{
  display:none;
}
.cart-step-two.is-active{
  display:block;
}
.review-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:80px;
  align-items:start;
}
.back-to-cart{
  margin:0 0 30px;
  padding:0;
  border:0;
  background:none;
  color:var(--text-muted);
  font:inherit;
  font-size:.72rem;
  letter-spacing:.04em;
  cursor:pointer;
}
.back-to-cart:hover{
  color:var(--brass-light);
}
.review-intro{
  max-width:570px;
  margin:14px 0 36px;
  color:var(--text-muted);
  line-height:1.75;
}
.cart-checkout-form{
  max-width:680px;
}
.cart-checkout-form label{
  display:block;
  margin:0 0 22px;
  color:var(--text-muted);
  font-size:.69rem;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.cart-checkout-form input,
.cart-checkout-form textarea{
  margin-top:9px;
  width:100%;
  box-sizing:border-box;
}
.cart-checkout-form textarea{
  min-height:130px;
  resize:vertical;
}
.cart-checkout-form .btn{
  min-height:56px;
  margin-top:8px;
}
.review-summary-card{
  top:104px;
}
.review-summary-card .order-summary{
  display:block;
}
.review-summary-card .order-line{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  color:var(--text-muted);
  font-size:.76rem;
}
.review-summary-card .order-line span:last-child{
  color:var(--text);
}
.review-summary-card .order-line.total{
  margin-top:8px;
  padding-top:18px;
  border-bottom:0;
  color:var(--text);
  font-size:.95rem;
}
.review-summary-card .order-line.total span:last-child{
  color:var(--brass-light);
  font-size:1.3rem;
}
.review-note{
  display:flex;
  gap:12px;
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid var(--border);
}
.review-note > span{
  color:var(--brass);
}
.review-note p{
  margin:0;
  color:var(--text-muted);
  font-size:.68rem;
  line-height:1.7;
}

/* Mobile */
@media(max-width:760px){
  .cart-page{
    padding:42px 18px 72px;
  }
  .cart-page-hero h1{
    font-size:2.7rem;
  }
  .cart-page-intro{
    font-size:.88rem;
  }
  .cart-journey{
    margin:36px auto 48px;
    gap:8px;
  }
  .journey-number{
    width:34px;
    height:34px;
    font-size:.62rem;
  }
  .journey-copy strong{
    font-size:.58rem;
    letter-spacing:.08em;
  }
  .journey-copy small{
    display:none;
  }
  .journey-progress{
    width:36px;
  }
  .cart-step-one,
  .review-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
  .cart-section-heading{
    align-items:center;
  }
  .cart-page-items .cart-item{
    grid-template-columns:78px minmax(0,1fr) 38px;
    gap:14px;
    padding:18px 0!important;
  }
  .cart-page-items .cart-item-thumb{
    width:78px!important;
    height:78px!important;
  }
  .cart-page-items .cart-item-body h4{
    font-size:.86rem;
  }
  .cart-summary-card,
  .review-summary-card{
    position:static;
    padding:24px 0;
  }
  .cart-summary-card{
    border-top:1px solid var(--border);
  }
  .review-form-column h2{
    font-size:2.1rem;
  }
}

/* Prevent the old drawer styles from affecting the dedicated cart page. */
.cart-page-body .cart-drawer,
.cart-page-body .overlay,
.cart-page-body .modal{
  display:none!important;
}


/* ================================================================
   VERSION 19 — CART STICKY ACTIONS
   Bottom action area follows the same mobile-first sticky-action
   hygiene as the PDP: always accessible while the cart scrolls.
   ================================================================ */

.cart-page-body .cart-summary-card{
  position:sticky!important;
  bottom:0!important;
  top:auto!important;
  z-index:25;
  background:var(--surface)!important;
  padding:18px 0 calc(18px + env(safe-area-inset-bottom))!important;
  border-top:1px solid var(--border)!important;
  border-bottom:0!important;
}

/* Keep the summary content compact while the action remains anchored. */
.cart-page-body .cart-summary-card .summary-total{
  padding:12px 0 10px!important;
}

.cart-page-body .cart-primary-cta{
  position:relative!important;
  z-index:2;
  min-height:56px!important;
}

@media(max-width:760px){
  .cart-page-body .cart-summary-card{
    margin-left:-18px;
    margin-right:-18px;
    padding-left:18px!important;
    padding-right:18px!important;
    box-shadow:0 -10px 30px rgba(0,0,0,.22);
  }
}

@media(min-width:761px){
  .cart-page-body .cart-summary-card{
    position:sticky!important;
    top:104px!important;
    bottom:auto!important;
  }
}


/* ================================================================
   VERSION 20 — CART VISUAL HIERARCHY
   Stepper belongs immediately below the global header.
   Cart title follows the same scale as the site's other page titles.
   ================================================================ */

.cart-page-body .cart-journey{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  padding:18px clamp(18px,4vw,56px)!important;
  border-bottom:1px solid var(--border);
  background:var(--bg);
  position:relative;
  z-index:5;
}

.cart-page-body .cart-journey > *{
  /* keep the stepper itself centered inside the full-width strip */
}

.cart-page-body .cart-page-hero{
  padding-top:clamp(42px,6vw,72px);
}

.cart-page-body .cart-page-hero h1{
  /* Match the site's standard page-title scale instead of the oversized
     editorial 4.6rem treatment used in the previous cart version. */
  font-size:clamp(1.9rem,3vw,2.6rem)!important;
  letter-spacing:-0.05em!important;
  line-height:1.12!important;
}

@media(max-width:760px){
  .cart-page-body .cart-journey{
    padding:14px 18px!important;
  }
  .cart-page-body .cart-page-hero{
    padding-top:34px!important;
  }
  .cart-page-body .cart-page-hero h1{
    font-size:clamp(1.9rem,7vw,2.35rem)!important;
  }
}


/* ================================================================
   VERSION 22 — CART CLEANUP / VISUAL HYGIENE
   Consolidated final presentation layer for the dedicated cart page.
   ================================================================ */

/* Stepper: directly beneath header, centered inside a restrained strip. */
.cart-page-body .cart-journey{
  width:100%!important;
  margin:0!important;
  padding:16px 24px!important;
  background:var(--bg)!important;
  border-bottom:1px solid var(--border)!important;
}
.cart-page-body .journey-inner{
  width:min(720px,100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.cart-page-body .journey-step{
  display:flex;
  align-items:center;
  gap:10px;
}
.cart-page-body .journey-number{
  width:32px;
  height:32px;
  flex:0 0 32px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  border-radius:50%;
  font-size:.62rem;
  letter-spacing:.06em;
}
.cart-page-body .journey-step.is-active .journey-number,
.cart-page-body .journey-step.is-complete .journey-number{
  background:var(--brass);
  border-color:var(--brass);
  color:#111;
}
.cart-page-body .journey-copy{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.cart-page-body .journey-copy strong{
  color:var(--text);
  font-size:.62rem;
  font-weight:500;
  letter-spacing:.11em;
}
.cart-page-body .journey-copy small{
  color:var(--text-muted);
  font-size:.61rem;
}
.cart-page-body .journey-progress{
  width:90px;
  height:1px;
  background:var(--border);
}
.cart-page-body .journey-progress span{
  display:block;
  width:0;
  height:100%;
  background:var(--brass);
  transition:width .3s ease;
}
.cart-page-body .journey-progress.is-complete span{
  width:100%;
}

/* Hero: same calm hierarchy as the rest of the site. */
.cart-page-body .cart-page{
  padding:52px 28px 96px!important;
}
.cart-page-body .cart-page-hero{
  padding:0!important;
  margin:0 auto 54px!important;
}
.cart-page-body .cart-page-hero h1{
  font-size:clamp(1.9rem,3vw,2.6rem)!important;
  line-height:1.12!important;
  letter-spacing:-.05em!important;
  margin-bottom:10px!important;
}
.cart-page-body .cart-page-intro{
  font-size:.9rem!important;
  max-width:460px!important;
}

/* Step 1: strong grid, no unnecessary boxes. */
.cart-page-body .cart-step-one{
  width:min(1180px,100%)!important;
  grid-template-columns:minmax(0,1fr) 350px!important;
  gap:72px!important;
}
.cart-page-body .cart-section-heading{
  padding-bottom:16px!important;
}
.cart-page-body .cart-page-items .cart-item{
  grid-template-columns:96px minmax(0,1fr) 40px!important;
  gap:20px!important;
  padding:20px 0!important;
}
.cart-page-body .cart-page-items .cart-item-thumb{
  width:96px!important;
  height:96px!important;
  border-radius:0!important;
}
.cart-page-body .cart-page-items .cart-item-body h4{
  font-size:.9rem!important;
  margin-bottom:7px!important;
}
.cart-page-body .cart-page-items .cart-item-price{
  font-size:.82rem!important;
}
.cart-page-body .cart-assurance{
  margin-top:22px!important;
  padding:16px 0!important;
}

/* Summary: clean right rail, no giant card treatment. */
.cart-page-body .cart-summary-card{
  position:sticky!important;
  top:105px!important;
  bottom:auto!important;
  align-self:start!important;
  background:transparent!important;
  padding:22px 0!important;
  border-top:1px solid var(--border)!important;
  border-bottom:1px solid var(--border)!important;
  box-shadow:none!important;
}
.cart-page-body .cart-summary-card .cart-total-row{
  padding:7px 0!important;
}
.cart-page-body .cart-summary-card .cart-discount-box{
  margin:18px 0 6px!important;
}
.cart-page-body .summary-total{
  padding:18px 0 14px!important;
}

/* On desktop only the summary is sticky; the action itself is not floating. */
@media(min-width:761px){
  .cart-page-body .cart-summary-card .cart-primary-cta{
    position:static!important;
  }
}

/* Mobile: only the action area is sticky, not the entire summary.
   This prevents the discount + totals block from obscuring the cart. */
@media(max-width:760px){
  .cart-page-body .cart-page{
    padding:34px 18px 112px!important;
  }
  .cart-page-body .cart-page-hero{
    margin-bottom:38px!important;
  }
  .cart-page-body .cart-page-hero h1{
    font-size:clamp(1.9rem,7vw,2.35rem)!important;
  }

  .cart-page-body .cart-journey{
    padding:13px 14px!important;
  }
  .cart-page-body .journey-inner{
    width:100%;
    gap:7px;
  }
  .cart-page-body .journey-number{
    width:29px;
    height:29px;
    flex-basis:29px;
    font-size:.56rem;
  }
  .cart-page-body .journey-copy strong{
    font-size:.54rem;
    letter-spacing:.07em;
  }
  .cart-page-body .journey-copy small{
    display:none;
  }
  .cart-page-body .journey-progress{
    width:30px;
  }

  .cart-page-body .cart-step-one{
    grid-template-columns:1fr!important;
    gap:30px!important;
  }
  .cart-page-body .cart-section-heading{
    margin-bottom:0!important;
  }
  .cart-page-body .cart-page-items .cart-item{
    grid-template-columns:72px minmax(0,1fr) 36px!important;
    gap:13px!important;
    padding:16px 0!important;
  }
  .cart-page-body .cart-page-items .cart-item-thumb{
    width:72px!important;
    height:72px!important;
  }

  .cart-page-body .cart-summary-card{
    position:relative!important;
    top:auto!important;
    bottom:auto!important;
    margin:4px -18px 0!important;
    padding:18px 18px calc(14px + env(safe-area-inset-bottom))!important;
    background:rgba(18,18,18,.97)!important;
    border-top:1px solid var(--border)!important;
    border-bottom:0!important;
    box-shadow:0 -12px 28px rgba(0,0,0,.28)!important;
  }

  /* Discount stays in normal flow; only the final totals + CTA form the
     persistent bottom action region. */
  .cart-page-body .cart-summary-card .cart-discount-box{
    margin:12px 0 8px!important;
  }
  .cart-page-body .cart-summary-card .summary-total{
    padding:12px 0 8px!important;
  }
  .cart-page-body .cart-summary-card .cart-primary-cta{
    min-height:54px!important;
  }
}

/* Empty state remains intentionally quiet. */
.cart-page-body .cart-empty{
  padding:60px 10px!important;
  border-bottom:1px solid var(--border);
}


/* ================================================================
   NEXT-ORDER VOUCHER — 5% / 30 DAYS
   ================================================================ */
.voucher-success{
  position:fixed;
  inset:0;
  z-index:1000;
  display:grid;
  place-items:center;
  padding:24px;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(8px);
}
.voucher-success-card{
  position:relative;
  width:min(480px,100%);
  box-sizing:border-box;
  padding:42px 34px 34px;
  background:var(--surface);
  border:1px solid var(--border);
  text-align:center;
  box-shadow:0 24px 80px rgba(0,0,0,.45);
}
.voucher-close{
  position:absolute;
  top:18px;
  right:18px;
  width:36px;
  height:36px;
  border:1px solid var(--border);
  border-radius:50%;
  background:transparent;
  color:var(--text);
  font-size:20px;
  line-height:1;
}
.voucher-success-card h2{
  margin:8px 0 10px;
  font-size:3rem;
  font-weight:400;
  letter-spacing:-.04em;
}
.voucher-success-copy{
  max-width:350px;
  margin:0 auto 24px;
  color:var(--text-muted);
  font-size:.86rem;
  line-height:1.7;
}
.voucher-code-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:13px;
}
.voucher-code{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border:1px dashed var(--brass);
  color:var(--brass-light);
  font-size:.9rem;
  letter-spacing:.16em;
}
.voucher-copy-btn{
  min-height:46px;
}
.voucher-validity{
  margin:0 0 26px;
  color:var(--text-muted);
  font-size:.67rem;
}
@media(max-width:640px){
  .voucher-success{padding:18px;}
  .voucher-success-card{padding:38px 20px 24px;}
  .voucher-success-card h2{font-size:2.6rem;}
  .voucher-code-wrap{flex-direction:column;}
  .voucher-code,.voucher-copy-btn{width:100%;box-sizing:border-box;}
}

/* Version 26 — dynamic CLV voucher UI */
.voucher-success{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:24px;background:rgba(0,0,0,.78);backdrop-filter:blur(8px)}
.voucher-success-card{position:relative;width:min(480px,100%);box-sizing:border-box;padding:42px 34px 34px;background:var(--surface);border:1px solid var(--border);text-align:center;box-shadow:0 24px 80px rgba(0,0,0,.45)}
.voucher-close{position:absolute;top:18px;right:18px;width:36px;height:36px;border:1px solid var(--border);border-radius:50%;background:transparent;color:var(--text);font-size:20px;line-height:1}
.voucher-success-card h2{margin:8px 0 10px;font-size:3rem;font-weight:400;letter-spacing:-.04em}
.voucher-success-copy{max-width:350px;margin:0 auto 24px;color:var(--text-muted);font-size:.86rem;line-height:1.7}
.voucher-code-wrap{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:13px}
.voucher-code{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 20px;border:1px dashed var(--brass);color:var(--brass-light);font-size:.9rem;letter-spacing:.16em}
.voucher-copy-btn{min-height:46px}
.voucher-validity{margin:0 0 26px;color:var(--text-muted);font-size:.67rem}
@media(max-width:640px){.voucher-success{padding:18px}.voucher-success-card{padding:38px 20px 24px}.voucher-success-card h2{font-size:2.6rem}.voucher-code-wrap{flex-direction:column}.voucher-code,.voucher-copy-btn{width:100%;box-sizing:border-box}}


/* ================================================================
   VERSION 29 — STEP 2 CTA PLACEMENT
   Desktop: primary action sits directly below the order summary.
   Mobile retains the established sticky action treatment.
   ================================================================ */
@media(min-width:761px){
  .cart-page-body .cart-step-two{
    width:min(1180px,100%)!important;
  }

  .cart-page-body .cart-step-two .cart-review-layout{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) 350px!important;
    gap:72px!important;
    align-items:start!important;
  }

  .cart-page-body .cart-step-two .cart-review-summary{
    position:sticky!important;
    top:105px!important;
    align-self:start!important;
  }

  .cart-page-body .cart-step-two .cart-review-summary .cart-primary-cta{
    display:block!important;
    width:100%!important;
    margin-top:20px!important;
    position:static!important;
  }
}


/* ================================================================
   VERSION 29 FINAL — STEP 2 PRIMARY CTA
   The action belongs to the order summary on desktop, directly
   beneath it, so it is visible without scrolling the form column.
   ================================================================ */
.cart-page-body .cart-step-two .review-summary-card .cart-primary-cta{
  width:100%!important;
  margin-top:22px!important;
  position:static!important;
}

@media(min-width:761px){
  .cart-page-body .cart-step-two .review-summary-card{
    position:sticky!important;
    top:105px!important;
    align-self:start!important;
  }
}

@media(max-width:760px){
  .cart-page-body .cart-step-two .review-summary-card .cart-primary-cta{
    width:100%!important;
    margin-top:20px!important;
  }
}

/* VERSION 30 — TOP TOASTS */
.toast{
  top:calc(18px + env(safe-area-inset-top))!important;
  bottom:auto!important;
  left:50%!important;
  right:auto!important;
  transform:translateX(-50%) translateY(-12px)!important;
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  width:max-content;
  max-width:min(520px,calc(100vw - 32px));
  box-sizing:border-box;
  padding:13px 18px!important;
  z-index:2000!important;
}
.toast.is-visible{
  transform:translateX(-50%) translateY(0)!important;
}
.toast.is-error{
  background:#b3261e!important;
  color:#fff!important;
  border-color:#b3261e!important;
}
.toast.is-error::before{
  content:"×";
  display:grid;
  place-items:center;
  width:19px;
  height:19px;
  flex:0 0 19px;
  border:1px solid rgba(255,255,255,.9);
  border-radius:50%;
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:600;
}
@media(max-width:640px){
  .toast{max-width:calc(100vw - 24px);padding:12px 15px!important;}
}


/* VERSION 33 — hide bag counter while on the dedicated cart page */
#cartCount[hidden]{display:none!important;}


/* ================================================================
   VERSION 34 — MOBILE SCROLL FABs
   Cart: summary shortcut at the top of each checkout step.
   PLP: back-to-top appears after two viewport folds.
   ================================================================ */
.mobile-scroll-fab{
  display:none;
}

@media(max-width:760px){
  .mobile-scroll-fab{
    position:fixed;
    left:50%;
    bottom:calc(20px + env(safe-area-inset-bottom));
    transform:translateX(-50%) translateY(18px);
    z-index:150;
    border:1px solid rgba(232,203,134,.65);
    border-radius:999px;
    background:rgba(18,18,18,.94);
    color:var(--text);
    box-shadow:0 10px 30px rgba(0,0,0,.42);
    padding:13px 21px;
    min-height:46px;
    white-space:nowrap;
    font-family:'Metrophobic',sans-serif;
    font-size:.72rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease, background .22s ease;
    -webkit-backdrop-filter:blur(10px);
    backdrop-filter:blur(10px);
  }

  .mobile-scroll-fab.is-visible{
    display:block;
    opacity:1;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
  }

  .mobile-scroll-fab:active{
    transform:translateX(-50%) translateY(1px);
  }
}


/* VERSION 35 — MOBILE PDP PAN/ZOOM */
@media (hover:none) and (pointer:coarse){
  .pdp-media.is-zoomed img{
    cursor:grab;
    user-select:none;
    -webkit-user-select:none;
  }
  .pdp-media.is-zoomed:active img{
    cursor:grabbing;
  }
}


/* ================================================================
   VERSION 36 — HOMEPAGE DROPS SPACING
   Keep the collection label, title and supporting copy visually
   grouped on mobile without creating a crowded block.
   ================================================================ */
@media(max-width:640px){
  .shop-section{
    padding-top:72px;
    padding-bottom:52px;
  }

  .shop-section .section-head{
    margin-bottom:30px;
  }

  .shop-section .section-head .tag-label{
    margin-bottom:10px;
    line-height:1.2;
  }

  .shop-section .section-head h2{
    margin:0 0 12px;
    line-height:1.08;
  }

  .shop-section .section-head h3{
    margin:0 auto;
    max-width:330px;
    font-size:.82rem;
    line-height:1.6;
    letter-spacing:.01em;
  }

  .shop-section .filter-tags{
    margin-top:0;
    margin-bottom:38px;
  }

  .cart-summary-fab{
    gap:9px;
  }

  .cart-summary-fab .fab-arrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    line-height:1;
    transform:translateY(-1px);
  }
}
