@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
  --ink:#111111;
  --white:#FFFFFF;
  --gold:#D4AF37;
  --gold-bright:#FFD700;
  --grey:#6B6B6B;
  --grey-light:#9B9B9B;
  --line:#E4E4E4;
  --offwhite:#F7F7F5;
  --error:#B3261E;
  --success:#2E7D42;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--white); color:var(--ink);
  font-family:'Poppins', sans-serif; font-weight:400;
  -webkit-font-smoothing:antialiased; line-height:1.5;
  display:flex; flex-direction:column; min-height:100vh;
}
main{ flex:1; }
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit;}
ul{list-style:none;}
input,textarea,select{font-family:inherit; font-size:14px;}
.display{ font-family:'Cormorant Garamond', serif; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:2px; }
.gold{ color:var(--gold); }
.wrap{ max-width:1440px; margin:0 auto; padding:0 40px; }

/* ============ TOP ANNOUNCEMENT BAR ============ */
.announce-bar{
  background:var(--ink); color:var(--white);
  height:38px; overflow:hidden; position:relative;
  display:flex; align-items:center; justify-content:center;
}
.announce-track{ position:relative; width:100%; height:100%; }
.announce-item{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  gap:8px; font-size:12px; letter-spacing:.04em; font-weight:400;
  opacity:0; transform:translateY(8px); transition:opacity .5s ease, transform .5s ease;
}
.announce-item.active{ opacity:1; transform:translateY(0); }
.announce-item svg{ width:13px; height:13px; stroke:var(--gold); fill:none; stroke-width:1.6; }

/* ============ UTILITY STRIP ============ */
.utility-strip{
  background:var(--offwhite); border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 40px; font-size:11.5px; color:var(--grey);
}
.utility-strip .left, .utility-strip .right{ display:flex; align-items:center; gap:20px; }
.utility-strip a:hover{ color:var(--ink); }
.util-divider{ width:1px; height:12px; background:var(--line); }

/* ============ MAIN HEADER / NAV ============ */
header.site-header{ position:sticky; top:0; z-index:70; background:var(--white); border-bottom:1px solid var(--line); }
.nav-row{ display:flex; align-items:center; justify-content:space-between; padding:18px 40px; gap:16px; }
.logo{ font-family:'Cormorant Garamond', serif; font-size:28px; font-weight:600; letter-spacing:.02em; white-space:nowrap; }
.logo .dot{ color:var(--gold); }
.nav-center{ display:flex; align-items:center; gap:34px; }
.nav-item{ position:relative; }
.nav-item > a, .nav-item > button{
  font-size:13px; letter-spacing:.05em; text-transform:uppercase; font-weight:500;
  padding:10px 0; display:inline-flex; align-items:center; gap:5px;
}
.nav-item.sale > a{ color:var(--error); }
.nav-item.current > a, .nav-item.current > button{ color:var(--gold); }
.nav-item > button svg{ width:10px; height:10px; stroke:currentColor; fill:none; stroke-width:2; transition:transform .2s ease; }
.nav-item:hover > button svg{ transform:rotate(180deg); }
.nav-item::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width .25s ease; }
.nav-item:hover::after{ width:100%; }

.mega-menu{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(6px);
  background:var(--white); border:1px solid var(--line); box-shadow:0 18px 40px rgba(0,0,0,.08);
  padding:28px 34px; display:none; gap:44px; min-width:520px; z-index:75;
}
.nav-item:hover .mega-menu{ display:flex; }
.mega-col h5{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; font-weight:600; }
.mega-col li{ margin-bottom:10px; }
.mega-col a{ font-size:13px; color:var(--ink); }
.mega-col a:hover{ color:var(--gold); text-decoration:underline; }

