/* ═══════════════════════════════════════════════════════════════
   Sheikh Ashraf Jewellers — Main Stylesheet
   Theme: Dark Luxury Gold Cinematic
   ═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --bg:         #080604;
  --surface:    #110E09;
  --accent:     #C9A84C;
  --accent-dk:  #A6883A;
  --text:       #F2E8D0;
  --muted:      #8A7A5C;
  --dark-bg:    #040302;
  --radius:     4px;
  --font-head:  'Cormorant Garamond', serif;
  --font-body:  'Jost', sans-serif;
  --shadow-warm: 0 8px 40px rgba(201,168,76,.12);
  --shadow-card: 0 4px 24px rgba(0,0,0,.55);
  --border-gold: 1px solid rgba(201,168,76,.18);
  --transition:  .4s cubic-bezier(.25,.46,.45,.94);
  --max-w:       1380px;
  --container-px: clamp(1.25rem, 5vw, 3.5rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.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;
}

.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section--dark { background: var(--dark-bg); }
.section--surface { background: var(--surface); }

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--center { text-align: center; }
.section-header--center .section-rule { margin-left: auto; margin-right: auto; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  margin-top: .85rem;
  color: var(--muted);
  font-size: .95rem;
  max-width: 520px;
}

.section-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 1.4rem 0 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 2rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--accent);
  color: var(--dark-bg);
  box-shadow: 0 0 30px rgba(201,168,76,.3);
}

.btn--ghost-light {
  border: 1px solid rgba(242,232,208,.35);
  color: var(--text);
  background: transparent;
}
.btn--ghost-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--solid {
  background: var(--accent);
  color: var(--dark-bg);
  border: 1px solid var(--accent);
}
.btn--solid:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  box-shadow: 0 0 30px rgba(201,168,76,.3);
}

.btn--sm {
  padding: .6rem 1.4rem;
  font-size: .7rem;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}

.nav.scrolled {
  background: rgba(8,6,4,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,168,76,.12), 0 8px 40px rgba(0,0,0,.6);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  letter-spacing: .04em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: .5rem;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  transition: all .3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: var(--surface);
  border-left: var(--border-gold);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 5rem 2.5rem 2.5rem;
  gap: .25rem;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  padding: .7rem 0;
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: color var(--transition), padding-left var(--transition);
}

.nav-drawer a:hover { color: var(--accent); padding-left: .5rem; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,3,2,.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.nav-overlay.visible { opacity: 1; pointer-events: all; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #1d1609 0%, #080604 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
  z-index: 1;
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  inset: -10%;
  will-change: transform;
  pointer-events: none;
}

.hero-layer svg {
  width: 100%;
  height: 100%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, transparent 30%, rgba(8,6,4,.8) 100%),
    linear-gradient(to bottom, rgba(8,6,4,.35) 0%, transparent 25%, transparent 75%, rgba(4,3,2,.9) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem var(--container-px) 4rem;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .9;
  margin-bottom: 2rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
  opacity: .6;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero-title .t-line1 {
  display: block;
  font-weight: 400;
  font-size: .72em;
  letter-spacing: .04em;
}

.hero-title .t-line2 {
  display: block;
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}

.hero-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  margin: 1.75rem auto;
}

.hero-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-size: .6rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  animation: scrollBob 2.5s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Pillars ─────────────────────────────────────────────────── */
.pillars { background: var(--surface); }

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

.pillar-card {
  padding: 3rem 2.5rem;
  border-right: var(--border-gold);
  position: relative;
  transition: background var(--transition);
}

.pillar-card:last-child { border-right: none; }

.pillar-card:hover { background: rgba(201,168,76,.04); }

.pillar-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  opacity: .85;
}

.pillar-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
}

.pillar-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .6rem;
}

.pillar-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Products ────────────────────────────────────────────────── */
.products-section { border-top: var(--border-gold); }

.category-block { margin-bottom: clamp(4rem, 8vw, 7rem); }
.category-block:last-child { margin-bottom: 0; }

.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.category-view-all {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--transition), opacity var(--transition);
  opacity: .8;
  flex-shrink: 0;
}
.category-view-all:hover { gap: .85rem; opacity: 1; }
.category-view-all svg { transition: transform var(--transition); }
.category-view-all:hover svg { transform: translateX(3px); }

/* Grid: 4 equal columns, 1:1 images */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(201,168,76,.06);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(201,168,76,.13), 0 4px 20px rgba(0,0,0,.6);
  border-color: rgba(201,168,76,.18);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #0e0c08;
  aspect-ratio: 1/1;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* Placeholder when image missing */
