/* ==========================================================================
   JAVELL LIVING GLOBAL — design tokens
   Dubai-luxury minimal: warm stone background, bold condensed sans, red sale accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --stone:        #F3EFE6;
  --stone-deep:   #EAE3D4;
  --paper:        #FFFFFF;
  --ink:          #18160F;
  --ink-soft:     #5A5648;
  --taupe:        #948C79;
  --line:         #E3DCC9;
  --red:          #B23A34;
  --near-black:   #14120D;
  --footer-text:  #C9C3B2;
  --footer-text-dim: #837C6B;

  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1320px;

  /* ---- liquid glass system ---- */
  --glass-light-bg:     rgba(255,255,255,.55);
  --glass-light-bg-solid: rgba(255,255,255,.94); /* border/scroll state, no blur support */
  --glass-light-border: rgba(255,255,255,.6);
  --glass-dark-bg:      rgba(20,18,13,.42);
  --glass-dark-bg-solid: rgba(20,18,13,.86);
  --glass-dark-border:  rgba(255,255,255,.14);
  --glass-shadow:       0 10px 40px rgba(20,18,13,.14), 0 2px 8px rgba(20,18,13,.06);
  --glass-blur:         blur(20px) saturate(180%);
  --radius-glass:       18px;
  --radius-glass-sm:    12px;
  --radius-pill:        999px;
}

/* Frosted glass surface. Falls back to a near-opaque solid when the browser
   can't do backdrop-filter, so nothing ever looks broken or see-through-wrong. */
.glass{
  background: var(--glass-light-bg-solid);
  border: 1px solid var(--glass-light-border);
  box-shadow: var(--glass-shadow);
}
.glass-dark{
  background: var(--glass-dark-bg-solid);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--glass-shadow);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .glass{
    background: var(--glass-light-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
  }
  .glass-dark{
    background: var(--glass-dark-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
  }
}
/* the soft specular highlight along the top edge that sells the "glass" read */
.glass, .glass-dark{ position:relative; isolation:isolate; }
.glass::before, .glass-dark::before{
  content:''; position:absolute; inset:0 0 auto 0; height:1px; z-index:1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  opacity:.5;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--display); font-weight:700; margin:0; color: var(--ink); letter-spacing:.01em; }
p{ margin:0; }
.wrap{ max-width: var(--container); margin:0 auto; padding: 0 40px; }