.nav-icons{ display:flex; align-items:center; gap:20px; }
.icon-btn{ position:relative; width:21px; height:21px; }
.icon-btn svg{ width:100%; height:100%; stroke:var(--ink); fill:none; stroke-width:1.5; }
.count-badge{
  position:absolute; top:-8px; right:-9px; background:var(--gold); color:var(--ink);
  font-size:9.5px; font-weight:700; width:15px; height:15px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.mobile-nav-toggle{ display:none; width:24px; height:20px; position:relative; }
.mobile-nav-toggle span{ position:absolute; left:0; right:0; height:2px; background:var(--ink); transition:all .25s ease; }
.mobile-nav-toggle span:nth-child(1){ top:0; }
.mobile-nav-toggle span:nth-child(2){ top:9px; }
.mobile-nav-toggle span:nth-child(3){ top:18px; }

/* ============ MOBILE NAV DRAWER ============ */
.mobile-overlay{ position:fixed; inset:0; background:rgba(17,17,17,.5); z-index:120; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.mobile-overlay.show{ opacity:1; pointer-events:auto; }
.mobile-drawer{
  position:fixed; top:0; left:0; height:100%; width:320px; max-width:88vw; background:var(--white);
  z-index:125; transform:translateX(-100%); transition:transform .35s cubic-bezier(.65,0,.35,1);
  display:flex; flex-direction:column; box-shadow:8px 0 30px rgba(0,0,0,.15);
}
.mobile-drawer.show{ transform:translateX(0); }
.mobile-drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:20px; border-bottom:1px solid var(--line); }
.mobile-drawer-body{ flex:1; overflow-y:auto; padding:10px 0; }
.m-acc-item{ border-bottom:1px solid var(--line); }
.m-acc-head{ width:100%; display:flex; align-items:center; justify-content:space-between; padding:16px 20px; font-size:13px; letter-spacing:.04em; text-transform:uppercase; font-weight:600; }
.m-acc-head svg{ width:11px; height:11px; stroke:currentColor; fill:none; stroke-width:2; transition:transform .2s ease; }
.m-acc-item.open .m-acc-head svg{ transform:rotate(180deg); }
.m-acc-panel{ max-height:0; overflow:hidden; transition:max-height .3s ease; background:var(--offwhite); }
.m-acc-item.open .m-acc-panel{ max-height:400px; }
.m-acc-panel a{ display:block; padding:11px 32px; font-size:13px; color:var(--grey); }
.m-acc-panel a:hover{ color:var(--ink); }
.mobile-drawer-foot{ padding:18px 20px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:10px; }
.mobile-drawer-foot a{ font-size:12.5px; color:var(--grey); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase;
  font-weight:600; border:1px solid var(--gold); transition:all .2s ease;
}
.btn-gold{ background:var(--gold); color:var(--ink); border-color:var(--gold); }
.btn-gold:hover{ background:transparent; color:var(--gold); }
.btn-outline-light{ background:transparent; color:var(--white); border-color:var(--white); }
.btn-outline-light:hover{ background:var(--white); color:var(--ink); }
.btn-outline-dark{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline-dark:hover{ background:var(--ink); color:var(--white); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:11.5px; }
.btn:disabled{ opacity:.45; cursor:not-allowed; }

/* ============ PAGE HERO / BREADCRUMB ============ */
.page-hero{ background:var(--ink); color:var(--white); padding:52px 40px; text-align:center; }
.page-hero .eyebrow{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); }
.page-hero h1{ font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:600; margin-top:12px; }
.breadcrumb{ display:flex; justify-content:center; gap:8px; margin-top:12px; font-size:12px; color:#B9B9B9; }
.breadcrumb a:hover{ color:var(--gold); }
.breadcrumb-inline{ padding:16px 40px; font-size:12px; color:var(--grey); display:flex; gap:8px; max-width:1440px; margin:0 auto; }
.breadcrumb-inline a:hover{ color:var(--gold); }

/* ============ HERO CAROUSEL (home) ============ */
.hero{ position:relative; width:100%; aspect-ratio:1671 / 941; overflow:hidden; background:var(--offwhite); }
.hero-slide{ position:absolute; inset:0; opacity:0; transition:opacity .7s ease; pointer-events:none; }
.hero-slide.active{ opacity:1; pointer-events:auto; }
.hero-visual{ position:relative; width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--offwhite); overflow:hidden; }
.hero-visual svg{ width:52%; stroke:var(--ink); }
.hero-visual img{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.hero-dots{ position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:5; }
.hero-dot{ width:22px; height:3px; background:rgba(255,255,255,.55); cursor:pointer; }
.hero-dot.active{ background:var(--gold); }
.hero-arrows{ position:absolute; bottom:18px; right:24px; display:flex; gap:10px; z-index:5; }
.hero-arrows button{ width:34px; height:34px; border:1px solid rgba(255,255,255,.6); background:rgba(17,17,17,.25); display:flex; align-items:center; justify-content:center; }
.hero-arrows button svg{ width:14px; height:14px; stroke:var(--white); fill:none; stroke-width:1.6; }
.hero-arrows button:hover{ border-color:var(--gold); }
.hero-arrows button:hover svg{ stroke:var(--gold); }

/* ============ SECTION HEADINGS ============ */
.section-head{ text-align:center; padding:64px 40px 8px; }
.section-head .eyebrow{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:600; }
.section-head h2{ font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:600; margin-top:10px; }
.section-head p.sub{ margin-top:10px; color:var(--grey); font-size:13.5px; max-width:480px; margin-left:auto; margin-right:auto; }

/* ============ FILTER CHIPS / TOOLBAR ============ */
.filter-row{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; padding:26px 40px 8px; }
.chip{ padding:9px 20px; border:1px solid var(--ink); font-size:12px; letter-spacing:.04em; text-transform:uppercase; font-weight:500; background:transparent; }
.chip.active, .chip:hover{ background:var(--ink); color:var(--white); }
.toolbar{ display:flex; align-items:center; justify-content:space-between; padding:18px 40px 4px; max-width:1440px; margin:0 auto; flex-wrap:wrap; gap:12px; }
.result-count{ font-size:13px; color:var(--grey); }
.sort-select{ font-size:12px; border:1px solid var(--ink); padding:9px 12px; background:var(--white); }

/* ============ PRODUCT GRID ============ */
.grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; padding:30px 40px 20px; max-width:1440px; margin:0 auto; }
.grid.grid-3{ grid-template-columns:repeat(3,1fr); }
.card{ position:relative; }
.card-link{ display:block; }
.card-media{ position:relative; aspect-ratio:9/16; overflow:hidden; background:var(--offwhite); border:1px solid var(--line); }
.card-media .icon-primary, .card-media .icon-alt{ position:absolute; inset:0; transition:opacity .35s ease; }
.card-media .icon-alt{ opacity:0; }
.card-media .icon-primary img, .card-media .icon-alt img{ width:100%; height:100%; object-fit:cover; display:block; }
.card:hover .icon-primary{ opacity:0; }
.card:hover .icon-alt{ opacity:1; }
.badge{ position:absolute; top:10px; left:10px; z-index:2; background:var(--error); color:var(--white); font-size:10.5px; font-weight:600; letter-spacing:.04em; padding:5px 9px; text-transform:uppercase; }
.badge.new{ background:var(--ink); }
.wish-btn{ position:absolute; top:10px; right:10px; z-index:2; width:30px; height:30px; background:rgba(255,255,255,.9); display:flex; align-items:center; justify-content:center; }
.wish-btn svg{ width:15px; height:15px; stroke:var(--ink); fill:none; stroke-width:1.5; }
.wish-btn.active svg{ fill:var(--error); stroke:var(--error); }
.qa-btn{ position:absolute; left:10px; right:10px; bottom:10px; z-index:2; background:var(--ink); color:var(--white); padding:11px; text-align:center; font-size:11.5px; letter-spacing:.05em; text-transform:uppercase; font-weight:600; opacity:0; transform:translateY(8px); transition:all .25s ease; }
.card:hover .qa-btn{ opacity:1; transform:translateY(0); }
.qa-btn:hover{ background:var(--gold); color:var(--ink); }
.card-info{ padding:14px 2px; }
.card-cat{ font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--grey); }
.card-name{ font-size:13.5px; font-weight:500; margin-top:4px; line-height:1.3; }
.price-row{ display:flex; gap:9px; align-items:baseline; margin-top:8px; flex-wrap:wrap; }
.price{ font-size:14.5px; font-weight:600; }
.price-strike{ font-size:12.5px; color:var(--grey); text-decoration:line-through; }
.price-off{ font-size:11px; color:var(--error); font-weight:600; }
.empty-state{ text-align:center; padding:80px 20px; color:var(--grey); grid-column:1/-1; }
.empty-state h3{ font-family:'Cormorant Garamond',serif; font-size:26px; color:var(--ink); margin-bottom:10px; }

/* ============ LUXURY MASONRY ============ */
.masonry{ columns:3 260px; column-gap:22px; padding:20px 40px 10px; max-width:1440px; margin:0 auto; }
.m-card{ break-inside:avoid; margin-bottom:22px; position:relative; }
.m-media{ background:var(--ink); position:relative; overflow:hidden; }
.m-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.m-label{ position:absolute; top:14px; left:14px; color:var(--gold); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; border:1px solid var(--gold); padding:5px 10px; }
.m-info{ padding:14px 2px; }
.m-name{ font-family:'Cormorant Garamond',serif; font-size:19px; font-weight:600; }
.m-price{ margin-top:6px; font-size:13.5px; color:var(--gold); font-weight:600; }

