/* =================================================================
   JAWAAR THEME — main.css
   All custom styles. Mirrors the single-file HTML design exactly,
   adapted for WordPress multi-page architecture.
   ================================================================= */

/* =================================================================
   1. CUSTOM PROPERTIES
   ================================================================= */
:root {
  --black:   #0A0A0A;
  --cream:   #F8F4ED;
  --gold:    #D4AF37;
  --amber:   #8B6914;
  --on-dark: #F0EBE0;
  --on-light:#1A1A1A;
  --muted:   #666666;

  --serif:  'Sorts Mill Goudy', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --arabic: 'Mirza', serif;

  --nav-h: 72px;
  --maxw:  1280px;
  --ease:  cubic-bezier(.22,.61,.36,1);
}

/* =================================================================
   2. RESET
   ================================================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--on-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input  { font-family: inherit; }
ul     { list-style: none; }

/* screen-reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* =================================================================
   3. TYPOGRAPHY & UTILITIES
   ================================================================= */
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
}
.label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
}
.rule {
  width: 60px; height: 1px; border: none;
  background: var(--gold);
  margin: 24px auto;
}
.rule.left { margin-left: 0; margin-right: auto; }
.section { padding: 96px 24px; }
.wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.center { text-align: center; }
.divider {
  height: 1px; width: 40%; max-width: 480px; margin: 0 auto;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity: .6;
}
.divider-pattern {
  height: 60px; width: 100%;
  background: url('../images/pattern-lattice.png') repeat;
  background-size: 240px;
  opacity: .12;
}
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 24px; }
.mt-l { margin-top: 36px; }
.mb-s { margin-bottom: 14px; }
.stack-gap { display: flex; flex-direction: column; gap: 18px; }

/* =================================================================
   4. BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .12em; font-size: 13px; font-weight: 500;
  padding: 16px 40px; border-radius: 0; border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  min-height: 48px;
  cursor: pointer;
}
.btn-primary  { background: var(--gold);  color: var(--black);  border-color: var(--gold);  }
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--amber); border-color: var(--amber); color: var(--cream); }
.btn-secondary { background: transparent; border-color: var(--gold); color: var(--cream); }
.btn-secondary:hover,
.btn-secondary:focus-visible { background: var(--gold); color: var(--black); }
.btn-full { width: 100%; }

/* note tiles */
.note-tiles { display: flex; gap: 10px; flex-wrap: wrap; }
.note-tile {
  flex: 1 1 0; min-width: 72px; text-align: center;
  border: 1px solid rgba(212,175,55,.5);
  background: rgba(212,175,55,.05);
  padding: 14px 8px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}

/* pill / badge */
.pill {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 16px;
}

/* form field */
.field {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--gold);
  color: var(--cream); font-size: 15px; padding: 14px 2px;
  letter-spacing: .02em;
}
.field::placeholder { color: rgba(248,244,237,.4); }
.field:focus        { outline: none; border-bottom-color: var(--amber); }
.field.dark         { color: var(--on-light); }
.field.dark::placeholder { color: rgba(26,26,26,.4); }