.product-img-wrap.no-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1610 0%, #241e14 55%, #15120d 100%);
}

.product-img-wrap.no-img::after {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--accent);
  opacity: .12;
  line-height: 1;
}

.product-info {
  padding: 1.1rem 1.25rem 1.4rem;
}


.product-cat-label {
  display: block;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .75;
  margin-bottom: .35rem;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .45rem;
}


.product-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.product-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: .5rem 0;
  border-bottom: 1px solid rgba(201,168,76,.25);
  transition: all var(--transition);
}

.product-wa-btn:hover {
  color: var(--text);
  border-color: var(--text);
  gap: .7rem;
}

/* Collection page grid (all products) */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.collection-grid .product-card { cursor: pointer; }
.collection-grid .product-img-wrap { aspect-ratio: 3/4; }

/* ── About ───────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-text .section-sub {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.about-body {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-body + .about-body { margin-top: -.5rem; }

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat {
  background: var(--surface);
  border: var(--border-gold);
  padding: 2rem 2rem 2rem 2.5rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.about-stat:hover { background: rgba(201,168,76,.04); }

.about-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}

.stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

.contact-detail-label {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .3rem;
}

.contact-detail-value {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.55;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .25rem .75rem;
  margin-top: .5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(201,168,76,.07);
}

.hours-day { color: var(--muted); }
.hours-time { color: var(--text); font-weight: 500; }
.hours-row.closed .hours-time { color: #c0392b; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }

.map-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(.85) saturate(.4) invert(1) hue-rotate(200deg);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark-bg);
  border-top: var(--border-gold);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,.08);
  margin-bottom: 2rem;
}

.footer-logo-name {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: .15rem;
}

.footer-logo-sub {
  font-size: .52rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-tagline {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,168,76,.08);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-links a {
  font-size: .88rem;
  color: var(--muted);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: .35rem; }

.footer-info {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-info a { color: var(--accent); transition: opacity var(--transition); }
.footer-info a:hover { opacity: .75; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: var(--muted);
  opacity: .6;
}

/* ── Floating Social Panel ───────────────────────────────────── */
.floating-social {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1);
}

.floating-social.visible { transform: translateY(-50%) translateX(0); }

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: width var(--transition), background var(--transition), gap var(--transition);
  overflow: hidden;
  gap: 0;
}

.float-btn span {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width var(--transition);
}

.float-btn:hover { width: auto; padding: 0 1rem; gap: .5rem; }
.float-btn:hover span { max-width: 100px; }

.float-btn--wa { background: #25d366; color: #fff; }
.float-btn--wa:hover { background: #1da851; }
.float-btn--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); color: #fff; }
.float-btn--ig:hover { filter: brightness(1.1); }
.float-btn--fb { background: #1877f2; color: #fff; }
.float-btn--fb:hover { background: #0e60cc; }

/* ── Scroll To Top ───────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border: var(--border-gold);
  background: rgba(8,6,4,.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(201,168,76,.3);
}

/* ── Collection Page ─────────────────────────────────────────── */
.collection-hero {
  padding: 8rem var(--container-px) 4rem;
  text-align: center;
  background: var(--bg);
  border-bottom: var(--border-gold);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .55rem 1.4rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: var(--border-gold);
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  transition: all var(--transition);
}

.filter-btn:hover { color: var(--accent); border-color: var(--accent); }

.filter-btn.active {
  background: var(--accent);
  color: var(--dark-bg);
  border-color: var(--accent);
}

.product-hidden { display: none !important; }

/* ── Decorative Gold Divider ─────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 3rem;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .4;
}

.gold-divider-diamond {
  font-size: .7rem;
  color: var(--accent);
  opacity: .6;
}

/* ── Animations (non-GSAP fallback) ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-scroll { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { flex-direction: row; flex-wrap: wrap; }
  .about-stat { flex: 1 1 calc(50% - 1px); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card { border-right: none; border-bottom: var(--border-gold); }
  .pillar-card:last-child { border-bottom: none; }

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

  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero-cta { flex-direction: column; align-items: center; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { flex-direction: column; }
  .about-stat { flex: 1 1 100%; }
  .hours-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .map-wrap { aspect-ratio: 1/1; }

  .floating-social { top: auto; bottom: 5rem; transform: translateX(100%); }
  .floating-social.visible { transform: translateX(0); }
}