/* ============ INSTAGRAM GRID ============ */
.insta-grid{ display:grid; grid-template-columns:repeat(6, 1fr); gap:3px; padding:26px 40px 60px; max-width:1440px; margin:0 auto; }
.insta-tile{ position:relative; aspect-ratio:1/1; background:var(--offwhite); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.insta-tile svg.deco{ width:38%; stroke:var(--ink); opacity:.5; }
.insta-overlay{ position:absolute; inset:0; background:rgba(17,17,17,.7); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .25s ease; }
.insta-tile:hover .insta-overlay{ opacity:1; }
.insta-overlay svg{ width:24px; height:24px; stroke:var(--gold); fill:none; stroke-width:1.5; }

/* ============ NEWSLETTER ============ */
.newsletter{ background:var(--ink); color:var(--white); text-align:center; padding:70px 40px; }
.newsletter h3{ font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:600; }
.newsletter p{ color:#C9C9C9; margin-top:10px; font-size:13.5px; }
.nl-form{ display:flex; justify-content:center; gap:0; margin:28px auto 0; max-width:420px; }
.nl-form input{ flex:1; padding:14px 16px; border:1px solid #444; border-right:none; background:transparent; color:var(--white); font-size:13.5px; }
.nl-form input::placeholder{ color:#8A8A8A; }
.nl-form input:focus{ outline:none; border-color:var(--gold); }
.nl-form button{ padding:14px 24px; background:var(--gold); color:var(--ink); font-size:12px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; white-space:nowrap; }
.nl-form button:hover{ background:var(--white); }
.nl-msg{ margin-top:14px; font-size:12.5px; min-height:16px; }
.nl-msg.error{ color:#FF6B60; }
.nl-msg.success{ color:var(--gold); }

/* ============ FOOTER ============ */
footer.site-footer{ background:var(--offwhite); padding:60px 40px 30px; border-top:1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:40px; max-width:1440px; margin:0 auto; }
.footer-logo{ font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:600; }
.footer-desc{ margin-top:14px; color:var(--grey); font-size:13px; max-width:260px; }
.footer-socials{ display:flex; gap:12px; margin-top:18px; }
.footer-socials a{ width:32px; height:32px; border:1px solid var(--ink); display:flex; align-items:center; justify-content:center; }
.footer-socials a:hover{ background:var(--ink); }
.footer-socials a:hover svg{ stroke:var(--gold); }
.footer-socials svg{ width:14px; height:14px; stroke:var(--ink); fill:none; stroke-width:1.5; }
.footer-col h4{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; color:var(--ink); font-weight:600; }
.footer-col li{ margin-bottom:10px; font-size:13px; color:var(--grey); }
.footer-col a:hover{ color:var(--gold); }
.footer-contact li{ display:flex; gap:8px; align-items:flex-start; }
.footer-contact svg{ width:14px; height:14px; stroke:var(--gold); fill:none; stroke-width:1.6; margin-top:2px; flex:0 0 auto; }
.secure-row{ display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.secure-row .pill{ border:1px solid var(--line); padding:6px 10px; font-size:10px; color:var(--grey); letter-spacing:.03em; }
.footer-bottom{ max-width:1440px; margin:40px auto 0; padding-top:20px; border-top:1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:11.5px; color:var(--grey); }
.footer-bottom a:hover{ color:var(--gold); }

/* ============ CART DRAWER ============ */
.overlay{ position:fixed; inset:0; background:rgba(17,17,17,.5); z-index:90; opacity:0; pointer-events:none; transition:opacity .3s ease; }
.overlay.show{ opacity:1; pointer-events:auto; }
.drawer{ position:fixed; top:0; right:0; height:100%; width:420px; max-width:92vw; background:var(--white); z-index:95; box-shadow:-10px 0 34px rgba(0,0,0,.18); transform:translateX(100%); transition:transform .35s cubic-bezier(.65,0,.35,1); display:flex; flex-direction:column; }
.drawer.show{ transform:translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line); }
.drawer-head h3{ font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:600; }
.close-btn svg{ width:20px; height:20px; stroke:var(--ink); stroke-width:1.5; }
.ship-progress{ padding:16px 24px; border-bottom:1px solid var(--line); font-size:12px; }
.ship-progress strong{ color:var(--gold); }
.ship-bar{ width:100%; height:5px; background:var(--line); margin-top:10px; }
.ship-fill{ height:100%; background:var(--gold); width:0%; transition:width .3s ease; }
.drawer-items{ flex:1; overflow-y:auto; padding:6px 24px; }
.drawer-empty{ text-align:center; padding:60px 10px; color:var(--grey); font-size:13.5px; }
.line-item{ display:flex; gap:14px; padding:18px 0; border-bottom:1px solid var(--line); }
.li-media{ width:70px; height:88px; flex:0 0 auto; background:var(--offwhite); overflow:hidden; }
.li-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.li-body{ flex:1; display:flex; flex-direction:column; gap:4px; }
.li-top{ display:flex; justify-content:space-between; gap:8px; }
.li-name{ font-size:13px; font-weight:500; }
.li-meta{ font-size:11px; color:var(--grey); }
.li-remove{ font-size:11px; text-transform:uppercase; letter-spacing:.04em; color:var(--error); text-decoration:underline; align-self:flex-start; margin-top:auto; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--ink); width:fit-content; margin-top:6px; }
.qty-stepper button{ width:24px; height:24px; font-size:14px; }
.qty-stepper span{ width:26px; text-align:center; font-size:12px; }
.li-price{ font-size:13px; font-weight:600; white-space:nowrap; }
.drawer-foot{ padding:20px 24px 26px; border-top:1px solid var(--line); }
.subtotal-row{ display:flex; justify-content:space-between; font-size:15px; margin-bottom:6px; }
.subtotal-row .val{ font-weight:700; }
.drawer-note{ font-size:11px; color:var(--grey); margin-bottom:16px; }

/* ============ QUICK VIEW MODAL ============ */
.qv-overlay{ position:fixed; inset:0; background:rgba(17,17,17,.6); z-index:98; opacity:0; pointer-events:none; transition:opacity .3s ease; display:flex; align-items:center; justify-content:center; padding:24px; }
.qv-overlay.show{ opacity:1; pointer-events:auto; }
.qv-modal{ background:var(--white); width:820px; max-width:100%; max-height:88vh; overflow-y:auto; display:grid; grid-template-columns:1fr 1fr; transform:scale(.96); transition:transform .3s ease; }
.qv-overlay.show .qv-modal{ transform:scale(1); }
.qv-media{ background:var(--offwhite); position:relative; aspect-ratio:9/16; overflow:hidden; }
.qv-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.qv-close{ position:absolute; top:16px; right:16px; z-index:2; width:30px; height:30px; background:var(--white); display:flex; align-items:center; justify-content:center; }
.qv-close svg{ width:16px; height:16px; stroke:var(--ink); stroke-width:1.6; }
.qv-body{ padding:34px; display:flex; flex-direction:column; }
.qv-cat{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--grey); }
.qv-name{ font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; margin-top:8px; }
.qv-price-row{ display:flex; gap:10px; align-items:baseline; margin-top:12px; }
.qv-price{ font-size:19px; font-weight:700; }
.qv-strike{ font-size:14px; color:var(--grey); text-decoration:line-through; }
.qv-desc{ margin-top:16px; font-size:13px; color:var(--grey); line-height:1.7; }
.qv-label{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; margin-top:22px; margin-bottom:10px; font-weight:600; }
.qv-sizes{ display:flex; gap:8px; flex-wrap:wrap; }
.qv-size-btn{ border:1px solid var(--ink); padding:9px 15px; font-size:12.5px; }
.qv-size-btn.selected, .qv-size-btn:hover{ background:var(--ink); color:var(--white); }
.qv-qty{ display:flex; align-items:center; border:1px solid var(--ink); width:fit-content; margin-top:4px; }
.qv-qty button{ width:34px; height:34px; font-size:16px; }
.qv-qty span{ width:36px; text-align:center; font-size:13px; }
.qv-add{ margin-top:26px; padding:16px; }
.field-error{ color:var(--error); font-size:11.5px; margin-top:8px; display:none; }
.field-error.show{ display:block; }

/* ============ TOAST ============ */
.toast{ position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(120%); background:var(--ink); color:var(--white); padding:14px 22px; font-size:13px; z-index:150; display:flex; align-items:center; gap:10px; transition:transform .35s cubic-bezier(.65,0,.35,1); }
.toast.show{ transform:translateX(-50%) translateY(0); }
.toast .dot-ok{ width:7px; height:7px; border-radius:50%; background:var(--gold); }

/* ============ GENERIC FORM STYLES ============ */
.field-group{ margin-bottom:18px; }
.field-group label{ display:block; font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; font-weight:600; margin-bottom:8px; color:var(--ink); }
.field-group input, .field-group textarea, .field-group select{
  width:100%; padding:13px 14px; border:1px solid var(--line); background:var(--white); font-size:13.5px;
}
.field-group input:focus, .field-group textarea:focus, .field-group select:focus{ outline:none; border-color:var(--gold); }
.field-group textarea{ resize:vertical; min-height:110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field-group.invalid input, .field-group.invalid textarea, .field-group.invalid select{ border-color:var(--error); }
.field-hint{ font-size:11px; color:var(--grey); margin-top:6px; }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:12.5px; color:var(--grey); }
.checkbox-row input{ width:auto; margin-top:2px; }
.form-success{ background:#EFF7F1; border:1px solid var(--success); color:var(--success); padding:14px 16px; font-size:13px; margin-bottom:18px; display:none; }
.form-success.show{ display:block; }

/* ============ CONTENT / POLICY PAGES ============ */
.content-page{ max-width:820px; margin:0 auto; padding:56px 40px 90px; }
.content-page h2{ font-family:'Cormorant Garamond',serif; font-size:26px; margin:34px 0 12px; }
.content-page h2:first-child{ margin-top:0; }
.content-page p{ color:var(--grey); font-size:14px; margin-bottom:14px; line-height:1.8; }
.content-page ul{ margin:0 0 14px 0; }
.content-page li{ color:var(--grey); font-size:14px; margin-bottom:8px; padding-left:18px; position:relative; line-height:1.7; }
.content-page li::before{ content:'—'; position:absolute; left:0; color:var(--gold); }
.content-page .updated{ font-size:12px; color:var(--grey-light); margin-bottom:30px; }

/* ============ SIZE GUIDE TABLE ============ */
.size-table{ width:100%; border-collapse:collapse; margin:20px 0 36px; font-size:13px; }
.size-table th, .size-table td{ border:1px solid var(--line); padding:11px 14px; text-align:center; }
.size-table th{ background:var(--ink); color:var(--white); font-weight:500; letter-spacing:.03em; text-transform:uppercase; font-size:11px; }
.size-table tr:nth-child(even) td{ background:var(--offwhite); }

/* ============ FAQ ACCORDION ============ */
.faq-wrap{ max-width:780px; margin:0 auto; padding:20px 40px 90px; }
.faq-cat{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); font-weight:600; margin:36px 0 14px; }
.faq-cat:first-child{ margin-top:0; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; padding:18px 4px; text-align:left; font-size:14.5px; font-weight:500; }
.faq-q svg{ width:14px; height:14px; stroke:var(--ink); fill:none; stroke-width:1.6; flex:0 0 auto; transition:transform .2s ease; }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.open .faq-a{ max-height:300px; }
.faq-a p{ padding:0 4px 18px; color:var(--grey); font-size:13.5px; line-height:1.75; }

/* ============ CONTACT PAGE ============ */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; max-width:1200px; margin:0 auto; padding:50px 40px 90px; }
.contact-info-card{ display:flex; gap:14px; padding:20px 0; border-bottom:1px solid var(--line); }
.contact-info-card svg{ width:20px; height:20px; stroke:var(--gold); fill:none; stroke-width:1.5; flex:0 0 auto; }
.contact-info-card h4{ font-size:13.5px; font-weight:600; margin-bottom:4px; }
.contact-info-card p{ font-size:13px; color:var(--grey); }
.map-block{ margin-top:26px; height:220px; background:var(--offwhite); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px; color:var(--grey-light); }
.map-block svg{ width:28px; height:28px; stroke:var(--grey-light); fill:none; stroke-width:1.3; }

/* ============ PDP ============ */
.pdp{ max-width:1280px; margin:0 auto; padding:40px 40px 90px; display:grid; grid-template-columns:1fr 1fr; gap:64px; }
.pdp-gallery-main{ aspect-ratio:9/16; background:var(--offwhite); border:1px solid var(--line); position:relative; overflow:hidden; }
.pdp-gallery-main img{ width:100%; height:100%; object-fit:cover; display:block; }
.pdp-gallery-main .badge{ top:16px; left:16px; }
.pdp-thumbs{ display:flex; gap:10px; margin-top:12px; }
.pdp-thumb{ width:76px; height:76px; background:var(--offwhite); border:1px solid var(--line); cursor:pointer; overflow:hidden; }
.pdp-thumb.active{ border-color:var(--gold); }
.pdp-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.pdp-cat{ font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--grey); }
.pdp-name{ font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:600; margin-top:10px; line-height:1.15; }
.pdp-price-row{ display:flex; gap:12px; align-items:baseline; margin-top:14px; }
.pdp-price{ font-size:22px; font-weight:700; }
.pdp-strike{ font-size:15px; color:var(--grey); text-decoration:line-through; }
.pdp-off{ font-size:12px; color:var(--error); font-weight:600; }
.pdp-rating{ display:flex; align-items:center; gap:6px; margin-top:10px; font-size:12.5px; color:var(--grey); }
.pdp-rating svg{ width:13px; height:13px; fill:var(--gold); stroke:var(--gold); }
.pdp-desc{ margin-top:18px; color:var(--grey); font-size:13.5px; line-height:1.8; }
.pdp-section{ margin-top:24px; }
.pdp-label{ font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; font-weight:600; margin-bottom:10px; }
.pdp-sizes{ display:flex; gap:8px; flex-wrap:wrap; }
.pdp-size-btn{ border:1px solid var(--ink); padding:11px 18px; font-size:13px; }
.pdp-size-btn.selected, .pdp-size-btn:hover{ background:var(--ink); color:var(--white); }
.pdp-qty{ display:flex; align-items:center; border:1px solid var(--ink); width:fit-content; }
.pdp-qty button{ width:38px; height:38px; font-size:17px; }
.pdp-qty span{ width:40px; text-align:center; font-size:13px; }
.pdp-actions{ display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.pdp-actions .btn{ flex:1; min-width:180px; }
.pdp-meta-list{ margin-top:30px; border-top:1px solid var(--line); padding-top:20px; }
.pdp-meta-list div{ display:flex; justify-content:space-between; font-size:12.5px; padding:8px 0; color:var(--grey); border-bottom:1px solid var(--line); }
.pdp-tabs{ display:flex; gap:0; margin-top:30px; border-bottom:1px solid var(--line); }
.pdp-tab-btn{ padding:12px 20px; font-size:12px; letter-spacing:.04em; text-transform:uppercase; font-weight:600; color:var(--grey); border-bottom:2px solid transparent; margin-bottom:-1px; }
.pdp-tab-btn.active{ color:var(--ink); border-color:var(--gold); }
.pdp-tab-panel{ display:none; padding:20px 4px; font-size:13.5px; color:var(--grey); line-height:1.8; }
.pdp-tab-panel.active{ display:block; }
.related-wrap{ max-width:1440px; margin:0 auto; }

/* ============ CART PAGE ============ */
.cart-page{ max-width:1280px; margin:0 auto; padding:40px 40px 90px; display:grid; grid-template-columns:2fr 1fr; gap:50px; align-items:start; }
.cart-table-head{ display:grid; grid-template-columns:3fr 1fr 1fr 1fr auto; gap:14px; padding-bottom:14px; border-bottom:1px solid var(--ink); font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:600; color:var(--grey); }
.cart-row{ display:grid; grid-template-columns:3fr 1fr 1fr 1fr auto; gap:14px; align-items:center; padding:20px 0; border-bottom:1px solid var(--line); }
.cart-row .prod{ display:flex; gap:14px; align-items:center; }
.cart-row .prod-media{ width:76px; height:92px; background:var(--offwhite); border:1px solid var(--line); flex:0 0 auto; overflow:hidden; }
.cart-row .prod-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.cart-row .prod-name{ font-size:13.5px; font-weight:500; }
.cart-row .prod-meta{ font-size:11.5px; color:var(--grey); margin-top:4px; }
.cart-row .remove-x{ font-size:11px; color:var(--error); text-decoration:underline; margin-top:6px; display:inline-block; }
.cart-summary{ border:1px solid var(--line); padding:26px; position:sticky; top:120px; }
.cart-summary h3{ font-family:'Cormorant Garamond',serif; font-size:22px; margin-bottom:18px; }
.summary-row{ display:flex; justify-content:space-between; font-size:13.5px; padding:9px 0; color:var(--grey); }
.summary-row.total{ color:var(--ink); font-weight:700; font-size:16px; border-top:1px solid var(--line); margin-top:8px; padding-top:16px; }
.promo-row{ display:flex; gap:0; margin:18px 0; }
.promo-row input{ flex:1; padding:12px 14px; border:1px solid var(--line); border-right:none; font-size:13px; }
.promo-row button{ padding:12px 16px; background:var(--ink); color:var(--white); font-size:11.5px; text-transform:uppercase; letter-spacing:.04em; }
.promo-row button:hover{ background:var(--gold); color:var(--ink); }
.promo-msg{ font-size:12px; margin-bottom:10px; min-height:14px; }
.promo-msg.success{ color:var(--success); }
.promo-msg.error{ color:var(--error); }
.cart-empty{ text-align:center; padding:100px 20px; grid-column:1/-1; }
.cart-empty h2{ font-family:'Cormorant Garamond',serif; font-size:28px; margin-bottom:12px; }
.cart-empty p{ color:var(--grey); margin-bottom:24px; }

/* ============ CHECKOUT ============ */
.checkout-page{ max-width:1280px; margin:0 auto; padding:40px 40px 90px; display:grid; grid-template-columns:1.4fr 1fr; gap:50px; align-items:start; }
.checkout-section{ border:1px solid var(--line); padding:26px; margin-bottom:22px; }
.checkout-section h3{ font-family:'Cormorant Garamond',serif; font-size:19px; margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.checkout-step-num{ width:22px; height:22px; border-radius:50%; background:var(--ink); color:var(--white); font-size:11px; display:flex; align-items:center; justify-content:center; font-family:'Poppins'; }
.payment-options{ display:flex; gap:12px; margin-bottom:18px; flex-wrap:wrap; }
.payment-opt{ flex:1; min-width:160px; border:1px solid var(--line); padding:14px; display:flex; align-items:center; gap:10px; font-size:12.5px; font-weight:500; }
.payment-opt input{ width:auto; }
.payment-opt.selected{ border-color:var(--gold); background:#FFFBEF; }
.card-fields{ display:none; margin-top:14px; }
.card-fields.show{ display:block; }
.order-summary-box{ border:1px solid var(--line); padding:26px; position:sticky; top:120px; }
.mini-line-item{ display:flex; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); align-items:center; }
.mini-line-item .mm{ width:52px; height:64px; background:var(--offwhite); flex:0 0 auto; overflow:hidden; }
.mini-line-item .mm img{ width:100%; height:100%; object-fit:cover; display:block; }
.mini-line-item .mn{ flex:1; font-size:12.5px; }
.mini-line-item .mp{ font-size:12.5px; font-weight:600; }

/* ============ ORDER CONFIRMATION ============ */
.confirm-wrap{ max-width:760px; margin:0 auto; padding:80px 40px 100px; text-align:center; }
.confirm-icon{ width:64px; height:64px; margin:0 auto 22px; border-radius:50%; background:var(--ink); display:flex; align-items:center; justify-content:center; }
.confirm-icon svg{ width:28px; height:28px; stroke:var(--gold); fill:none; stroke-width:2; }
.confirm-wrap h1{ font-family:'Cormorant Garamond',serif; font-size:32px; }
.confirm-wrap p.sub{ color:var(--grey); margin-top:10px; font-size:14px; }
.confirm-box{ border:1px solid var(--line); text-align:left; margin-top:36px; padding:26px; }
.confirm-box .row{ display:flex; justify-content:space-between; font-size:13px; padding:8px 0; border-bottom:1px solid var(--line); color:var(--grey); }
.confirm-box .row span:last-child{ color:var(--ink); font-weight:500; }

/* ============ ACCOUNT ============ */
.account-page{ max-width:1200px; margin:0 auto; padding:40px 40px 90px; display:grid; grid-template-columns:240px 1fr; gap:50px; }
.account-nav{ border-right:1px solid var(--line); padding-right:20px; }
.account-nav button{ display:block; width:100%; text-align:left; padding:13px 4px; font-size:12.5px; letter-spacing:.04em; text-transform:uppercase; font-weight:500; color:var(--grey); border-bottom:1px solid var(--line); }
.account-nav button.active{ color:var(--gold); font-weight:600; }
.account-panel{ display:none; }
.account-panel.active{ display:block; }
.account-panel h2{ font-family:'Cormorant Garamond',serif; font-size:26px; margin-bottom:22px; }
.orders-table{ width:100%; border-collapse:collapse; font-size:13px; }
.orders-table th{ text-align:left; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--grey); border-bottom:1px solid var(--ink); padding-bottom:12px; }
.orders-table td{ padding:14px 0; border-bottom:1px solid var(--line); color:var(--grey); }
.status-pill{ font-size:11px; padding:4px 10px; border:1px solid var(--gold); color:var(--gold); text-transform:uppercase; letter-spacing:.03em; }
.address-card{ border:1px solid var(--line); padding:20px; margin-bottom:16px; }
.address-card h4{ font-size:13.5px; margin-bottom:6px; }
.address-card p{ font-size:12.5px; color:var(--grey); line-height:1.7; }

/* ============ AUTH PAGES ============ */
.auth-wrap{ max-width:440px; margin:0 auto; padding:70px 40px 100px; }
.auth-wrap h1{ font-family:'Cormorant Garamond',serif; font-size:30px; text-align:center; }
.auth-wrap p.sub{ text-align:center; color:var(--grey); font-size:13px; margin-top:8px; margin-bottom:30px; }
.auth-switch{ text-align:center; margin-top:20px; font-size:13px; color:var(--grey); }
.auth-switch a{ color:var(--gold); text-decoration:underline; }
.auth-divider{ display:flex; align-items:center; gap:12px; margin:22px 0; color:var(--grey-light); font-size:11px; text-transform:uppercase; letter-spacing:.06em; }
.auth-divider::before, .auth-divider::after{ content:''; flex:1; height:1px; background:var(--line); }

/* ============ TRACK ORDER ============ */
.track-wrap{ max-width:760px; margin:0 auto; padding:50px 40px 100px; }
.track-form{ display:flex; gap:14px; flex-wrap:wrap; align-items:flex-end; border:1px solid var(--line); padding:26px; }
.track-form .field-group{ flex:1; min-width:180px; margin-bottom:0; }
.timeline{ margin-top:50px; display:none; }
.timeline.show{ display:block; }
.timeline-steps{ display:flex; justify-content:space-between; position:relative; margin-bottom:10px; }
.timeline-steps::before{ content:''; position:absolute; top:14px; left:14px; right:14px; height:2px; background:var(--line); z-index:0; }
.timeline-progress{ position:absolute; top:14px; left:14px; height:2px; background:var(--gold); z-index:1; transition:width .5s ease; }
.t-step{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; gap:10px; flex:1; }
.t-dot{ width:28px; height:28px; border-radius:50%; background:var(--white); border:2px solid var(--line); display:flex; align-items:center; justify-content:center; }
.t-step.done .t-dot{ background:var(--gold); border-color:var(--gold); }
.t-dot svg{ width:13px; height:13px; stroke:var(--white); fill:none; stroke-width:2; opacity:0; }
.t-step.done .t-dot svg{ opacity:1; }
.t-label{ font-size:11.5px; text-align:center; color:var(--grey); max-width:90px; }
.t-step.done .t-label{ color:var(--ink); font-weight:600; }
.track-order-info{ margin-top:40px; border:1px solid var(--line); padding:22px; }

/* ============ 404 ============ */
.notfound-wrap{ max-width:560px; margin:0 auto; padding:100px 40px; text-align:center; }
.notfound-wrap .big{ font-family:'Cormorant Garamond',serif; font-size:96px; color:var(--gold); line-height:1; }
.notfound-wrap h2{ font-family:'Cormorant Garamond',serif; font-size:26px; margin-top:10px; }
.notfound-wrap p{ color:var(--grey); margin:14px 0 26px; font-size:13.5px; }

/* ============ RESPONSIVE ============ */
@media (max-width:1080px){
  .grid{ grid-template-columns:repeat(3,1fr); }
  .masonry{ columns:2 260px; }
  .insta-grid{ grid-template-columns:repeat(4,1fr); }
  .pdp{ grid-template-columns:1fr; gap:36px; }
  .cart-page, .checkout-page{ grid-template-columns:1fr; }
  .cart-summary, .order-summary-box{ position:static; }
  .account-page{ grid-template-columns:1fr; }
  .account-nav{ border-right:none; border-bottom:1px solid var(--line); padding-right:0; padding-bottom:10px; display:flex; overflow-x:auto; gap:4px; }
  .account-nav button{ border-bottom:none; white-space:nowrap; }
  .contact-grid{ grid-template-columns:1fr; gap:40px; }
}
@media (max-width:900px){
  .nav-center{ display:none; }
  .mobile-nav-toggle{ display:block; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .qv-modal{ grid-template-columns:1fr; }
  .utility-strip .left span:not(:first-child){ display:none; }
  .cart-table-head{ display:none; }
  .cart-row{ grid-template-columns:1fr; gap:10px; }
}
@media (max-width:640px){
  .wrap, .nav-row, .utility-strip, .grid, .masonry, .insta-grid, .footer-grid, .filter-row, .section-head, .toolbar,
  .content-page, .faq-wrap, .contact-grid, .pdp, .cart-page, .checkout-page, .account-page, .auth-wrap, .track-wrap, .page-hero, .breadcrumb-inline{
    padding-left:18px; padding-right:18px;
  }
  .grid{ grid-template-columns:repeat(2,1fr); gap:14px; }
  .insta-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:1fr; }
  .field-row{ grid-template-columns:1fr; }
  .timeline-steps{ flex-wrap:wrap; gap:20px 0; }
  .timeline-steps::before, .timeline-progress{ display:none; }
}
/* ================= SEARCH MODAL ================= */

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

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

  padding-top: 110px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .25s ease, visibility .25s ease;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.68);
  backdrop-filter: blur(6px);
}