/* =================================================================
   5. SCROLL REVEAL
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =================================================================
   6. NAVIGATION
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,.14);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links  { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em;
  font-size: 12px; color: var(--cream); position: relative; padding: 6px 0;
  white-space: nowrap; transition: color .2s var(--ease);
}
.nav-link:hover,
.nav-link:focus-visible { color: var(--gold); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav-burger {
  display: none; width: 48px; height: 48px;
  align-items: center; justify-content: center; flex-direction: column;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); margin: 3px 0; transition: .3s var(--ease);
}

/* hamburger → X */
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile overlay */
.mmenu {
  position: fixed; inset: 0; z-index: 200; background: var(--black);
  transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column; align-items: center;
  padding: 48px 24px;
  visibility: hidden;
}
.mmenu.open   { transform: translateX(0); visibility: visible; }
.mmenu-close  {
  position: absolute; top: 18px; right: 22px;
  font-size: 30px; color: var(--gold); line-height: 1;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.mmenu-logo   { height: 84px; margin: 8px 0 56px; }
.mmenu-links  { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.mmenu-link   { font-family: var(--serif); font-size: 32px; color: var(--cream); transition: color .2s var(--ease); }
.mmenu-link:hover,
.mmenu-link.active { color: var(--gold); }

@media (max-width: 860px) {
  :root { --nav-h: 60px; }
  .nav  { padding: 0 20px; }
  .nav-logo img { height: 34px; }
  .nav-links    { display: none; }
  .nav-burger   { display: flex; }
}

/* =================================================================
   7. HERO
   ================================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-inner   { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
  font-family: var(--serif); color: var(--cream); line-height: 1.08;
  font-size: clamp(36px,8vw,80px); font-weight: 400;
}
.hero .subline {
  color: rgba(248,244,237,.82); font-weight: 300;
  font-size: clamp(15px,2.4vw,17px); margin-top: 6px;
}

/* gold particles */
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle  {
  position: absolute; bottom: -10px; width: 3px; height: 3px;
  border-radius: 50%; background: var(--gold); opacity: .5;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .55; }
  90%  { opacity: .4; }
  100% { transform: translateY(-105vh) translateX(20px); opacity: 0; }
}

/* scroll chevron */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
}
.scroll-cue svg { width: 22px; height: 22px; stroke: var(--gold); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue {
  0%,100% { transform: translateY(0); opacity: .5; }
  50%     { transform: translateY(8px); opacity: 1; }
}

/* =================================================================
   8. SPLIT LAYOUTS
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.split.s55-45 { grid-template-columns: 55% 45%; }
.split-img { position: relative; overflow: hidden; }
.split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-content { display: flex; flex-direction: column; justify-content: center; padding: 64px 60px; }
.split-content.pad-lg { padding: 80px 60px; }

@media (max-width: 860px) {
  .split,
  .split.s55-45 { grid-template-columns: 1fr; min-height: 0; }
  .split-img    { min-height: 62vh; order: -1; }
  .split-img img { position: absolute; }
  .split-content { padding: 48px 28px; }
  .split.rev .split-img { order: -1; }
}

/* section headings */
.s-title { font-family: var(--serif); font-weight: 400; color: var(--cream); line-height: 1.12; }
.s-title.dark { color: var(--on-light); }
.detail-line { font-size: 13px; letter-spacing: .04em; color: rgba(240,235,224,.7); }

/* =================================================================
   9. HOME — PHILOSOPHY
   ================================================================= */
.philosophy {
  position: relative; background: var(--cream); color: var(--on-light);
  padding: 120px 24px; overflow: hidden;
}
.philosophy::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/pattern-lattice.png'); background-size: 300px; opacity: .06;
}
.philosophy-inner { position: relative; max-width: 700px; margin: 0 auto; text-align: center; }
.philosophy h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px,5vw,56px); line-height: 1.1; color: var(--on-light);
}
.philosophy h2.gold { color: var(--gold); }
.philosophy p { max-width: 520px; margin: 0 auto; font-size: 16px; line-height: 1.9; color: var(--on-light); }

/* =================================================================
   10. SCENT JOURNEY
   ================================================================= */
.journey { position: relative; padding: 120px 24px; overflow: hidden; }
.journey-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.journey-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.78); z-index: 1; }
.journey-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.stages {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  margin-top: 56px; position: relative;
}
.stages::before {
  content: ""; position: absolute; top: 6px; left: 16%; right: 16%;
  height: 1px; background: rgba(212,175,55,.5); z-index: 0;
}
.stage { position: relative; z-index: 1; }
.stage-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 1px solid var(--gold);
  margin: 0 auto 22px; box-shadow: 0 0 0 5px rgba(10,10,10,.9);
}
.stage-desc { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--cream); margin-top: 10px; line-height: 1.5; }

@media (max-width: 860px) {
  .stages { grid-template-columns: 1fr; gap: 38px; text-align: left; padding-left: 8px; }
  .stages::before { top: 6px; bottom: 6px; left: 5px; right: auto; width: 1px; height: auto; }
  .stage  { padding-left: 28px; }
  .stage-dot { margin: 0 0 12px; }
}

/* =================================================================
   11. CARDS
   ================================================================= */
.cards { display: grid; gap: 20px; }
.cards.c3   { grid-template-columns: repeat(3,1fr); }
.cards.c3-2 { grid-template-columns: repeat(3,1fr); }
.card {
  border: 1px solid rgba(212,175,55,.3);
  background: rgba(212,175,55,.04);
  padding: 40px 32px;
}
.card-icon { width: 34px; height: 34px; stroke: var(--gold); fill: none; margin-bottom: 22px; }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; color: var(--gold); margin-bottom: 14px; }
.card p  { font-size: 14px; line-height: 1.7; color: rgba(240,235,224,.75); }

@media (max-width: 860px) {
  .cards.c3   { grid-template-columns: 1fr; }
  .cards.c3-2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) { .cards.c3-2 { grid-template-columns: 1fr; } }