.eyebrow{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor:pointer;
  transition: all .25s ease;
}
.btn:hover{ background: var(--ink); color: #fff; }
.btn.solid{ background: var(--ink); color: #fff; }
.btn.solid:hover{ background: var(--red); border-color: var(--red); }
.btn.white{ border-color:#fff; color:#fff; background: rgba(255,255,255,.06); }
.btn.white:hover{ background:#fff; color: var(--ink); }
.btn.small{ padding: 11px 22px; }

/* frosted-glass button variant, used for secondary actions like "View All" */
.glass-btn{
  border-radius: var(--radius-pill);
  border-color: var(--glass-light-border);
  color: var(--ink);
  background: var(--glass-light-bg-solid);
  box-shadow: var(--glass-shadow);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .glass-btn{ background: var(--glass-light-bg); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); }
}
.glass-btn:hover{ background: var(--ink); border-color: var(--ink); color:#fff; }

:focus-visible{ outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------------------------------- announcement bar --------------------------------- */
.announce{
  background: var(--near-black); color:#EDE8DB; text-align:center;
  font-size: 11.5px; letter-spacing:.06em; padding: 10px 20px;
}
.announce b{ color:#fff; }

/* ---------------------------------- header --------------------------------- */

.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--glass-light-bg-solid);
  border-bottom: 1px solid var(--glass-light-border);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 8px 24px rgba(20,18,13,.05);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .site-header{
    background: var(--glass-light-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
  }
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
}
.logo{ display:flex; flex-direction:column; line-height:1; }
.logo .word{
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing:.02em;
  text-transform: uppercase;
}
.logo .sub{
  margin-top:3px;
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing:.34em;
  color: var(--taupe);
}

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size: 11.5px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  display:flex; align-items:center; gap:6px;
}
.main-nav a:hover, .main-nav a.active{ color: var(--ink); border-bottom-color: var(--red); }
.main-nav .caret{ font-size:9px; opacity:.6; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.icon-btn{
  width:22px; height:22px; display:flex; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer; color: var(--ink); padding:0;
  position: relative; text-decoration:none;
}
.icon-btn svg{ width:100%; height:100%; }
.icon-btn:hover{ color: var(--red); }
.icon-btn{ border-radius: var(--radius-pill); transition: background .2s ease, color .2s ease; }
.icon-btn:hover{ background: rgba(178,58,52,.08); }

/* ---- search ----
   Hidden state is driven primarily by `display:none` (guarded by JS toggling
   the `open` class), not just opacity/transform — so it degrades safely even
   if the entrance-animation rules above it fail to apply for any reason. */
.search-wrap{ position:relative; display:flex; align-items:center; }
.search-form{
  display:none;
  position:absolute; right:0; top:50%; transform: translateY(-50%);
  align-items:center; overflow:hidden;
  border-radius: var(--radius-pill);
}
.search-wrap.open .search-form{ display:flex; }
.search-wrap.open .icon-btn#searchToggle{ visibility:hidden; }
.search-form input{
  width:230px; border:none; padding:12px 6px 12px 18px; font-family:var(--sans); font-size:13px;
  background:transparent; color:var(--ink); outline:none; position:relative; z-index:1;
}
.search-form input::placeholder{ color: var(--ink-soft); }
.search-form button{ border:none; background:none; width:18px; height:18px; margin-right:14px; padding:0; cursor:pointer; color:var(--ink-soft); position:relative; z-index:1; }
.search-form button svg{ width:100%; height:100%; }

/* ---- cart badge ---- */
.cart-btn .cart-count{
  position:absolute; top:-7px; right:-8px; min-width:16px; height:16px; padding:0 3px;
  border-radius:50%; background:var(--red); color:#fff; font-size:10px; font-weight:700;
  display:flex; align-items:center; justify-content:center; font-family:var(--sans);
}

/* ---- cart drawer ----
   `display:none` is the primary hidden state (not just opacity), so the
   panel physically cannot occupy page layout space unless JS explicitly
   opens it — this can't collapse into an inline block again. */
.cart-overlay{
  display:none; position:fixed; inset:0; z-index:198;
  background:rgba(20,18,13,.4); opacity:0; transition:opacity .25s ease;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .cart-overlay{ -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
}
.cart-overlay.open{ display:block; }
.cart-overlay.show{ opacity:1; }

.cart-drawer{
  display:none; position:fixed; top:0; right:0; height:100%; width:min(400px,92vw);
  z-index:199; flex-direction:column; opacity:0; transition:opacity .2s ease;
  border-radius: var(--radius-glass) 0 0 var(--radius-glass); overflow:hidden;
}
.cart-drawer.open{ display:flex; }
.cart-drawer.show{ opacity:1; }
.cart-drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--line); }
.cart-drawer-head h3{ font-size:15px; text-transform:uppercase; letter-spacing:.08em; }
.cart-drawer-head button{ background:none; border:none; cursor:pointer; font-size:15px; color:var(--ink-soft); width:30px; height:30px; border-radius:50%; transition:background .2s ease; }
.cart-drawer-head button:hover{ background: rgba(178,58,52,.08); }
.cart-drawer-items{ flex:1; overflow-y:auto; padding:16px 24px; }
.cart-empty{ color:var(--ink-soft); font-size:13px; padding:20px 0; }
.cart-line{ display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--line); }
.cart-line img{ width:64px; height:64px; object-fit:contain; padding:6px; box-sizing:border-box; background:var(--stone-deep); flex-shrink:0; border-radius: var(--radius-glass-sm); }
.cart-line .cl-info{ flex:1; min-width:0; }
.cart-line h5{ font-size:12.5px; font-weight:600; text-transform:uppercase; margin:0 0 4px; }
.cart-line .cl-price{ font-size:12px; color:var(--ink-soft); }
.cart-line .cl-qty{ display:flex; align-items:center; gap:8px; margin-top:8px; font-size:12px; }
.cart-line .cl-qty button{ width:20px; height:20px; border:1px solid var(--line); background:none; cursor:pointer; border-radius:50%; }
.cart-line .cl-remove{ background:none; border:none; color:var(--red); font-size:11px; text-decoration:underline; cursor:pointer; margin-top:6px; padding:0; }
.cart-drawer-foot{ padding:20px 24px 26px; border-top:1px solid var(--line); }
.cart-total-row{ display:flex; justify-content:space-between; font-size:14px; margin-bottom:16px; }
.cart-drawer-foot .btn{ width:100%; border-radius: var(--radius-pill); }

/* ---- whatsapp ---- */
.whatsapp-btn{ background:#25D366 !important; border-color:#25D366 !important; color:#fff !important; display:inline-flex; align-items:center; gap:8px; }
.whatsapp-btn:hover{ background:#1DA851 !important; border-color:#1DA851 !important; }
.wa-hint{ font-size:11.5px; color:var(--ink-soft); margin-top:10px; line-height:1.5; }

.api-fallback-note{ color:var(--ink-soft); font-size:13.5px; padding:30px 0; }

.burger{
  display:flex; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:6px;
}
.burger span{ width:22px; height:1px; background: var(--ink); display:block; }

.mobile-nav{
  display:none;
  flex-direction:column;
  background: var(--glass-light-bg-solid);
  border-bottom: 1px solid var(--glass-light-border);
  padding: 10px 40px 24px;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .mobile-nav{ background: var(--glass-light-bg); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); }
}
.mobile-nav a{
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--ink-soft);
}
.mobile-nav.open{ display:flex; }

@media (max-width: 980px){
  .main-nav{ display:none; }
  .burger{ display:flex; }
}

/* ---------------------------------- hero / sliders --------------------------------- */

.hero{ position:relative; height: 86vh; min-height:540px; overflow:hidden; }
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* ---------------------------------- intro --------------------------------- */

.intro{ padding: 88px 0 64px; text-align:center; }
.intro h2{ font-size: clamp(22px,2.6vw,30px); letter-spacing:.02em; max-width:780px; margin:0 auto; }
.intro .eyebrow{ display:block; margin-bottom:16px; }
.intro p.body{
  margin: 22px auto 0; max-width:640px; font-size:14px; line-height:1.8; color: var(--ink-soft);
}

/* ---------------------------------- section shell --------------------------------- */

.section{ padding: 64px 0 96px; }
.section-head{ text-align:center; max-width:680px; margin: 0 auto 48px; }
.section-head h2{ font-size: clamp(24px,3vw,34px); margin-top:12px; letter-spacing:.01em; }
.section-head p{ margin-top:14px; color: var(--ink-soft); font-size:13.5px; line-height:1.75; }

/* ---------------------------------- category grid (tiles) --------------------------------- */

#collections .wrap{ max-width: 1560px; }
.category-slider{ position:relative; display:flex; align-items:center; gap:16px; }
.category-slider.no-overflow{ justify-content:center; }
.tile-grid{
  display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch; padding:4px 2px 10px; flex:1 1 auto; min-width:0;
}
.tile-grid::-webkit-scrollbar{ display:none; }
.tile-grid{ scrollbar-width:none; -ms-overflow-style:none; }
.slider-arrow{
  position:static; flex:0 0 auto; z-index:3;
  width:50px; height:50px; border-radius:50%; border:1px solid var(--glass-light-border);
  background: #fff; color: var(--ink); font-size:23px; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  box-shadow: 0 6px 18px rgba(10,9,6,.14); transition: background .2s ease, opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.slider-arrow:hover{ background: var(--near-black); color:#fff; transform: scale(1.06); box-shadow: 0 8px 22px rgba(10,9,6,.22); }
.slider-arrow[disabled]{ opacity:0; pointer-events:none; }
.tile-grid .tile{ scroll-snap-align:start; }
.tile{
  position:relative; aspect-ratio: 3/4; overflow:hidden; display:flex; align-items:flex-end; justify-content:center;
  background: var(--stone-deep); border-radius: var(--radius-glass);
  box-shadow: 0 10px 26px rgba(10,9,6,.14); transition: box-shadow .3s ease, transform .3s ease;
}
.tile:hover{ box-shadow: 0 16px 36px rgba(10,9,6,.22); transform: translateY(-3px); }
.tile img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.tile:hover img{ transform: scale(1.06); }
.tile::after{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,9,6,0) 28%, rgba(10,9,6,.5) 68%, rgba(10,9,6,.82) 100%); }
.tile-body{ position:relative; z-index:2; padding: 30px 22px; text-align:center; width:100%; }
.tile-eyebrow{ color: rgba(255,255,255,.8); font-size:11px; letter-spacing:.18em; text-transform:uppercase; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.tile-title{ color:#fff; font-family: var(--display); font-size:23px; letter-spacing:.04em; text-transform:uppercase; margin-top:10px; line-height:1.25; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.tile-btn{
  margin-top:20px; display:inline-block; background: var(--glass-light-bg-solid); color: var(--ink);
  font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  padding: 13px 24px; border-radius: var(--radius-pill); border:1px solid var(--glass-light-border);
  transition: background .2s ease, color .2s ease;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .tile-btn{ background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(14px) saturate(180%); backdrop-filter: blur(14px) saturate(180%); }
}
.tile-btn:hover{ background: var(--red); color:#fff; border-color: var(--red); }

.tile-grid .tile{ flex: 0 0 calc((100% - 4*24px)/5); }
@media (max-width: 1200px){ .tile-grid .tile{ flex-basis: calc((100% - 2*24px)/3); } }
@media (max-width: 900px){ .tile-grid .tile{ flex-basis: calc((100% - 24px)/2); } .tile-title{ font-size:19px; } .slider-arrow{ width:42px; height:42px; font-size:19px; } }
@media (max-width: 560px){ .category-slider{ gap:8px; } .tile-grid{ gap:16px; } .tile-grid .tile{ flex-basis: calc(85% - 8px); } .tile-title{ font-size:18px; } .slider-arrow{ width:36px; height:36px; font-size:17px; } }

/* CTA tile (join trade programme) */
.tile.cta-tile{ background: var(--near-black); align-items:center; }
.tile.cta-tile img{ opacity:.28; }
.tile.cta-tile .tile-body{ padding: 30px; }
.tile.cta-tile p.desc{ color: var(--footer-text-dim); font-size:11.5px; line-height:1.6; margin: 10px auto 18px; max-width:220px; }

/* ---------------------------------- product carousel --------------------------------- */

.product-row{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card{ display:block; }
.product-card .thumb{ position:relative; aspect-ratio: 1/1; background: var(--stone-deep); overflow:hidden; }
.product-card .thumb img{ width:100%; height:100%; object-fit:contain; padding:16px; box-sizing:border-box; transition: transform .5s ease; }
.product-card:hover .thumb img{ transform: scale(1.05); }
.badge{
  position:absolute; top:12px; left:12px; color:#fff;
  font-size:9.5px; font-weight:700; letter-spacing:.06em; padding:6px 11px;
  border-radius: var(--radius-pill); z-index:2;
}
.badge.glass-dark{ color:#FFD9D5; }
.product-card .thumb{ border-radius: var(--radius-glass-sm); }
.product-card .info{ padding-top:16px; }
.shelf-section + .shelf-section{ border-top:1px solid var(--line); }
.shelf-head{ text-align:left; margin-bottom:36px; max-width:none; }
.product-card .cat{ font-size:10px; letter-spacing:.1em; text-transform:uppercase; color: var(--taupe); }
.product-card h3{ font-size:14.5px; font-weight:600; margin-top:6px; text-transform:uppercase; letter-spacing:.02em; }
.product-card .price{ margin-top:8px; font-size:13px; }
.product-card .price .now{ color: var(--red); font-weight:600; }
.product-card .price .was{ color: var(--taupe); text-decoration: line-through; margin-left:8px; font-size:12px; }
.swatches{ display:flex; gap:6px; margin-top:10px; }
.swatches span{ width:14px; height:14px; border-radius:50%; border:1px solid var(--line); display:inline-block; }

.grid-footer{ text-align:center; margin-top:44px; }

@media (max-width: 980px){ .product-row{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .product-row{ grid-template-columns: 1fr; } }

/* ---------------------------------- lifestyle banner --------------------------------- */

.lifestyle{ position:relative; height:70vh; min-height:460px; overflow:hidden; }
.lifestyle img{ width:100%; height:100%; object-fit:cover; }
.lifestyle-copy{ position:absolute; left:50%; top:50%; transform: translate(-50%,-50%); text-align:center; z-index:2; }
.lifestyle-copy .eyebrow{ color: rgba(255,255,255,.75); }
.lifestyle-copy h2{ color:#fff; font-size: clamp(24px,3vw,32px); letter-spacing:.14em; text-transform:uppercase; margin-top:10px; }
.lifestyle-copy .btn{ margin-top:22px; background:#fff; color:var(--ink); border-color:#fff; }
.lifestyle-copy .btn:hover{ background: var(--red); border-color: var(--red); color:#fff; }

/* ---------------------------------- about split --------------------------------- */

.about-split{ display:grid; grid-template-columns: 1fr 1fr; gap:0; align-items:center; background: var(--stone-deep); }
.about-split img{ width:100%; height:520px; object-fit:cover; }
.about-copy{ padding: 60px 70px; }
.about-copy h2{ font-size: clamp(24px,2.8vw,32px); }
.about-copy p{ margin-top:18px; font-size:14px; line-height:1.85; color: var(--ink-soft); }
@media (max-width: 900px){ .about-split{ grid-template-columns:1fr; } .about-split img{ height:320px; } .about-copy{ padding:40px 28px; } }

/* ---------------------------------- footer --------------------------------- */

.site-footer{ background: #0b0a08; color: var(--footer-text); padding-top: 64px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.55fr .85fr .85fr .95fr .95fr 1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* brand column */
.footer-brand .logo{ display:flex; flex-direction:column; gap:6px; }
.footer-brand .logo .word{ color:#fff; font-family: var(--display); font-size:26px; letter-spacing:.14em; font-weight:400; line-height:1; }
.footer-brand .logo .sub{ color: var(--footer-text-dim); font-size:10.5px; letter-spacing:.32em; font-weight:500; }
.footer-brand p{
  margin-top: 18px; font-size: 12.5px; line-height:1.75; color: var(--footer-text-dim);
  max-width: 300px;
}
.footer-divider{ width:36px; height:1px; background:rgba(255,255,255,.22); margin:26px 0 20px; }

.newsletter-heading{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:#fff; font-weight:600; margin-bottom:8px; }
.newsletter-copy{ font-size:12.5px; line-height:1.65; color: var(--footer-text-dim); max-width:260px; margin-bottom:14px; }
.newsletter{ margin-top:0; }
.newsletter form{ display:flex; border:1px solid rgba(255,255,255,.16); border-radius:3px; overflow:hidden; max-width:340px; }
.newsletter input{ flex:1; background:none; border:none; color:#fff; padding:12px 14px; font-family: var(--sans); font-size:12.5px; }
.newsletter input::placeholder{ color: var(--footer-text-dim); }
.newsletter button{ background:#4a4330; border:none; color:#fff; cursor:pointer; font-size:15px; width:46px; flex-shrink:0; transition: background .2s ease; }
.newsletter button:hover{ background: var(--red); }

.social-icons{ display:flex; gap:10px; margin-top:24px; }
.social-btn{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(219,204,172,.35);
  display:flex; align-items:center; justify-content:center; color: var(--footer-text-dim);
  transition: border-color .2s ease, color .2s ease;
}
.social-btn svg{ width:15px; height:15px; display:block; }
.social-btn:hover{ border-color:#fff; color:#fff; }

/* link columns */
.footer-sub-heading{
  font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color:#fff; margin-bottom:18px; font-weight:600;
}
.footer-col ul{ margin-top:0; display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:13px; color: var(--footer-text); transition: color .2s ease; }
.footer-col a:hover{ color: var(--red); }

/* contact column */
.footer-contact .contact-item{ display:flex; align-items:flex-start; gap:12px; margin-bottom:18px; }
.ic-round{
  flex-shrink:0; width:34px; height:34px; border-radius:50%; border:1px solid rgba(219,204,172,.35);
  display:flex; align-items:center; justify-content:center; color: var(--footer-text-dim);
}
.ic-round svg{ width:15px; height:15px; display:block; }
.footer-contact .contact-item strong{ display:block; font-size:12.5px; color:#fff; font-weight:500; margin-bottom:3px; }
.footer-contact .contact-item span, .footer-contact .contact-item a{ font-size:12px; color: var(--footer-text-dim); line-height:1.5; }
.footer-contact .contact-item a:hover{ color:#fff; }
.map-link{ display:inline-flex; align-items:center; gap:6px; }
.map-link .arrow{ display:inline-block; transition: transform .2s ease; }
.map-link:hover .arrow{ transform: translateX(3px); }

.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 0; font-size: 11.5px; color: var(--footer-text-dim);
}
.footer-bottom .legal{ display:flex; gap:20px; }
.footer-bottom a:hover{ color:#fff; }

@media (max-width: 1180px){
  .footer-grid{ grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 700px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-bottom{ flex-direction:column; gap:12px; text-align:center; }
}
@media (max-width: 460px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ---------------------------------- product detail page (kept from prior build) --------------------------------- */

.breadcrumb{ padding: 24px 0; font-size:12px; color: var(--taupe); letter-spacing:.02em; }
.breadcrumb a:hover{ color: var(--red); }

.product-detail{ display:grid; grid-template-columns: 1.1fr 1fr; gap: 64px; padding-bottom: 90px; }
.gallery-main{ aspect-ratio: 1/1; background: var(--stone-deep); overflow:hidden; border:1px solid var(--line); border-radius: var(--radius-glass); }
.gallery-main img{ width:100%; height:100%; object-fit:contain; padding:28px; box-sizing:border-box; }
.gallery-thumbs{ display:flex; gap:12px; margin-top:14px; }
.gallery-thumbs button{ width:84px; height:84px; padding:0; border:1px solid var(--line); background: var(--stone-deep); cursor:pointer; overflow:hidden; border-radius: var(--radius-glass-sm); }
.gallery-thumbs button.active{ border-color: var(--red); }
.gallery-thumbs img{ width:100%; height:100%; object-fit:contain; padding:6px; box-sizing:border-box; }

.pd-cat{ font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color: var(--taupe); }
.pd-title{ font-size: clamp(26px,3.2vw,36px); margin-top:12px; text-transform:uppercase; letter-spacing:.02em; }
.pd-price{ margin-top:12px; font-size:18px; color: var(--ink-soft); }
.pd-desc{ margin-top:20px; font-size:14px; color: var(--ink-soft); line-height:1.8; max-width:460px; }

.pd-qty{ display:flex; align-items:center; margin-top:28px; border:1px solid var(--line); width:fit-content; border-radius: var(--radius-pill); overflow:hidden; }
.pd-qty button{ width:40px; height:44px; border:none; background:none; cursor:pointer; font-size:16px; }
.pd-qty input{ width:48px; height:44px; text-align:center; border:none; border-left:1px solid var(--line); border-right:1px solid var(--line); font-family: var(--sans); font-size:14px; }
.pd-actions{ display:flex; gap:14px; margin-top:18px; }
.pd-actions .btn{ border-radius: var(--radius-pill); }

.pd-meta{ margin-top:26px; padding-top:22px; border-top:1px solid var(--line); font-size:12.5px; color: var(--taupe); display:flex; flex-direction:column; gap:8px; }
.pd-meta a{ color: var(--red); }

.pd-details{ margin-top:36px; padding-top:28px; border-top:1px solid var(--line); }
.pd-details h4{ font-family: var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--ink); margin-bottom:16px; font-weight:600; }
.pd-details dl{ display:grid; grid-template-columns: 140px 1fr; row-gap:12px; font-size:13.5px; }
.pd-details dt{ color: var(--taupe); }
.pd-details dd{ margin:0; color: var(--ink-soft); }
.pd-details .care-list{ margin:0; padding-left:18px; color: var(--ink-soft); }
.pd-details .care-list li{ margin-bottom:6px; }

@media (max-width: 900px){ .product-detail{ grid-template-columns:1fr; gap:36px; } }

.related{ padding: 72px 0 90px; border-top:1px solid var(--line); }
.related .section-head{ text-align:left; margin: 0 0 36px; max-width:none; }
.related .product-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 980px){ .related .product-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .related .product-grid{ grid-template-columns: 1fr; } }


/* ============================= CONTENT PAGES (about, resources, legal) ============================= */

/* -- Hero: full-bleed photo band -- */
.page-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 150px 0 110px;
  display: flex;
  align-items: flex-end;
}
.eyebrow-pill{
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.page-hero h1{
  font-family: var(--display);
  color: #fff;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.page-hero .page-lede{
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 600px;
  border-left: 2px solid var(--red);
  padding-left: 20px;
}

/* -- Body: editorial numbered sections -- */
.simple-page{ padding: 90px 0 40px; background: var(--paper); }
.simple-page .wrap{ max-width: 860px; }

.page-body{ counter-reset: section; }

.page-body h2{
  counter-increment: section;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: .01em;
  color: var(--ink);
  margin-top: 68px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.page-body h2::before{
  content: counter(section, decimal-leading-zero);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
}
.page-body h2:first-child{ margin-top: 0; padding-top: 0; border-top: none; }

.page-body p{
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 700px;
}

.page-body strong{ color: var(--ink); font-weight: 600; }

/* First paragraph on the page reads as an editorial pull-in line */
.page-body > p:first-child{
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  max-width: 720px;
}

/* -- Feature/spec lists as bordered chip cards -- */
.page-body ul, .page-body ol{
  margin-top: 22px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-body li{
  position: relative;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--stone);
  border: 1px solid var(--line);
  padding: 14px 16px 14px 34px;
  transition: border-color .15s ease, transform .15s ease;
}
.page-body li::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--red);
}
.page-body li:hover{ border-color: var(--ink); transform: translateY(-1px); }

.page-body a{
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

/* -- Closing CTA band: full-bleed dark -- */
.page-cta-band{
  background: var(--near-black);
  color: #EDE8DB;
  text-align: center;
  padding: 76px 0;
  margin-top: 60px;
}
.page-cta-band h3{
  font-family: var(--display);
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}
.page-cta-band p{
  font-family: var(--sans);
  color: var(--footer-text);
  margin-top: 14px;
  font-size: 15px;
}
.page-cta-band .page-cta{
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn.solid-red{ background: var(--red); border-color: var(--red); color:#fff; }
.btn.solid-red:hover{ background:#fff; color: var(--red); border-color:#fff; }

@media (max-width: 900px){
  .page-hero{ padding: 110px 0 64px; }
  .page-body ul, .page-body ol{ grid-template-columns: 1fr; }
  .page-body h2{ margin-top: 48px; padding-top: 24px; font-size: 20px; }
  .page-cta-band{ padding: 56px 0; }
}