.search-box {
  position: relative;
  z-index: 2;

  width: 650px;
  max-width: calc(100% - 30px);

  background: #f8f6ef;

  padding: 40px;

  box-shadow: 0 25px 70px rgba(0,0,0,.35);

  transform: translateY(-20px);
  transition: transform .3s ease;
}

.search-modal.active .search-box {
  transform: translateY(0);
}

.search-label {
  color: #a27d22;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: .2em;

  margin-bottom: 10px;
}

.search-box h2 {
  margin: 0 0 25px;

  font-family: Georgia, serif;

  font-size: 32px;
  font-weight: 400;

  color: #111;
}

.search-close {
  position: absolute;

  top: 15px;
  right: 18px;

  border: 0;
  background: none;

  font-size: 32px;
  font-weight: 300;

  cursor: pointer;

  color: #222;
}

.search-close:hover {
  color: #a27d22;
}

.search-form {
  display: flex;
  align-items: center;

  height: 60px;

  background: white;

  border: 1px solid #ccc;

  transition: border .2s ease, box-shadow .2s ease;
}

.search-form:focus-within {
  border-color: #a27d22;

  box-shadow: 0 0 0 3px rgba(162,125,34,.1);
}

.search-form svg {
  width: 20px;
  height: 20px;

  margin-left: 18px;
  margin-right: 12px;

  fill: none;
  stroke: #777;
  stroke-width: 1.5;

  flex-shrink: 0;
}