/* =================================================================
   12. EDITORIAL (cream long copy)
   ================================================================= */
.editorial {
  position: relative; background: var(--cream); color: var(--on-light);
  padding: 104px 24px; overflow: hidden;
}
.editorial::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/pattern-lattice.png'); background-size: 300px; opacity: .07;
}
.editorial-inner { position: relative; max-width: 680px; margin: 0 auto; text-align: center; }
.pullquote {
  font-family: var(--serif); font-style: italic; color: var(--on-light);
  line-height: 1.35; font-size: clamp(22px,3vw,32px);
}
.body-copy { font-size: 16px; line-height: 1.9; color: var(--on-light); text-align: left; text-wrap: pretty; }

/* =================================================================
   13. PRODUCT DETAIL (cream section)
   ================================================================= */
.pdetail {
  position: relative; background: var(--cream); color: var(--on-light); overflow: hidden;
}
.pdetail::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/pattern-lattice.png'); background-size: 300px; opacity: .08; z-index: 0;
}
.pdetail .split { position: relative; z-index: 1; }
.details-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  font-size: 13px; color: var(--on-light);
}
.details-grid span { border-bottom: 1px solid rgba(212,175,55,.3); padding: 8px 0; letter-spacing: .04em; }

/* =================================================================
   14. 360° VIEWER
   ================================================================= */
.viewer-wrap { padding: 88px 24px; text-align: center; }
.viewer-stage {
  position: relative; max-width: 520px; margin: 0 auto;
  height: min(60vh,520px); display: flex; align-items: center; justify-content: center;
  user-select: none; touch-action: pan-y;
}
.viewer-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle,rgba(212,175,55,.16),transparent 65%); z-index: 0;
}
.viewer-stage img {
  position: relative; z-index: 1; max-height: 100%; width: auto;
  cursor: grab; filter: drop-shadow(0 0 8px rgba(212,175,55,.3));
  transition: transform .12s linear;
}
.viewer-stage img:active { cursor: grabbing; }
.viewer-hint {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(212,175,55,.6); margin-top: 30px; transition: opacity .4s;
}
.viewer-hint.gone { opacity: 0; pointer-events: none; }

/* =================================================================
   15. TIMELINE (collection roadmap)
   ================================================================= */
.timeline { max-width: 560px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 8px; bottom: 30px;
  width: 1px; background: rgba(212,175,55,.55);
}
.tl-item { position: relative; padding-bottom: 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: -34px; top: 4px;
  width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--gold);
}
.tl-node.fill   { background: var(--gold); }
.tl-node.hollow { background: var(--black); opacity: .6; }
.tl-title { font-family: var(--serif); font-size: 20px; color: var(--gold); }
.tl-title.dim { color: rgba(240,235,224,.4); }
.tl-sub   { font-size: 13px; color: var(--gold); opacity: .85; margin-top: 4px; letter-spacing: .02em; }
.tl-sub.dim { color: rgba(240,235,224,.4); }

/* =================================================================
   16. OUR STORY — chapter overlay
   ================================================================= */
.chapter-overlay {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 80px 24px; overflow: hidden;
}
.chapter-overlay img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top; z-index: 0;
}
.chapter-overlay .ov  { position: absolute; inset: 0; background: rgba(0,0,0,.5); z-index: 1; }
.chapter-overlay .inner { position: relative; z-index: 2; max-width: 760px; }

/* =================================================================
   17. THE EDIT — gallery
   ================================================================= */