.search-form input {
  flex: 1;

  min-width: 0;
  height: 100%;

  border: 0;
  outline: 0;

  background: transparent;

  font-size: 14px;

  color: #111;
}

.search-form input::placeholder {
  color: #999;
}

.search-form button {
  height: 100%;

  padding: 0 25px;

  border: 0;

  background: #151515;
  color: white;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: .12em;

  cursor: pointer;

  transition: background .2s ease;
}

.search-form button:hover {
  background: #a27d22;
}

.search-hint {
  margin: 13px 0 0;

  font-size: 11px;

  color: #888;
}


/* MOBILE */

@media(max-width:600px) {

  .search-modal {
    padding-top: 70px;
  }

  .search-box {
    padding: 30px 20px;
  }

  .search-box h2 {
    font-size: 26px;
  }

  .search-form {
    height: 55px;
  }

  .search-form button {
    padding: 0 14px;
  }

}
.logo img {
  display: block;
  width: clamp(40px, 5vw, 60px);
  height: auto;
  max-height: 55px;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .logo img {
    width: 42px;
    max-height: 42px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo img {
    width: 38px;
    max-height: 38px;
  }
}


/* ============================================================
   FINAL RESPONSIVE COMPATIBILITY LAYER
   Desktop • Laptop • Tablet • Mobile • Small Android • TV/LCD/LED
   This layer only improves sizing/overflow/responsiveness.
   ============================================================ */

/* ---------- GLOBAL RESPONSIVE SAFETY ---------- */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 0;
}

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

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
}