.edit-hero {
  height: 48vh; min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: var(--nav-h) 24px 0;
}
.gallery {
  columns: 3; column-gap: 16px;
  max-width: 1180px; margin: 0 auto; padding: 0 24px 110px;
}
.gfig { break-inside: avoid; margin: 0 0 16px; }
.gfig .frame {
  overflow: hidden; border: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.gfig img { width: 100%; transition: transform .4s var(--ease); }
.gfig:hover .frame { border-color: var(--gold); }
.gfig:hover img   { transform: scale(1.03); }
.gcap { font-family: var(--serif); font-style: italic; font-size: 12px; color: rgba(212,175,55,.6); padding: 10px 2px 0; }

@media (max-width: 860px) {
  .gallery { columns: 2; column-gap: 8px; }
  .gfig   { margin-bottom: 8px; }
}

/* =================================================================
   18. HELP — FAQ
   ================================================================= */
.lightpage {
  position: relative; background: var(--cream); color: var(--on-light);
  min-height: 100vh; overflow: hidden;
}
.lightpage::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/pattern-lattice.png'); background-size: 300px; opacity: .08; z-index: 0;
}
.lightpage .lp-inner { position: relative; z-index: 1; }
.page-head {
  text-align: center;
  padding: calc(var(--nav-h) + 96px) 24px 56px;
}
.page-head h1 {
  font-family: var(--serif); font-weight: 400; color: var(--on-light);
  font-size: clamp(28px,4vw,48px); margin-top: 14px;
}
.faq { max-width: 700px; margin: 0 auto; padding: 0 24px 120px; }
.faq-cat { font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; color: var(--gold); margin: 38px 0 6px; }
.faq-item { border-bottom: 1px solid rgba(212,175,55,.3); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; text-align: left; padding: 20px 0;
  font-size: 15px; font-weight: 500; color: var(--on-light);
  transition: color .2s var(--ease);
}
.faq-q:hover,
.faq-q:focus-visible { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-toggle { font-family: var(--serif); font-size: 22px; color: var(--gold); flex: none; line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { font-size: 14px; line-height: 1.8; color: rgba(26,26,26,.75); padding: 0 0 22px; }

/* =================================================================
   19. LEGAL — tabs
   ================================================================= */
.tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 36px; border-bottom: 1px solid rgba(212,175,55,.25);
  max-width: 760px; margin: 0 auto; padding: 0 24px;
}
.tab {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .13em;
  font-size: 12px; color: rgba(26,26,26,.5);
  padding: 14px 4px; border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; background: none; border-top: none; border-left: none; border-right: none;
  transition: color .2s var(--ease);
}
.tab:hover,
.tab:focus-visible { color: var(--gold); }
.tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.legal-body { max-width: 680px; margin: 0 auto; padding: 56px 24px 120px; }
.legal-panel { display: none; animation: panelfade .35s var(--ease); }
.legal-panel.active { display: block; }
@keyframes panelfade { from { opacity: 0; } to { opacity: 1; } }
.legal-panel h2 {
  font-family: var(--serif); font-weight: 400; color: var(--gold);
  font-size: 22px; margin: 34px 0 10px;
}
.legal-panel h2:first-child { margin-top: 0; }
.legal-panel p { font-size: 15px; line-height: 1.9; color: var(--on-light); opacity: .85; }

/* =================================================================
   20. WAITLIST SECTION
   ================================================================= */
.waitlist-cream {
  position: relative; background: var(--cream); color: var(--on-light);
  text-align: center; padding: 110px 24px; overflow: hidden;
}
.waitlist-cream::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/pattern-lattice.png'); background-size: 300px; opacity: .10;
}
.waitlist-cream .inner { position: relative; max-width: 560px; margin: 0 auto; }
.wl-form { display: flex; flex-direction: column; gap: 22px; max-width: 440px; margin: 30px auto 0; }
.wl-micro { font-size: 11px; color: rgba(240,235,224,.4); }
.wl-done  { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 20px; }
.wl-error { font-size: 13px; color: #c0392b; margin-top: 8px; }

/* =================================================================
   21. FOOTER
   ================================================================= */
.footer {
  position: relative; background: var(--black); text-align: center;
  padding: 72px 24px 40px; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/pattern-lattice.png'); background-size: 280px; opacity: .08;
}
.footer-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.footer-rule { width: 60%; max-width: 520px; height: 1px; background: var(--gold); opacity: .7; margin-bottom: 8px; }
.footer-logo { height: 80px; width: auto; }
.footer-tag  { font-family: var(--sans); font-style: italic; font-size: 13px; color: var(--gold); }
.footer-nav  {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 14px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--cream);
}
.footer-nav a  { color: var(--cream); transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-sep  { color: rgba(212,175,55,.5); }
.footer-social { display: flex; gap: 22px; }
.footer-social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 20px; height: 20px; fill: var(--gold); transition: opacity .2s; }
.footer-social a:hover svg { opacity: .7; }
.footer-copy { font-size: 11px; color: #666; letter-spacing: .04em; }

/* =================================================================
   22. WOOCOMMERCE SITE MAIN WRAPPER
   ================================================================= */
.woo-main {
  /* Outer wrapper for WooCommerce pages — provides nav offset */
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.site-main { padding-top: var(--nav-h); min-height: 100vh; }

/* =================================================================
   23. WAITLIST MODE — hide add to cart globally
   ================================================================= */
body.waitlist-mode .single_add_to_cart_button,
body.waitlist-mode .add_to_cart_button,
body.waitlist-mode .jawaar-add-to-cart { display: none !important; }