button,
input,
textarea,
select {
  max-width: 100%;
}

input,
textarea,
select,
button {
  font-size: max(16px, 1em);
}

.wrap,
.nav-row,
.grid,
.masonry,
.insta-grid,
.footer-grid,
.filter-row,
.section-head,
.toolbar,
.content-page,
.faq-wrap,
.contact-grid,
.pdp,
.cart-page,
.checkout-page,
.account-page,
.auth-wrap,
.track-wrap,
.page-hero,
.breadcrumb-inline {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.card,
.card-link,
.card-info,
.pdp,
.cart-page,
.checkout-page,
.account-page,
.checkout-section,
.qv-body,
.qv-media,
.drawer,
.mobile-drawer {
  min-width: 0;
}

/* ---------- LARGE DESKTOP / LCD / LED ---------- */
@media (min-width: 1441px) {
  .wrap,
  .grid,
  .masonry,
  .insta-grid,
  .footer-grid,
  .toolbar,
  .breadcrumb-inline {
    max-width: 1600px;
  }

  .nav-row {
    padding-left: clamp(40px, 4vw, 80px);
    padding-right: clamp(40px, 4vw, 80px);
  }

  .grid {
    gap: clamp(24px, 1.7vw, 34px);
  }

  .section-head h2 {
    font-size: clamp(36px, 2.3vw, 48px);
  }

  .page-hero h1 {
    font-size: clamp(40px, 3vw, 56px);
  }
}

/* ---------- LAPTOP / TABLET ---------- */
@media (max-width: 1200px) {
  .nav-center {
    gap: clamp(18px, 2.5vw, 34px);
  }

  .nav-row {
    padding-left: 28px;
    padding-right: 28px;
  }

  .utility-strip {
    padding-left: 28px;
    padding-right: 28px;
  }

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

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

  .mega-menu {
    max-width: calc(100vw - 30px);
  }
}

/* ---------- TABLET ---------- */
@media (max-width: 900px) {
  .nav-row {
    min-height: 68px;
    padding: 14px 22px;
  }

  .nav-center {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    flex: 0 0 24px;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo img {
    width: clamp(40px, 6vw, 52px);
    max-height: 52px;
  }

  .nav-icons {
    flex: 0 0 auto;
    gap: 15px;
  }

  .utility-strip {
    padding: 7px 22px;
    gap: 10px;
  }

  .utility-strip .left,
  .utility-strip .right {
    gap: 12px;
  }

  .utility-strip .left span:not(:first-child) {
    display: none;
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-left: 24px;
    padding-right: 24px;
  }

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

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

  .pdp,
  .cart-page,
  .checkout-page,
  .account-page,
  .contact-grid {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .pdp {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-page,
  .checkout-page {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .order-summary-box {
    position: static;
  }

  .account-page {
    grid-template-columns: 1fr;
  }

  .account-nav {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .qv-modal {
    width: min(820px, calc(100vw - 32px));
  }

  .search-box {
    width: min(650px, calc(100vw - 32px));
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {
  .announce-bar {
    height: 34px;
  }

  .announce-item {
    font-size: 10px;
    padding: 0 12px;
    text-align: center;
    white-space: nowrap;
  }

  .utility-strip {
    padding: 6px 14px;
    font-size: 10px;
    min-height: 30px;
  }

  .utility-strip .left,
  .utility-strip .right {
    gap: 8px;
  }

  .utility-strip .right {
    margin-left: auto;
  }

  .utility-strip .right a:nth-of-type(2) {
    display: none;
  }

  .nav-row {
    min-height: 62px;
    padding: 11px 14px;
    gap: 10px;
  }

  .mobile-nav-toggle {
    width: 23px;
    height: 19px;
    flex: 0 0 23px;
  }

  .mobile-nav-toggle span:nth-child(1) {
    top: 0;
  }

  .mobile-nav-toggle span:nth-child(2) {
    top: 8px;
  }

  .mobile-nav-toggle span:nth-child(3) {
    top: 17px;
  }

  .logo {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .logo img {
    width: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .nav-icons {
    gap: 11px;
  }

  .icon-btn {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .count-badge {
    width: 14px;
    height: 14px;
    font-size: 8px;
    top: -6px;
    right: -7px;
  }

  .mobile-drawer {
    width: min(320px, 88vw);
    max-width: 88vw;
  }

  .mobile-drawer-head {
    padding: 16px;
  }

  .mobile-drawer-body {
    -webkit-overflow-scrolling: touch;
  }

  .m-acc-head {
    min-height: 50px;
    padding: 14px 18px;
  }

  .m-acc-panel a {
    padding: 11px 28px;
  }

  .page-hero {
    padding: 38px 18px;
  }

  .page-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 4px;
    padding: 0 10px;
  }

  .breadcrumb-inline {
    padding: 13px 18px;
    flex-wrap: wrap;
  }

  .hero {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-arrows {
    right: 12px;
    bottom: 12px;
  }

  .hero-dots {
    bottom: 14px;
  }

  .hero-dot {
    width: 18px;
  }

  .section-head {
    padding: 44px 18px 8px;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
  }

  .section-head p.sub {
    font-size: 12.5px;
  }

  .filter-row {
    padding: 20px 14px 8px;
    gap: 8px;
  }

  .chip {
    padding: 8px 13px;
    font-size: 10.5px;
  }

  .toolbar {
    padding: 14px 14px 4px;
  }

  .grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 14px 18px;
  }

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

  .card-media {
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .badge {
    top: 7px;
    left: 7px;
    font-size: 8.5px;
    padding: 4px 6px;
  }

  .wish-btn {
    top: 7px;
    right: 7px;
    width: 27px;
    height: 27px;
  }

  .wish-btn svg {
    width: 14px;
    height: 14px;
  }

  .qa-btn {
    left: 7px;
    right: 7px;
    bottom: 7px;
    padding: 9px 5px;
    font-size: 9px;
  }

  .card-info {
    padding: 10px 1px;
  }

  .card-cat {
    font-size: 9px;
  }

  .card-name {
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .price-row {
    gap: 6px;
  }

  .price {
    font-size: 13px;
  }

  .price-strike {
    font-size: 11px;
  }

  .price-off {
    font-size: 10px;
  }

  .masonry {
    columns: 2 150px;
    column-gap: 12px;
    padding: 16px 14px 10px;
  }

  .m-card {
    margin-bottom: 12px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 14px 45px;
  }

  .newsletter {
    padding: 50px 18px;
  }

  .newsletter h3 {
    font-size: 28px;
  }

  .nl-form {
    width: 100%;
    max-width: 100%;
  }

  .nl-form input {
    min-width: 0;
  }

  .nl-form button {
    padding: 14px 15px;
  }

  footer.site-footer {
    padding: 45px 18px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    margin-top: 30px;
    flex-direction: column;
  }

  .drawer {
    width: min(420px, 94vw);
    max-width: 94vw;
  }

  .drawer-head,
  .ship-progress,
  .drawer-items,
  .drawer-foot {
    padding-left: 18px;
    padding-right: 18px;
  }

  .line-item {
    gap: 10px;
  }

  .li-media {
    width: 62px;
    height: 78px;
  }

  .qv-overlay {
    padding: 12px;
  }

  .qv-modal {
    width: 100%;
    max-height: 92vh;
  }

  .qv-media {
    aspect-ratio: 9 / 16;
  }

  .qv-body {
    padding: 22px 18px;
  }

  .qv-name {
    font-size: 24px;
  }

  .qv-add {
    width: 100%;
  }

  .toast {
    width: calc(100% - 28px);
    max-width: 420px;
    bottom: 18px;
    padding: 12px 15px;
    font-size: 12px;
  }

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

  .content-page,
  .faq-wrap,
  .contact-grid,
  .pdp,
  .cart-page,
  .checkout-page,
  .account-page,
  .auth-wrap,
  .track-wrap,
  .confirm-wrap,
  .notfound-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .content-page {
    padding-top: 42px;
    padding-bottom: 65px;
  }

  .content-page h2 {
    font-size: 24px;
  }

  .content-page p,
  .content-page li {
    font-size: 13px;
  }

  .faq-wrap {
    padding-top: 14px;
    padding-bottom: 65px;
  }

  .faq-q {
    font-size: 13.5px;
    gap: 12px;
  }

  .contact-grid {
    padding-top: 35px;
    padding-bottom: 65px;
  }

  .pdp {
    padding-top: 24px;
    padding-bottom: 65px;
    gap: 26px;
  }

  .pdp-name {
    font-size: clamp(27px, 8vw, 32px);
  }

  .pdp-price {
    font-size: 20px;
  }

  .pdp-thumbs {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pdp-actions {
    flex-direction: column;
  }

  .pdp-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .pdp-meta-list div {
    gap: 14px;
    flex-wrap: wrap;
  }

  .pdp-tabs {
    overflow-x: auto;
  }

  .pdp-tab-btn {
    white-space: nowrap;
    padding-left: 14px;
    padding-right: 14px;
  }

  .cart-page,
  .checkout-page {
    padding-top: 25px;
    padding-bottom: 65px;
    gap: 24px;
  }

  .cart-summary,
  .order-summary-box,
  .checkout-section {
    padding: 20px 18px;
  }

  .cart-row .prod {
    align-items: flex-start;
  }

  .cart-row .prod-media {
    width: 64px;
    height: 78px;
  }

  .promo-row {
    width: 100%;
  }

  .promo-row input {
    min-width: 0;
  }

  .payment-options {
    flex-direction: column;
  }

  .payment-opt {
    min-width: 0;
    width: 100%;
  }

  .confirm-wrap {
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .confirm-box {
    padding: 18px;
  }

  .confirm-box .row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .account-nav {
    padding-bottom: 8px;
  }

  .orders-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .track-wrap {
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .track-form {
    padding: 18px;
  }

  .track-form .field-group {
    min-width: 0;
    width: 100%;
  }

  .timeline-steps {
    flex-wrap: wrap;
    gap: 18px 0;
  }

  .timeline-steps::before,
  .timeline-progress {
    display: none;
  }

  .notfound-wrap {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .notfound-wrap .big {
    font-size: clamp(70px, 22vw, 96px);
  }

  .search-modal {
    padding: 62px 12px 20px;
    align-items: flex-start;
  }

  .search-box {
    width: 100%;
    max-width: 100%;
    padding: 28px 18px;
  }

  .search-box h2 {
    font-size: 25px;
    padding-right: 25px;
  }

  .search-form {
    width: 100%;
    height: 54px;
  }

  .search-form button {
    padding: 0 13px;
  }
}

/* ---------- SMALL PHONES: 360px AND BELOW ---------- */
@media (max-width: 360px) {
  .utility-strip {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 9px;
  }

  .nav-row {
    padding-left: 10px;
    padding-right: 10px;
    gap: 7px;
  }

  .logo img {
    width: 34px;
    max-width: 34px;
    max-height: 34px;
  }

  .nav-icons {
    gap: 8px;
  }

  .icon-btn {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .grid {
    gap: 9px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card-name {
    font-size: 11.5px;
  }

  .price {
    font-size: 12px;
  }

  .price-strike {
    font-size: 10px;
  }

  .price-off {
    font-size: 9px;
  }

  .section-head {
    padding-left: 12px;
    padding-right: 12px;
  }

  .newsletter {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .nl-form input,
  .nl-form button {
    width: 100%;
    border: 1px solid #444;
  }

  .drawer {
    width: 96vw;
    max-width: 96vw;
  }
}

/* ---------- VERY SMALL PHONES ---------- */
@media (max-width: 320px) {
  .nav-row {
    min-height: 58px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .mobile-nav-toggle {
    flex-basis: 21px;
    width: 21px;
  }

  .logo img {
    width: 31px;
    max-width: 31px;
    max-height: 31px;
  }

  .nav-icons {
    gap: 6px;
  }

  .icon-btn {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .card-info {
    padding-top: 8px;
  }

  .card-name {
    font-size: 11px;
  }

  .badge {
    font-size: 7.5px;
    padding: 3px 5px;
  }

  .wish-btn {
    width: 24px;
    height: 24px;
  }

  .qa-btn {
    font-size: 8px;
    padding: 8px 3px;
  }

  .mobile-drawer {
    width: 97vw;
    max-width: 97vw;
  }
}

/* ---------- TOUCH DEVICES ---------- */
@media (hover: none), (pointer: coarse) {
  .card:hover .icon-primary {
    opacity: 1;
  }

  .card:hover .icon-alt {
    opacity: 0;
  }

  .card:hover .qa-btn {
    opacity: 0;
    transform: translateY(8px);
  }

  .nav-item:hover .mega-menu {
    display: none;
  }

  .nav-item:hover::after {
    width: 0;
  }

  .qa-btn,
  .wish-btn,
  .chip,
  .btn,
  .pdp-size-btn,
  .pdp-tab-btn {
    -webkit-tap-highlight-color: transparent;
  }

  .m-acc-head,
  .m-acc-panel a,
  .icon-btn,
  .mobile-nav-toggle,
  button {
    touch-action: manipulation;
  }
}

/* ---------- LANDSCAPE PHONES ---------- */
@media (max-width: 900px) and (orientation: landscape) {
  .nav-row {
    min-height: 58px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .hero {
    aspect-ratio: 16 / 8;
  }

  .mobile-drawer {
    overflow-y: auto;
  }

  .mobile-drawer-head {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mobile-drawer-foot {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* ---------- ACCESSIBILITY / REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- SAFE AREA FOR MODERN PHONES ---------- */
@supports (padding: max(0px)) {
  .nav-row {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .mobile-drawer {
    padding-left: env(safe-area-inset-left);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .drawer {
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
  }
}


/* ============================================================
   REMOVE TOP BLACK ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  display: none !important;
}
/* =====================================================
   TOP ANNOUNCEMENT MARQUEE
   ===================================================== */

.announce-bar {
  width: 100%;
  height: 38px;
  background: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.announce-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.announce-content {
  display: inline-flex;
  align-items: center;
  gap: 70px;
  width: max-content;

  animation: brandStopMarquee 25s linear infinite;
}

.announce-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes brandStopMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause when mouse is over it */
.announce-bar:hover .announce-content {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 600px) {
  .announce-bar {
    height: 34px;
  }

  .announce-content {
    gap: 45px;
    animation-duration: 20s;
  }

  .announce-content span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }
}
/* =========================================
   BRAND STOP — TOP BLACK MOVING BAR
   ========================================= */

.top-marquee {
  width: 100%;
  height: 38px;
  background: #050505;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-marquee-track {
  display: flex;
  width: max-content;
  animation: brandStopMarquee 24s linear infinite;
  will-change: transform;
}

.top-marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-marquee-content span {
  display: inline-flex;
  align-items: center;
  margin: 0 24px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
}

.top-marquee-content span:nth-child(odd) {
  color: #d4af37;
  font-size: 12px;
}

/* Continuous left movement */
@keyframes brandStopMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause when mouse is over it */
.top-marquee:hover .top-marquee-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 600px) {
  .top-marquee {
    height: 34px;
  }

  .top-marquee-content span {
    margin: 0 15px;
    font-size: 8px;
    letter-spacing: 1.4px;
  }

  .top-marquee-content span:nth-child(odd) {
    font-size: 10px;
  }

  .top-marquee-track {
    animation-duration: 18s;
  }
}
.map-block {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #eee;
}

.map-block iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map-block {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.map-block iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* ================= WHATSAPP FLOATING BUTTON ================= */
.wa-float-btn{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float-btn:hover{
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.32);
}
.wa-float-btn svg{
  width: 30px;
  height: 30px;
  stroke: none;
}
@media (max-width: 600px){
  .wa-float-btn{ right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .wa-float-btn svg{ width: 26px; height: 26px; }
}

/* ================= EASYPAISA PAYMENT OPTION ================= */
.easypaisa-note{
  display:none;
  align-items:flex-start;
  gap:10px;
  margin-top:14px;
  padding:12px 14px;
  background:#FFFBEF;
  border:1px solid var(--gold);
  border-radius:6px;
  font-size:12.5px;
  color:var(--grey);
  line-height:1.5;
}
.easypaisa-note.show{ display:flex; }
.easypaisa-note svg{ width:18px; height:18px; flex-shrink:0; stroke:var(--gold); fill:none; stroke-width:1.6; margin-top:1px; }
