@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary: #6b0f1a;
  --primary-dark: #420913;
  --accent: #c6a75e;
  --bg: #faf8f5;
  --text: #1a1a1a;
  --muted: #5a5450;
  --wa: #25d366;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: radial-gradient(circle at top left, #fff, var(--bg) 52%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img,
video {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.75rem;
  line-height: 1.16;
}

h1 {
  font-size: clamp(36px, 7vw, 64px);
}

h2 {
  font-size: clamp(28px, 4.2vw, 44px);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-light {
  background: #f8f4ef;
}

.section-soft {
  background: linear-gradient(180deg, #fff, #f5ede2);
}

.section-white {
  background: #fff;
}

.section-dark {
  background: linear-gradient(170deg, #18060b, #2f0f17);
  color: #f7ecdf;
}

.gold-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(220px, 58%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 167, 94, .95), transparent);
}

/* ── Premium Header ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, .92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(198, 167, 94, .22), 0 4px 24px rgba(0, 0, 0, .05);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 30%, #f4d896 50%, var(--accent) 70%, transparent 95%);
  opacity: .7;
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  transition: opacity .2s;
}

.brand:hover {
  opacity: .85;
}

.brand-emblem {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border: 2px solid rgba(198, 167, 94, .35);
  box-shadow: 0 3px 12px rgba(198, 167, 94, .25);
  animation: emblemShimmer 4s ease-in-out infinite;
  transition: transform .25s ease;
}

.brand:hover .brand-emblem {
  transform: scale(1.06);
}

@keyframes emblemShimmer {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(198, 167, 94, .3);
  }

  50% {
    box-shadow: 0 4px 20px rgba(198, 167, 94, .5);
  }
}

.brand-lines {
  display: grid;
  line-height: 1.15;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.brand-sub {
  color: var(--accent);
  text-transform: uppercase;
  font-size: .62rem;
  letter-spacing: .22em;
  font-weight: 600;
}

.site-nav {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: .2rem;
}

.site-nav>a,
.dropdown-toggle {
  min-height: 42px;
  padding: .5rem .7rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  border: 0;
  font: inherit;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: #4a3a3a;
  transition: color .2s, background .2s;
  position: relative;
}

.site-nav>a:hover,
.dropdown-toggle:hover {
  color: var(--primary);
  background: rgba(107, 15, 26, .04);
}

.site-nav>a.active,
.nav-dropdown.active .dropdown-toggle {
  color: var(--primary);
  font-weight: 600;
}

.site-nav>a.active::after,
.nav-dropdown.active .dropdown-toggle::after {
  content: '';
  position: absolute;
  left: .65rem;
  right: .65rem;
  bottom: .25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #e8d1a0);
}


.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  padding: .45rem;
  border-radius: 14px;
  border: 1px solid rgba(198, 167, 94, .25);
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1), 0 0 0 1px rgba(198, 167, 94, .08);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}

.dropdown-menu a {
  display: block;
  padding: .55rem .7rem;
  border-radius: 10px;
  color: #433433;
  font-size: .88rem;
  transition: background .15s, color .15s;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, #faf3e8, #f5ebda);
  color: var(--primary);
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(107, 15, 26, .2);
  transition: background .2s;
}

.menu-toggle:hover {
  background: var(--primary-dark);
}

.hero {
  min-height: calc(100dvh - 80px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: #f1d9a5;
}

.hero-title {
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

.hero-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-actions {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.scroll-indicator {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #f0dcb0;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-indicator span {
  width: 2px;
  height: 22px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: pulse 1.4s ease infinite;
}

.btn {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: .8rem 1.1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: #2e1f08;
}

.btn-outline {
  background: rgba(255, 255, 255, .04);
  border-color: #ecdcb7;
  color: #fff;
}

.btn-sm {
  min-height: 38px;
  padding: .5rem .9rem;
  font-size: .82rem;
  border-radius: 10px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1rem;
}

.filter-pills a {
  border-radius: 999px;
  border: 1px solid #e7d4b3;
  background: #fff;
  padding: .36rem .78rem;
  font-size: .82rem;
  color: #5a4138;
}

.filter-pills a.active {
  background: #f4ead7;
  color: var(--primary);
}

.post-grid {
  display: grid;
  gap: 1rem;
}

.editorial-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card {
  border-radius: var(--radius);
  border: 1px solid rgba(107, 15, 26, .1);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .35s ease;
}

.editorial-card:hover {
  transform: translateY(-6px);
}

.media-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}

.editorial-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .55s ease;
}

.editorial-card:hover img {
  transform: scale(1.08);
}

.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: .24rem .58rem;
  border-radius: 999px;
  background: rgba(246, 234, 206, .95);
  border: 1px solid rgba(220, 191, 130, .85);
  color: #50350f;
  font-size: .73rem;
}

.media-overlay {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .75));
  color: #fff;
  padding: .9rem;
}

.media-overlay h3 {
  margin: .1rem 0 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
}

.card-body {
  padding: 16px;
}

.card-body p {
  margin: 0 0 .8rem;
  color: #504a46;
}

/* ── Unified Horizontal Scroller (hs-scroller) ─────────────── */
/*
 * Applied as an additive class alongside existing layout classes.
 * Works with: .lookbook-slider, .masonry-grid, .kurta-grid, .reel-strip
 * Does NOT change display type — only adds scroll behaviour.
 */
.hs-scroller {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 0;
  /* Hide scrollbar visually — still functional */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE / Edge */
}

.hs-scroller::-webkit-scrollbar {
  display: none;
  /* Chrome / Safari */
}

/* Ensure direct children snap */
.hs-scroller>* {
  scroll-snap-align: start;
}

.lookbook-slider,
.reel-strip {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.lookbook-slider {
  grid-auto-columns: calc((100% - 42px) / 4);
}

.lookbook-card,
.reel-chip,
.kurta-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.lookbook-card img,
.kurta-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.masonry-grid {
  column-count: 4;
  column-gap: 14px;
}

.masonry-item {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.kurta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* ── Rajputi Wear Section ───────────────────────────────── */
.rw-section {
  background: #fdf8f2;
}

.rw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.rw-head-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rw-crown {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(198, 167, 94, .4));
}

.rw-sub-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.4rem;
}

.rw-diamond {
  font-size: 1.1rem;
  line-height: 1;
}

.rw-sub-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #6b0f1a);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rw-sub-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 167, 94, .6), transparent);
}

/* Grid — first card spans 2 rows */
.rw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}

.rw-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border: 1px solid rgba(198, 167, 94, .18);
  box-shadow: 0 4px 20px rgba(107, 15, 26, .07);
  transition: transform .35s ease, box-shadow .35s ease;
  background: #1a0a0e;
}

.rw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 45px rgba(107, 15, 26, .15);
}

.rw-card-featured {
  grid-row: span 2;
}

.rw-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}

.rw-card:hover img {
  transform: scale(1.07);
}

/* Gold badge */
.rw-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: .28rem .65rem;
  background: linear-gradient(135deg, #c6a75e, #d9bf7f);
  color: #2e1f08;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(198, 167, 94, .4);
}

/* Overlay */
.rw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(var(--rw-color, 10, 3, 5), 0) 30%,
      rgba(10, 3, 5, .75) 100%);
  background: linear-gradient(180deg, transparent 35%, rgba(10, 3, 5, .78));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1rem;
  opacity: 0;
  transition: opacity .35s ease;
}

.rw-card:hover .rw-overlay {
  opacity: 1;
}

.rw-overlay-title {
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
  display: block;
  margin-bottom: .2rem;
}

.rw-overlay-desc {
  color: rgba(255, 255, 255, .75);
  font-size: .75rem;
  display: block;
  margin-bottom: .55rem;
}

.rw-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  background: linear-gradient(135deg, #c6a75e, #d4b06a);
  color: #2e1f08;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: .03em;
}

/* Responsive */
@media (max-width: 900px) {
  .rw-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    gap: 12px;
  }

  .rw-card-featured {
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .rw-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 8px;
  }

  .rw-overlay {
    opacity: 1;
    padding: .7rem .6rem;
  }

  .rw-overlay-title {
    font-size: .78rem;
  }

  .rw-overlay-desc {
    display: none;
  }

  .rw-overlay-cta {
    padding: .22rem .5rem;
    font-size: .65rem;
  }

  .rw-crown {
    font-size: 1.5rem;
  }

  .rw-badge {
    font-size: .58rem;
    padding: .22rem .45rem;
    top: 8px;
    left: 8px;
  }
}

/* ── Designer Picks Premium Grid ───────────────────────── */

.dp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.dp-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid rgba(198, 167, 94, .15);
  box-shadow: 0 4px 20px rgba(107, 15, 26, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}

.dp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 15, 26, .12);
}

.dp-card-featured {
  grid-row: span 2;
}

.dp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.dp-card:hover img {
  transform: scale(1.06);
}

.dp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: .3rem .7rem;
  background: linear-gradient(135deg, var(--accent, #c6a75e), #d4b06a);
  color: #2e1f08;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(198, 167, 94, .35);
  z-index: 2;
}

.dp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 3, 5, .7));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.2rem 1rem;
  opacity: 0;
  transition: opacity .35s ease;
}

.dp-card:hover .dp-overlay {
  opacity: 1;
}

.dp-overlay-title {
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.dp-overlay-arrow {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #c6a75e);
  color: #2e1f08;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(198, 167, 94, .3);
}

@media (max-width: 1024px) {
  .dp-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .dp-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }

  .dp-card-featured {
    grid-row: span 2;
  }

  .dp-badge {
    font-size: .6rem;
    padding: .22rem .5rem;
    top: 10px;
    left: 10px;
  }

  .dp-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 3, 5, .65));
    padding: .8rem .7rem;
  }

  .dp-overlay-title {
    font-size: .75rem;
  }

  .dp-overlay-arrow {
    width: 28px;
    height: 28px;
    font-size: .9rem;
  }
}

@media (max-width: 480px) {
  .dp-grid {
    grid-auto-rows: 170px;
    gap: 8px;
  }
}

.reels-home .section-head h2,
.reels-home .section-head a {
  color: #fff;
}

.reel-strip {
  grid-auto-columns: 28%;
}

.reel-chip {
  position: relative;
  background: #1e1014;
}

.reel-chip video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.play-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .56);
  color: #fff;
  font-size: .8rem;
}

.swipe-hint {
  margin-top: .7rem;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #f1ddb0;
}

.pagination {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.pagination a {
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #e7d5b7;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination a.active {
  background: #f5ebd8;
  color: var(--primary);
}

.blog-single {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 1rem;
}

.sidebar-card {
  border-radius: 16px;
  border: 1px solid #e9d7bb;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.sidebar-card a {
  display: block;
  margin-bottom: .55rem;
}

.content-block {
  margin-top: .8rem;
  border-radius: 14px;
  border: 1px solid #efdfc6;
  background: #fff;
  padding: 1rem;
}

.meta-line {
  color: var(--muted);
  font-size: .92rem;
}

.crumbs {
  color: #7a6962;
  font-size: .9rem;
  margin-bottom: .45rem;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

details {
  border-radius: 12px;
  border: 1px solid #e9d9c0;
  background: #fff;
  padding: .8rem;
  margin-bottom: .7rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

/* ── Premium Footer ────────────────────────────────────── */
.site-footer {
  margin-top: 0;
  position: relative;
  background: linear-gradient(170deg, #1a070c 0%, #0d0305 100%);
  color: #ede0cd;
  padding: 3.5rem 0 0;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 30%, #f4d896 50%, var(--accent) 70%, transparent 95%);
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(198, 167, 94, .015) 0, rgba(198, 167, 94, .015) 1px, transparent 1px, transparent 8px);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-grid section h3 {
  font-family: 'Playfair Display', serif;
  color: #f4d896;
  font-size: 1.2rem;
  margin-bottom: .8rem;
  position: relative;
  padding-bottom: .6rem;
}

.footer-grid section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-grid section h4 {
  font-family: Poppins, sans-serif;
  color: #f4d896;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: .7rem;
  position: relative;
  padding-bottom: .5rem;
}

.footer-grid section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: rgba(198, 167, 94, .45);
  border-radius: 2px;
}

.footer-grid section p {
  font-size: .88rem;
  line-height: 1.6;
  color: #c9b89e;
  margin: .3rem 0;
}

.site-footer a {
  color: #d8c8a8;
  display: block;
  margin: .3rem 0;
  font-size: .88rem;
  transition: color .2s, padding-left .2s;
  position: relative;
}

.site-footer a:hover {
  color: #f4d896;
  padding-left: .4rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: .8rem 0;
  border-top: 1px solid rgba(198, 167, 94, .12);
}

.footer-copy {
  margin: 0;
  color: #8a7a65;
  font-size: .8rem;
  letter-spacing: .03em;
}

.footer-dev {
  margin: .4rem 0 0;
  font-size: .7rem;
  color: #6a5d50;
  letter-spacing: .02em;
}

.footer-dev a {
  color: #f4d896 !important;
  font-weight: 600;
  text-decoration: none;
  padding-left: 0 !important;
}

.footer-dev span {
  color: #8a7a65;
  font-size: .65rem;
}

.sticky-cta-mobile {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 95;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: 16px;
  padding: 6px;
  background: rgba(26, 7, 12, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .25);
  border: 1px solid rgba(198, 167, 94, .2);
}

.sticky-cta-mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.sticky-cta-mobile a:active {
  transform: scale(.95);
}

.sticky-cta-mobile .cta-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.sticky-cta-mobile .cta-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.sticky-cta-mobile .cta-call {
  background: rgba(107, 15, 26, .35);
  color: #ffd6d6;
  border: 1px solid rgba(107, 15, 26, .5);
}

.sticky-cta-mobile .cta-wa {
  background: rgba(37, 211, 102, .18);
  color: #8cf5b6;
  border: 1px solid rgba(37, 211, 102, .35);
}

.sticky-cta-mobile .cta-ig {
  background: rgba(193, 53, 132, .18);
  color: #f0a8d4;
  border: 1px solid rgba(193, 53, 132, .35);
}

.scroll-top,
.floating-wa {
  position: fixed;
  right: 16px;
  z-index: 90;
}

.scroll-top {
  bottom: 118px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid #ead8bb;
  background: #fff;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.floating-wa {
  bottom: 58px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.reels-main {
  background: #000;
}

.reels-container {
  height: calc(100dvh - 78px);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.reel-item {
  min-height: calc(100dvh - 78px);
  position: relative;
  scroll-snap-align: start;
}

.reel-video {
  width: 100%;
  height: calc(100dvh - 78px);
  object-fit: cover;
  background: #000;
}

.reel-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 94px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .54);
}

.mute-toggle {
  position: fixed;
  top: 92px;
  right: 14px;
  z-index: 97;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  padding: 0 12px;
  background: rgba(0, 0, 0, .58);
  color: #fff;
}

.floating-cta-reels {
  position: fixed;
  right: 14px;
  bottom: 22px;
  z-index: 98;
  display: grid;
  gap: .5rem;
}

.floating-cta-reels a {
  min-height: 44px;
  padding: .68rem .9rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.floating-cta-reels a:last-child {
  background: var(--wa);
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: .25;
  }
}

@media (max-width: 1366px) {
  .reel-strip {
    grid-auto-columns: 33%;
  }
}

/* ── 480px: small phones ──────────────────────────────────── */
@media (max-width: 480px) {
  .section {
    padding: 32px 0;
  }

  .kurta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reel-strip {
    grid-auto-columns: 82%;
  }

  .lookbook-slider {
    grid-auto-columns: 82%;
  }

  /* Reduce hero heading line-height on small phones */
  .hero-title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 96px 0;
  }

  .editorial-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lookbook-slider {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .masonry-grid {
    column-count: 2;
  }

  .kurta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 30px));
  }

  .section {
    padding: 40px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }



  .hero {
    min-height: 100dvh;
  }

  .hero-inner {
    text-align: center;
    margin: 0 auto;
  }

  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .editorial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card img {
    max-height: 280px;
  }

  .lookbook-slider {
    grid-auto-columns: 76%;
  }

  .reel-strip {
    grid-auto-columns: 66%;
  }

  .masonry-grid {
    column-count: 1;
  }

  .kurta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-single {
    grid-template-columns: 1fr;
  }

  .sticky-cta-mobile {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: center;
  }

  .footer-grid section h3::after,
  .footer-grid section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer a:hover {
    padding-left: 0;
  }

  .site-footer {
    padding: 2rem 0 0;
  }

  .floating-wa {
    display: none;
  }

  .scroll-top {
    bottom: 70px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, #9a1a2e 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(107, 15, 26, .3);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 1rem;
  }

  .footer-grid section {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(198, 167, 94, .12);
    border-radius: 14px;
    padding: 16px 14px;
  }

  .footer-grid section:first-child {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(198, 167, 94, .06);
    border-color: rgba(198, 167, 94, .2);
  }

  .footer-grid section:first-child h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-grid section h3 {
    font-size: 1.05rem;
    margin-bottom: .6rem;
    padding-bottom: .5rem;
  }

  .footer-grid section h4 {
    font-size: .7rem;
    margin-bottom: .5rem;
    padding-bottom: .4rem;
  }


  .footer-grid section p,
  .footer-grid section a {
    font-size: .8rem;
    margin: .2rem 0;
  }

  .footer-bottom {
    padding: .6rem 0;
    margin-bottom: 70px;
  }

  .footer-copy {
    font-size: .72rem;
  }

}

/* ── Static page components ────────────────────────────────── */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose p {
  margin-bottom: 1rem;
  color: #504a46;
}

.two-col {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .three-col {
    grid-template-columns: 1fr;
  }
}

.form-card {
  border-radius: var(--radius);
  border: 1px solid #e9d9c0;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid #e5d5be;
  border-radius: 10px;
  margin-bottom: .7rem;
  font: inherit;
  background: #fdfbf8;
  transition: border-color .2s ease;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.cta-row {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-wa {
  background: var(--wa);
  color: #fff !important;
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid #d4c5ae;
  color: var(--text);
}

.alert {
  padding: .75rem 1rem;
  border-radius: 10px;
  background: #fdf0f0;
  border: 1px solid #e8c5c5;
  color: #8b3232;
  margin-bottom: 1rem;
}

.alert.success {
  background: #f0fdf4;
  border-color: #c5e8ca;
  color: #326b3a;
}

.small {
  font-size: .85rem;
  color: var(--muted);
}

.card-actions {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}

.card-actions .btn {
  font-size: .82rem;
  padding: .45rem .7rem;
  min-height: 36px;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: .4rem;
  color: #504a46;
}

/* ── Admin panel ───────────────────────────────────────────── */
.admin-body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: #f4f1ed;
  color: var(--text);
}

.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: linear-gradient(175deg, #1a070c, #2a0f18);
  color: #f4d896;
  padding: 1.4rem 1rem;
  display: grid;
  gap: .2rem;
  align-content: start;
}

.admin-sidebar h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 1rem;
}

.admin-sidebar a {
  display: block;
  padding: .6rem .8rem;
  color: #e8d3a8;
  border-radius: 10px;
  transition: background .2s;
}

.admin-sidebar a:hover {
  background: rgba(198, 167, 94, .15);
  color: #fff;
}

.admin-main {
  padding: 2rem;
  overflow-x: auto;
}

.admin-main h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.admin-form label {
  display: block;
  font-weight: 600;
  margin: .8rem 0 .3rem;
  color: #433433;
}

.admin-form input[type="text"],
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid #e0d2bd;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  transition: border-color .2s ease;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  outline: none;
  border-color: var(--accent);
}

.admin-form .btn {
  margin-top: 1rem;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.admin-cards .card {
  border-radius: 16px;
  border: 1px solid #e9d9c0;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-cards .card .card-body {
  padding: 1rem;
  text-align: center;
}

.admin-cards h3 {
  font-size: 1rem;
  margin-bottom: .3rem;
  color: var(--muted);
}

.admin-cards p {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

th,
td {
  text-align: left;
  padding: .6rem .8rem;
  border-bottom: 1px solid #ede3d4;
}

th {
  font-weight: 600;
  color: #5a4a3e;
  font-size: .88rem;
  background: #faf6ef;
}

td {
  font-size: .92rem;
}

.inline-form {
  display: inline-block;
  margin: 0 .15rem;
}

.media-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .6rem;
  margin: .6rem 0 1rem;
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid #ede3d4;
  border-radius: 14px;
  padding: .6rem;
  background: #faf8f5;
}

.media-picker-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  max-height: 200px;
}

.media-pick {
  all: unset;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.media-pick:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.media-pick img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-pick span {
  display: block;
  padding: .3rem .5rem;
  font-size: .72rem;
  color: var(--muted);
  word-break: break-all;
}

.media-pick small {
  display: block;
  padding: 0 .5rem .4rem;
  font-size: .68rem;
  color: #aaa;
}

.media-manager-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.media-manager-grid .card {
  border-radius: 16px;
  border: 1px solid #e9d9c0;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (max-width: 768px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    padding: .8rem;
  }

  .admin-sidebar h2 {
    grid-column: 1 / -1;
    margin-bottom: .5rem;
  }

  .admin-main {
    padding: 1rem;
  }
}

/* ── YouTube Shorts-style Reels ───────────────────────────── */
.reels-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, transparent 100%);
  border: none;
}

.reels-page .site-header .brand-title,
.reels-page .site-header .brand-sub,
.reels-page .site-header .menu-toggle,
.reels-page .site-header .site-nav a {
  color: #fff !important;
}

.reels-page .site-footer {
  display: none;
}

.shorts-main {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #0a0a0a;
  overflow: hidden;
}

.shorts-feed {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shorts-feed::-webkit-scrollbar {
  display: none;
}

.shorts-card {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.shorts-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop: constrain width to phone-like aspect */
@media (min-width: 768px) {
  .shorts-main {
    display: flex;
    justify-content: center;
  }

  .shorts-feed {
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 0 60px rgba(0, 0, 0, .8);
  }

  .shorts-card {
    border-radius: 18px;
  }
}

/* Play/pause overlay */
.shorts-play-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  background: rgba(0, 0, 0, .15);
}

/* Bottom info bar */
.shorts-info {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 70px;
  padding: 0 16px;
  z-index: 10;
  pointer-events: none;
}

.shorts-info-text h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.shorts-info-text p {
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  margin: 4px 0 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

/* Side action buttons */
.shorts-actions {
  position: absolute;
  right: 10px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}

.shorts-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  transition: transform .2s ease;
}

.shorts-action span {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}

.shorts-action:hover {
  transform: scale(1.15);
}

.shorts-action svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .4));
}

/* Progress bar */
.shorts-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  z-index: 15;
}

.shorts-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #c6a75e, #f4d896);
  transition: width .3s linear;
  border-radius: 0 3px 3px 0;
}

/* Desktop nav arrows */
.shorts-nav {
  display: none;
  position: absolute;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
}

.shorts-nav:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .shorts-nav {
    display: flex;
  }

  .shorts-nav-up {
    top: 50%;
    right: 20px;
    transform: translateY(-70px);
  }

  .shorts-nav-down {
    top: 50%;
    right: 20px;
    transform: translateY(20px);
  }

  .shorts-nav-up:hover {
    transform: translateY(-70px) scale(1.1);
  }

  .shorts-nav-down:hover {
    transform: translateY(20px) scale(1.1);
  }
}

/* Empty state */
.shorts-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #aaa;
  gap: 1rem;
}

.shorts-empty p {
  font-size: 1.1rem;
}

/* Map card for location page */
.map-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius);
}

/* ── Blog Single Post ─────────────────────────────────────── */

/* Breadcrumb bar */
.blog-breadcrumb {
  background: #f5ede2;
  border-bottom: 1px solid #eddfc8;
  padding: .55rem 0;
  font-size: .82rem;
}

.blog-breadcrumb .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem;
  margin: 0;
  color: #7a6a5a;
}

.blog-breadcrumb .crumbs a {
  color: var(--primary);
}

.blog-breadcrumb .crumbs span[aria-hidden] {
  color: #bba88a;
}

/* Post hero */
.blog-post-hero {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid #eddfc8;
}

.category-pill {
  display: inline-block;
  background: #f4ead7;
  border: 1px solid #e2c990;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 999px;
  margin-bottom: .7rem;
}

.post-h1 {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--primary);
  margin-bottom: .5rem;
}

.post-meta-line {
  color: var(--muted);
  font-size: .85rem;
  margin: 0;
}

/* Two-column blog layout */
.blog-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

/* Article */
.blog-article {
  min-width: 0;
}

/* Featured image */
.post-featured-img {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-featured-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  max-height: 520px;
}

.post-featured-img figcaption {
  padding: .5rem .8rem;
  font-size: .75rem;
  color: var(--muted);
  background: #faf6ef;
  border-top: 1px solid #eddfc8;
}

/* Featured Snippet Block */
.snippet-block {
  background: linear-gradient(135deg, #fef9ef, #f7edda);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(198, 167, 94, .12);
}

.snippet-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .4rem;
}

.snippet-block p {
  margin: 0;
  font-size: .95rem;
  color: #3a2f25;
  line-height: 1.65;
}

/* Table of Contents */
.toc-box {
  background: #fff;
  border: 1px solid #eddfc8;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
}

.toc-title {
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin: 0 0 .6rem;
}

.toc-box ol {
  margin: 0;
  padding-left: 1.2rem;
}

.toc-box ol li {
  margin-bottom: .3rem;
}

.toc-box a {
  font-size: .88rem;
  color: #5a4138;
}

.toc-box a:hover {
  color: var(--primary);
}

/* Post intro */
.post-intro {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3d3530;
  margin-bottom: 1.5rem;
}

/* H2 sections */
.post-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0e6d4;
}

.post-section:last-of-type {
  border-bottom: none;
}

.post-section h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--primary);
  margin-bottom: .8rem;
}

.post-section h3 {
  font-size: 1rem;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: #3a2f25;
  margin: 0;
}

.post-section p {
  margin-bottom: .8rem;
  color: #504a46;
  line-height: 1.75;
}

.post-section ul,
.post-section ol {
  margin: .5rem 0 1rem;
  padding-left: 1.3rem;
}

.post-section li {
  margin-bottom: .45rem;
  color: #504a46;
  line-height: 1.65;
}

/* Internal links box */
.internal-links-box {
  background: #faf6ef;
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid #eddfc8;
}

.internal-links-box h2 {
  margin-bottom: .7rem;
}

.internal-links-box ul {
  list-style: none;
  padding: 0;
}

.internal-links-box ul li::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 700;
}

.internal-links-box a {
  color: var(--primary);
  font-size: .92rem;
}

/* WhatsApp CTA Card */
.wa-cta-card {
  background: linear-gradient(135deg, #1a3a1a, #0d2b0d);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin: 2rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  position: relative;
  overflow: hidden;
}

.wa-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(37, 211, 102, .12), transparent 55%);
}

.wa-cta-inner {
  position: relative;
  z-index: 1;
}

.wa-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #f4d896;
  font-weight: 700;
  margin: 0 0 .5rem;
}

.wa-cta-body {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  margin: 0 0 1rem;
}

.wa-cta-btns {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.btn-wa-cta {
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: .75rem 1.2rem;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: transform .2s, box-shadow .2s;
}

.btn-wa-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  color: #fff;
}

.btn-call-cta {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: .75rem 1.2rem;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: background .2s;
}

.btn-call-cta:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

/* Conclusion block */
.conclusion-block {
  background: linear-gradient(135deg, #fdf8ef, #f7edda);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  border: 1px solid #eddfc8;
}

/* FAQ Section */
.faq-section h2 {
  margin-bottom: 1rem;
}

.faq-section details {
  border-radius: 12px;
  border: 1px solid #e9d9c0;
  background: #fff;
  padding: .9rem 1rem;
  margin-bottom: .6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: box-shadow .2s;
}

.faq-section details[open] {
  box-shadow: 0 6px 20px rgba(198, 167, 94, .12);
  border-color: var(--accent);
}

.faq-section summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-section details[open] summary::after {
  content: '−';
}

.faq-section summary h3 {
  margin: 0;
  font-size: .95rem;
}

.faq-section details p {
  margin: .6rem 0 0;
  color: #5a4a42;
  line-height: 1.7;
  font-size: .92rem;
}

/* Author Bio */
.author-bio-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #faf6ef;
  border: 1px solid #eddfc8;
  border-radius: 14px;
  padding: 1.2rem;
  margin-top: 2rem;
}

.author-avatar {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.author-name {
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 .25rem;
  font-size: .95rem;
}

.author-desc {
  color: var(--muted);
  font-size: .85rem;
  margin: 0;
  line-height: 1.6;
}

/* Sidebar */
.blog-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 84px;
}

.sidebar-card-title {
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 .7rem;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sidebar-wa {
  background: linear-gradient(135deg, #fef9ef, #f7edda);
  border-color: #e2c990;
}

.sidebar-store p {
  font-size: .85rem;
  color: var(--muted);
  margin: .2rem 0;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .blog-single-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .blog-post-hero {
    padding: 1.5rem 0 1.2rem;
  }

  .wa-cta-card {
    padding: 1.3rem;
  }

  .wa-cta-btns {
    flex-direction: column;
  }

  .btn-wa-cta,
  .btn-call-cta {
    justify-content: center;
    width: 100%;
  }

  .author-bio-box {
    flex-direction: column;
    gap: .6rem;
  }

  .post-featured-img img {
    max-height: 350px;
  }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM HOMEPAGE — New Components (additive, non-breaking)
   Added: category sliders, conversion cards, FAQ accordion,
   premium typography helpers
   ══════════════════════════════════════════════════════════ */

/* ── Typography Helpers ──────────────────────────────────── */
.eyebrow-sm {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin: 0 0 .25rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  margin: 0;
  line-height: 1.18;
  color: inherit;
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--primary);
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, gap .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-link-arrow:hover {
  border-color: var(--accent);
  gap: .55rem;
  color: var(--primary);
}

/* ── Category Slider ─────────────────────────────────────── */
.cat-slider-section {
  background: #fff;
  overflow: hidden;
}

/* Alternate backgrounds for visual variety */
.cat-slider-section:nth-child(even) {
  background: #f8f4ef;
}

.cs-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.cs-track-outer {
  flex: 1;
  overflow: hidden;
  /* clips slides; JS controls scroll */
}

.cs-track {
  display: flex;
  gap: 14px;
  transition: none;
  /* scroll handled via scrollTo */
  padding: .5rem 0;
}

/* Individual slide */
.cs-slide {
  flex: 0 0 calc((100% - 42px) / 4);
  /* 4 visible on desktop */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .09), 0 2px 8px rgba(0, 0, 0, .04);
  transition: transform .35s ease, box-shadow .35s ease;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
}

.cs-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .13);
}

.cs-slide.is-active {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Figure inside slide */
.cs-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.cs-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.cs-slide:hover .cs-figure img {
  transform: scale(1.05);
}

.cs-figure figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: .7rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(10, 3, 5, .7));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Arrow buttons */
.cs-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(198, 167, 94, .45);
  background: #fff;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
  transition: background .2s, transform .2s, box-shadow .2s;
  z-index: 2;
}

.cs-arrow:hover,
.cs-arrow:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(198, 167, 94, .35);
}

.cs-prev {
  margin-right: 10px;
}

.cs-next {
  margin-left: 10px;
}

/* Dots */
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 1rem;
}

.cs-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  background: transparent;
  cursor: pointer;
  transition: background .2s, width .25s;
  padding: 0;
}

.cs-dot.is-active {
  background: var(--accent);
  width: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
  .cs-slide {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 767px) {
  .cs-slide {
    flex-basis: 76%;
  }

  .cs-track-outer {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cs-track-outer::-webkit-scrollbar {
    display: none;
  }

  .cs-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .cs-slide {
    flex-basis: 84%;
  }

  .cs-prev {
    margin-right: 6px;
  }

  .cs-next {
    margin-left: 6px;
  }
}

/* ── Conversion Cards ────────────────────────────────────── */
.conv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.conv-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .09);
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
}

.conv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .14);
}

.conv-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.conv-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.conv-card:hover .conv-figure img {
  transform: scale(1.07);
}

.conv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(10, 3, 5, .02) 0%, rgba(10, 3, 5, .72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.conv-text {
  display: grid;
  gap: .18rem;
}

.conv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 22px);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.conv-sub {
  font-size: .8rem;
  color: #f0dcb0;
  letter-spacing: .02em;
}

.conv-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 1024px) {
  .conv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .conv-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-list {
  display: grid;
  gap: .6rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8d6bb;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
  transition: box-shadow .25s;
}

.faq-item[open] {
  box-shadow: 0 6px 24px rgba(107, 15, 26, .08);
  border-color: rgba(198, 167, 94, .6);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .97rem;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: background .15s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-q {
  background: linear-gradient(135deg, #fdf8f2, #f9f0e4);
  color: var(--primary);
}

.faq-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7ecd6, #f0e0c0);
  border: 1px solid rgba(198, 167, 94, .4);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.faq-icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  position: relative;
  transition: background .2s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: opacity .2s, transform .2s;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  padding: 0 1.2rem 1.1rem 3.3rem;
}

.faq-a p {
  margin: 0;
  font-size: .93rem;
  line-height: 1.72;
  color: #504a46;
}

@media (max-width: 600px) {
  .faq-q {
    font-size: .88rem;
    padding: .85rem 1rem;
    gap: .65rem;
  }

  .faq-a {
    padding: 0 1rem .9rem 2.8rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL SITE-WIDE FAQ BLOCK  (.sfaq-*)
   Rendered above footer on every page via faq_engine.php
   Enhanced: full-row click, 48px mobile touch, smooth animate,
   open-state accent, premium hover; brand colors unchanged.
   ══════════════════════════════════════════════════════════════ */

.sfaq-section {
  background: var(--bg, #faf8f5);
  padding: 2.25rem 0 1.5rem;
  border-top: 1px solid rgba(198, 167, 94, .22);
}

.sfaq-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

/* ── Each accordion card ────────────────────────────────────── */
.sfaq-item {
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .25);
  border-left: 3px solid transparent;
  /* accent on open */
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .28s ease, border-color .28s ease;
  will-change: box-shadow;
}

.sfaq-item:hover {
  box-shadow: 0 3px 14px rgba(107, 15, 26, .07);
  border-color: rgba(198, 167, 94, .45);
  border-left-color: transparent;
}

.sfaq-item[open] {
  border-left-color: var(--primary, #6b0f1a);
  border-color: rgba(107, 15, 26, .18);
  box-shadow: 0 5px 20px rgba(107, 15, 26, .09);
}

/* ── Summary / question row (full-row clickable) ────────────── */
.sfaq-q {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1.1rem;
  /* generous vertical for comfort */
  min-height: 52px;
  /* well above 48px minimum */
  cursor: pointer;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  line-height: 1.5;
  user-select: none;
  -webkit-user-select: none;
  /* smooth open/close feel via transition on sibling */
  -webkit-tap-highlight-color: transparent;
}

.sfaq-q::-webkit-details-marker {
  display: none;
}

.sfaq-q::marker {
  display: none;
}

.sfaq-q:focus-visible {
  outline: 2px solid var(--accent, #c6a75e);
  outline-offset: -3px;
  border-radius: 9px;
}

.sfaq-q:hover {
  background: rgba(198, 167, 94, .055);
}

/* ── Number badge ───────────────────────────────────────────── */
.sfaq-num {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary, #6b0f1a), var(--primary-dark, #420913));
  color: #f1ddb0;
  border-radius: 50%;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .03em;
  flex-shrink: 0;
}

/* ── Question text ──────────────────────────────────────────── */
.sfaq-q-text {
  flex: 1;
  line-height: 1.5;
}

/* ── Toggle icon ────────────────────────────────────────────── */
.sfaq-icon {
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--accent, #c6a75e);
  color: var(--accent, #c6a75e);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .28s ease, background .22s ease, color .22s ease;
  pointer-events: none;
  /* click handled by <summary> */
}

.sfaq-icon::before {
  content: '+';
}

.sfaq-item[open] .sfaq-icon {
  content: '−';
  background: var(--primary, #6b0f1a);
  border-color: var(--primary, #6b0f1a);
  color: #f1ddb0;
  transform: rotate(45deg);
  /* + rotates into × feel, subtle */
}

.sfaq-item[open] .sfaq-icon::before {
  content: '−';
}

/* ── Answer panel ───────────────────────────────────────────── */
.sfaq-a {
  padding: 0 1.1rem .85rem 3.1rem;
  animation: sfaqSlide .26s ease both;
}

.sfaq-a p {
  margin: 0;
  font-size: .875rem;
  color: var(--muted, #5a5450);
  line-height: 1.7;
}

@keyframes sfaqSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CTA row at bottom of FAQ section ───────────────────────── */
.sfaq-cta {
  margin-top: 1.5rem;
  padding: 1.15rem 1.35rem;
  background: linear-gradient(135deg, rgba(107, 15, 26, .05), rgba(198, 167, 94, .07));
  border: 1px solid rgba(198, 167, 94, .3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.sfaq-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
}

.sfaq-cta-text span {
  display: block;
  font-size: .8rem;
  font-weight: 400;
  color: var(--muted, #5a5450);
  margin-top: .1rem;
}

.sfaq-cta-btns {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.sfaq-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.1rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease, transform .15s ease;
  white-space: nowrap;
}

.sfaq-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.sfaq-btn-wa {
  background: #25d366;
  color: #fff;
}

.sfaq-btn-store {
  background: var(--primary, #6b0f1a);
  color: #f1ddb0;
  border: 1px solid var(--primary, #6b0f1a);
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sfaq-section {
    padding: 1.75rem 0 1.1rem;
  }

  .sfaq-section .section-title {
    font-size: 1.25rem;
  }

  .sfaq-list {
    margin-top: .85rem;
    gap: .3rem;
  }

  /* 48px minimum touch target guaranteed */
  .sfaq-q {
    font-size: .875rem;
    /* readable without zoom */
    padding: .75rem 1rem;
    min-height: 52px;
    gap: .55rem;
  }

  .sfaq-num {
    width: 1.5rem;
    height: 1.5rem;
    font-size: .6rem;
  }

  .sfaq-icon {
    width: 1.35rem;
    height: 1.35rem;
    font-size: .95rem;
  }

  .sfaq-a {
    padding: 0 1rem .8rem 2.85rem;
  }

  .sfaq-a p {
    font-size: .855rem;
    line-height: 1.68;
  }

  .sfaq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    margin-top: 1.1rem;
  }

  .sfaq-cta-btns {
    width: 100%;
  }

  .sfaq-btn {
    flex: 1;
    justify-content: center;
    padding: .65rem .75rem;
    font-size: .8rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM BRAND POSITIONING CARDS  (.pcard-*)
   Responsive grid: 3→2→1 columns, theme-native design.
   ══════════════════════════════════════════════════════════════ */

.pcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}

.pcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .25);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .28s ease, box-shadow .28s ease;
  will-change: transform;
}

.pcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(107, 15, 26, .1);
}

.pcard-figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5f0ea;
}

.pcard-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.pcard:hover .pcard-figure img {
  transform: scale(1.04);
}

.pcard-body {
  padding: .85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}

.pcard-title {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  line-height: 1.35;
}

.pcard-sub {
  font-size: .82rem;
  color: var(--muted, #5a5450);
  line-height: 1.5;
}

.pcard-cta {
  margin-top: auto;
  padding-top: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent, #c6a75e);
  letter-spacing: .03em;
}

/* ── Tablet ── */
@media (max-width: 768px) {
  .pcard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }

  .pcard-figure {
    aspect-ratio: 3 / 4;
  }

  .pcard-body {
    padding: .7rem .85rem .85rem;
  }

  .pcard-title {
    font-size: .88rem;
  }

  .pcard-sub {
    font-size: .78rem;
  }

  .pcard-cta {
    font-size: .76rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ── Phone: single column ── */
@media (max-width: 480px) {
  .pcard-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .pcard {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .pcard-figure {
    aspect-ratio: 3 / 4;
    border-radius: 10px 0 0 10px;
  }

  .pcard-body {
    padding: .6rem .7rem .75rem;
  }

  .pcard-title {
    font-size: .84rem;
  }

  .pcard-sub {
    font-size: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Quick Contact Cards ──────────────────────────────────── */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  padding: 1.2rem 1rem;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .25);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(107, 15, 26, .09);
  border-color: var(--accent, #c6a75e);
}

.contact-card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent, #c6a75e);
}

.contact-card-value {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  line-height: 1.35;
}

.contact-card-hint {
  font-size: .76rem;
  color: var(--muted, #5a5450);
}

/* ── Contact Right Column ────────────────────────────────── */
.contact-right-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Store Info Block ─────────────────────────────────────── */
.store-info-block {
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .22);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 2px 12px rgba(107, 15, 26, .06);
}

.store-info-block h2,
.store-info-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary, #6b0f1a);
  margin: 0 0 .5rem;
}

.store-info-block h3 {
  font-size: .95rem;
}

.store-info-block>p {
  font-size: .85rem;
  color: var(--muted, #5a5450);
  margin: 0 0 .8rem;
  line-height: 1.6;
}

.store-detail {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .6rem 0;
  border-top: 1px solid rgba(198, 167, 94, .12);
}

.store-detail strong {
  font-size: .8rem;
  color: var(--primary, #6b0f1a);
}

.store-detail span {
  font-size: .84rem;
  color: var(--muted, #5a5450);
  line-height: 1.55;
}

/* ── Areas Served Pills ───────────────────────────────────── */
.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.area-pill {
  display: inline-block;
  padding: .3rem .7rem;
  background: rgba(107, 15, 26, .06);
  border: 1px solid rgba(107, 15, 26, .12);
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 500;
  color: var(--primary, #6b0f1a);
  white-space: nowrap;
}

/* ── USP Cards Grid ───────────────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
}

.usp-card {
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .22);
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
  transition: box-shadow .25s ease;
}

.usp-card:hover {
  box-shadow: 0 4px 16px rgba(107, 15, 26, .07);
}

.usp-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: .35rem;
}

.usp-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  margin: 0 0 .3rem;
}

.usp-card p {
  font-size: .82rem;
  color: var(--muted, #5a5450);
  line-height: 1.6;
  margin: 0;
}

/* ── Google Map ───────────────────────────────────────────── */
.map-embed {
  margin-top: .75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198, 167, 94, .22);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 300px;
}

/* ── Form Enhancements ────────────────────────────────────── */
.form-subtitle {
  font-size: .82rem;
  color: var(--muted, #5a5450);
  margin: -.25rem 0 .75rem;
  line-height: 1.55;
}

.form-card select {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid rgba(198, 167, 94, .3);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  color: var(--primary, #6b0f1a);
  background: #fff;
  margin-bottom: .6rem;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b0f1a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 10px;
}

.form-card select:focus {
  outline: none;
  border-color: var(--accent, #c6a75e);
  box-shadow: 0 0 0 2px rgba(198, 167, 94, .15);
}

.btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Contact Page Mobile ──────────────────────────────────── */
@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .contact-card {
    padding: .9rem .7rem;
    background: linear-gradient(160deg, #fff 50%, rgba(246, 234, 206, .18));
    border-color: rgba(198, 167, 94, .22);
    border-left: 3px solid var(--accent, #c6a75e);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(107, 15, 26, .03);
    align-items: flex-start;
    text-align: left;
  }

  .contact-card-icon {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(107, 15, 26, .15);
  }

  .contact-card-label {
    font-size: .68rem;
  }

  .contact-card-value {
    font-size: .82rem;
  }

  .contact-card-hint {
    font-size: .7rem;
  }

  .usp-grid {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .usp-card {
    padding: .9rem;
    background: linear-gradient(160deg, #fff 50%, rgba(246, 234, 206, .18));
    border-color: rgba(198, 167, 94, .22);
    border-left: 3px solid var(--accent, #c6a75e);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(107, 15, 26, .03);
  }

  .usp-icon {
    font-size: 1.3rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(107, 15, 26, .12);
    margin-bottom: .45rem;
  }

  .usp-card h3 {
    font-size: .82rem;
  }

  .usp-card p {
    font-size: .78rem;
  }

  .store-info-block {
    padding: 0;
    border-radius: 18px;
    background: linear-gradient(170deg, #fff 50%, rgba(246, 234, 206, .18));
    border-color: rgba(198, 167, 94, .22);
    box-shadow: 0 4px 20px rgba(107, 15, 26, .04);
    overflow: hidden;
  }

  .store-info-block h2,
  .store-info-block h3 {
    margin: 0;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    color: #fff;
    font-size: .95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    position: relative;
  }

  .store-info-block h2::after,
  .store-info-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #c6a75e), rgba(246, 234, 206, .8), var(--accent, #c6a75e));
  }

  .store-info-block h3 {
    font-size: .9rem;
  }

  .store-info-block>p {
    padding: .8rem 1.2rem .2rem;
    font-size: .82rem;
  }

  .store-detail {
    margin: 0 1rem;
    padding: .55rem .7rem;
    border-top: none;
    border-radius: 10px;
    background: rgba(246, 234, 206, .12);
    border-left: 3px solid var(--accent, #c6a75e);
    margin-bottom: .3rem;
  }

  .store-detail:first-of-type {
    margin-top: .6rem;
  }

  .store-detail:last-of-type {
    margin-bottom: .8rem;
  }

  .store-detail strong {
    font-size: .76rem;
  }

  .store-detail span {
    font-size: .8rem;
  }

  .store-info-block .areas-pills {
    padding: .6rem 1.2rem;
  }

  .map-embed iframe {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .usp-card {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
  }

  .usp-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   LOCATION PAGE COMPONENTS
   ══════════════════════════════════════════════════════════════ */

/* ── Centered section header ─────────────────────────────── */
.section-head-center {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: .5rem;
}

/* ── Intro ────────────────────────────────────────────────── */
.loc-intro-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.loc-intro-body {
  margin-top: .6rem;
}

.loc-intro-body p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--muted, #5a5450);
  margin-bottom: .8rem;
}

/* ── Prose container (compatibility) ─────────────────────── */
.prose {
  max-width: 800px;
}

.prose p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted, #5a5450);
  margin-bottom: 1rem;
}

/* ── Why Choose Grid ─────────────────────────────────────── */
.loc-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.loc-why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .18);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.loc-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 15, 26, .08);
}

.loc-why-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 15, 26, .08), rgba(198, 167, 94, .12));
  font-size: 1.3rem;
  border-radius: 12px;
}

.loc-why-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
  color: var(--muted, #5a5450);
}

/* ── Product Tags Grid ───────────────────────────────────── */
.loc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .7rem;
  margin-top: 1.2rem;
}

.loc-product-tag {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1rem;
  background: #fff;
  border: 1px solid rgba(107, 15, 26, .09);
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.loc-product-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(107, 15, 26, .06);
  border-color: rgba(198, 167, 94, .35);
}

.loc-product-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.loc-product-name {
  font-size: .84rem;
  font-weight: 500;
  color: var(--primary, #6b0f1a);
}

/* ── Popular / Trending ──────────────────────────────────── */
.loc-popular {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: rgba(198, 167, 94, .06);
  border: 1px solid rgba(198, 167, 94, .2);
  border-left: 4px solid var(--accent, #c6a75e);
  border-radius: 0 12px 12px 0;
}

.loc-popular-badge {
  flex-shrink: 0;
  padding: .25rem .7rem;
  background: var(--primary, #6b0f1a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: .02em;
}

.loc-popular p {
  font-size: .86rem;
  color: var(--muted, #5a5450);
  line-height: 1.6;
  margin: 0;
}

/* ── How to Order Steps ──────────────────────────────────── */
.loc-steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 1.5rem;
}

.loc-step {
  flex: 1;
  padding: 1.6rem 1.4rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .22);
  border-radius: 14px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.loc-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 15, 26, .07);
}

.loc-step-connector {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-step-connector::after {
  content: '→';
  font-size: 1.2rem;
  color: var(--accent, #c6a75e);
  font-weight: 600;
}

.loc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #c6a75e), #d4b566);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .75rem;
  box-shadow: 0 3px 10px rgba(198, 167, 94, .3);
}

.loc-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  margin: 0 0 .4rem;
}

.loc-step p {
  font-size: .83rem;
  color: var(--muted, #5a5450);
  line-height: 1.65;
  margin: 0;
}

/* ── Store Info Grid ─────────────────────────────────────── */
.loc-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.loc-store-panel {
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .18);
  border-radius: 16px;
  overflow: hidden;
}

.loc-store-panel-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, rgba(107, 15, 26, .04), rgba(198, 167, 94, .06));
  border-bottom: 1px solid rgba(198, 167, 94, .12);
}

.loc-store-panel-icon {
  font-size: 1.4rem;
}

.loc-store-panel-head h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  margin: 0;
}

.loc-store-subtext {
  padding: .8rem 1.4rem 0;
  font-size: .84rem;
  color: var(--muted, #5a5450);
  line-height: 1.55;
  margin: 0;
}

.loc-store-details {
  padding: .6rem 1.4rem 1.2rem;
}

.loc-store-row {
  display: flex;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
  font-size: .84rem;
  color: var(--muted, #5a5450);
  line-height: 1.5;
}

.loc-store-row:last-child {
  border-bottom: none;
}

.loc-store-label {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  min-width: 120px;
}

.loc-store-row a {
  color: var(--accent, #c6a75e);
  text-decoration: none;
  font-weight: 500;
}

.loc-store-row a:hover {
  text-decoration: underline;
}

.loc-store-panel .areas-pills {
  padding: .6rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.loc-store-panel .cta-row {
  padding: 0 1.4rem 1.2rem;
}

.area-pill {
  display: inline-block;
  padding: .35rem .75rem;
  background: rgba(107, 15, 26, .04);
  border: 1px solid rgba(107, 15, 26, .1);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--primary, #6b0f1a);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}

a.area-pill:hover {
  background: rgba(107, 15, 26, .1);
  border-color: var(--primary, #6b0f1a);
}

/* ── Location Interlink Pills ────────────────────────────── */
.loc-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}

.loc-pill {
  display: inline-block;
  padding: .4rem .85rem;
  background: rgba(107, 15, 26, .05);
  border: 1px solid rgba(107, 15, 26, .12);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--primary, #6b0f1a);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease;
}

.loc-pill:hover {
  background: rgba(107, 15, 26, .1);
  border-color: var(--primary, #6b0f1a);
}

.loc-pill-active {
  background: var(--primary, #6b0f1a);
  color: #fff;
  border-color: var(--primary, #6b0f1a);
}

.loc-pill-active:hover {
  background: var(--primary, #6b0f1a);
}

/* ── Location Page Mobile ────────────────────────────────── */
@media (max-width: 768px) {
  .loc-why-grid {
    grid-template-columns: 1fr;
  }

  .loc-why-card {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(160deg, #fff 60%, rgba(246, 234, 206, .2));
    border-left: 3px solid var(--accent, #c6a75e);
  }

  .loc-why-num {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    color: #fff;
    box-shadow: 0 3px 10px rgba(107, 15, 26, .15);
  }

  .loc-why-card p {
    font-size: .84rem;
  }

  .loc-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .loc-product-tag {
    font-size: .78rem;
    padding: .55rem .75rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff, rgba(246, 234, 206, .2));
    border-left: 3px solid var(--accent, #c6a75e);
    border-color: rgba(198, 167, 94, .2);
  }

  .loc-product-icon {
    font-size: 1rem;
  }

  .loc-steps-grid {
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .loc-steps-grid::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 2rem;
    bottom: 2rem;
    width: 3px;
    background: linear-gradient(180deg, var(--accent, #c6a75e), var(--primary, #6b0f1a));
    border-radius: 3px;
    z-index: 0;
  }

  .loc-step {
    text-align: left;
    padding: 1.1rem 1.2rem 1.1rem 4rem;
    border-radius: 16px;
    position: relative;
    z-index: 1;
  }

  .loc-step::before {
    display: none;
  }

  .loc-step-num {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    font-size: .95rem;
    margin-bottom: 0;
  }

  .loc-step h3 {
    font-size: .88rem;
    margin-bottom: .25rem;
  }

  .loc-step p {
    font-size: .8rem;
    line-height: 1.55;
  }

  .loc-step-connector {
    width: auto;
    height: 0;
    overflow: hidden;
  }

  .loc-step-connector::after {
    content: '';
  }

  .loc-store-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .loc-store-panel {
    border-radius: 18px;
    background: linear-gradient(170deg, #fff 40%, rgba(246, 234, 206, .18));
    border-color: rgba(198, 167, 94, .22);
    box-shadow: 0 4px 20px rgba(107, 15, 26, .04), 0 1px 4px rgba(0, 0, 0, .03);
  }

  .loc-store-panel-head {
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825 50%, #6b0f1a);
    border-bottom: none;
    position: relative;
  }

  .loc-store-panel-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #c6a75e), rgba(246, 234, 206, .8), var(--accent, #c6a75e));
  }

  .loc-store-panel-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .12);
  }

  .loc-store-panel-head h2 {
    font-size: .95rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  }

  .loc-store-subtext {
    padding: .8rem 1.2rem .3rem;
    font-size: .82rem;
  }

  .loc-store-details {
    padding: .4rem 1rem 1rem;
  }

  .loc-store-row {
    padding: .55rem .7rem;
    font-size: .8rem;
    flex-direction: column;
    gap: .2rem;
    border-radius: 10px;
    margin-bottom: .3rem;
    border-bottom: none;
    background: rgba(246, 234, 206, .12);
    border-left: 3px solid var(--accent, #c6a75e);
  }

  .loc-store-label {
    min-width: auto;
    font-size: .78rem;
  }

  .loc-store-panel .areas-pills {
    padding: .6rem 1.2rem;
    gap: .45rem;
  }

  .loc-store-panel .cta-row {
    padding: .2rem 1.2rem 1.1rem;
    display: flex;
    gap: .5rem;
  }

  .loc-store-panel .cta-row .btn {
    padding: .55rem 1rem;
    font-size: .82rem;
    border-radius: 10px;
    flex: 1;
    text-align: center;
  }

  .area-pill {
    padding: .4rem .8rem;
    font-size: .76rem;
    background: linear-gradient(135deg, rgba(107, 15, 26, .03), rgba(198, 167, 94, .08));
    border-color: rgba(198, 167, 94, .25);
    border-radius: 24px;
    font-weight: 600;
  }

  a.area-pill:hover {
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    color: #fff;
    border-color: var(--primary, #6b0f1a);
  }

  .loc-popular {
    flex-direction: column;
    align-items: flex-start;
    gap: .4rem;
    border-radius: 0 14px 14px 0;
    background: linear-gradient(135deg, rgba(198, 167, 94, .06), rgba(107, 15, 26, .03));
  }

  .loc-pills-grid {
    gap: .4rem;
  }

  .loc-pill {
    padding: .4rem .85rem;
    font-size: .74rem;
    background: linear-gradient(135deg, rgba(107, 15, 26, .04), rgba(198, 167, 94, .08));
    border-color: rgba(198, 167, 94, .2);
    border-radius: 24px;
    font-weight: 600;
  }

  .loc-pill:hover {
    background: linear-gradient(135deg, rgba(107, 15, 26, .08), rgba(198, 167, 94, .15));
    border-color: var(--accent, #c6a75e);
  }

  .loc-pill-active {
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    border-color: var(--primary, #6b0f1a);
  }
}

@media (max-width: 480px) {
  .loc-products-grid {
    grid-template-columns: 1fr;
    gap: .4rem;
  }

  .loc-product-tag {
    padding: .5rem .65rem;
    font-size: .76rem;
  }

  .loc-step {
    padding: .9rem 1rem .9rem 3.6rem;
  }

  .loc-step-num {
    width: 32px;
    height: 32px;
    font-size: .85rem;
    left: .8rem;
  }

  .loc-steps-grid::before {
    left: 22px;
  }
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY ABOUT CARD
   ══════════════════════════════════════════════════════════════ */
.cat-about-card {
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .18);
  border-radius: 16px;
  padding: 2rem 2.2rem;
}

.cat-about-header {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.cat-about-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cat-about-header h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary, #6b0f1a);
}

.cat-about-card p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted, #5a5450);
  margin: 0 0 1.2rem;
}

.cat-about-cta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.cat-about-cta .btn {
  font-size: .84rem;
  padding: .55rem 1.2rem;
}

/* ── Category About Card Mobile ────────────────────────────── */
@media (max-width: 768px) {
  .cat-about-card {
    padding: 0;
    border-radius: 18px;
    background: linear-gradient(170deg, #fff 50%, rgba(246, 234, 206, .18));
    border-color: rgba(198, 167, 94, .22);
    box-shadow: 0 4px 20px rgba(107, 15, 26, .04);
    overflow: hidden;
  }

  .cat-about-header {
    padding: 1rem 1.2rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    position: relative;
  }

  .cat-about-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent, #c6a75e), rgba(246, 234, 206, .8), var(--accent, #c6a75e));
  }

  .cat-about-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, .15);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .12);
  }

  .cat-about-header h2 {
    color: #fff;
    font-size: 1.05rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  }

  .cat-about-card p {
    padding: 1rem 1.2rem .4rem;
    font-size: .84rem;
    line-height: 1.65;
    margin: 0;
  }

  .cat-about-cta {
    padding: .6rem 1.2rem 1.2rem;
    gap: .5rem;
  }

  .cat-about-cta .btn {
    flex: 1;
    text-align: center;
    font-size: .82rem;
    padding: .55rem .8rem;
    border-radius: 10px;
  }
}

/* ══════════════════════════════════════════════════════════════
   COLLECTION EXPLORER CARDS
   ══════════════════════════════════════════════════════════════ */
.collection-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1rem;
}

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .15);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: transform .3s ease, box-shadow .3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(107, 15, 26, .12);
}

.collection-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.collection-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 3, 5, .45) 100%);
  pointer-events: none;
  z-index: 1;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.08);
}

.collection-card-body {
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.collection-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  margin: 0;
  line-height: 1.3;
}

.collection-card-body p {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--muted, #5a5450);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.collection-card-cta {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent, #c6a75e);
  margin-top: .2rem;
  letter-spacing: .02em;
  transition: color .2s ease, letter-spacing .2s ease;
}

.collection-card:hover .collection-card-cta {
  color: var(--primary, #6b0f1a);
  letter-spacing: .06em;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .collection-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .collection-cards-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .collection-card {
    display: grid;
    grid-template-columns: 110px 1fr;
  }

  .collection-card-img {
    aspect-ratio: 1 / 1;
    border-radius: 12px 0 0 12px;
  }

  .collection-card-body {
    padding: .6rem .7rem;
    justify-content: center;
  }

  .collection-card-body h3 {
    font-size: .82rem;
  }

  .collection-card-body p {
    font-size: .72rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .collection-card-cta {
    font-size: .68rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   INSTAGRAM FOLLOW CTA
   ══════════════════════════════════════════════════════════════ */
.ig-follow-cta {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a18 50%, #1a0a10 100%);
}

.ig-follow-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(198, 167, 94, .2);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Animated glow behind card */
.ig-follow-glow {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(214, 41, 118, .25), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: ig-glow-drift 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ig-glow-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 30px) scale(1.2);
  }
}

.ig-follow-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.ig-follow-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.ig-follow-icon svg {
  width: 100%;
  height: 100%;
}

.ig-follow-handle {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .15rem;
  letter-spacing: .01em;
}

.ig-follow-desc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  margin: 0;
  line-height: 1.45;
  max-width: 380px;
}

.ig-follow-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.4rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 18px rgba(214, 41, 118, .3);
}

.ig-follow-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(214, 41, 118, .45);
}

.ig-follow-btn svg {
  flex-shrink: 0;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ig-follow-card {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1rem;
    gap: .8rem;
  }

  .ig-follow-content {
    flex-direction: column;
    gap: .5rem;
  }

  .ig-follow-icon {
    width: 40px;
    height: 40px;
  }

  .ig-follow-handle {
    font-size: .85rem;
  }

  .ig-follow-desc {
    font-size: .74rem;
    max-width: 100%;
  }

  .ig-follow-btn {
    font-size: .78rem;
    padding: .55rem 1.2rem;
  }

  .ig-follow-glow {
    width: 120px;
    height: 120px;
    top: -30%;
    left: 30%;
  }
}

/* ══════════════════════════════════════════════════════════════
   LOCATION INDEX PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Section subtitle ────────────────────────────────────── */
.section-subtitle {
  font-size: .88rem;
  color: var(--muted, #5a5450);
  line-height: 1.6;
  margin-top: .3rem;
}

/* ── Stats bar ───────────────────────────────────────────── */
.loc-idx-stats {
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a18 50%, #1a0a10 100%);
  padding: 1.4rem 0;
}

.loc-idx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.loc-idx-stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.loc-idx-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent, #c6a75e);
}

.loc-idx-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ── Location cards grid ─────────────────────────────────── */
.loc-idx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1.2rem;
}

.loc-idx-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .15);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.loc-idx-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(107, 15, 26, .08);
  border-color: rgba(198, 167, 94, .35);
}

.loc-idx-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 15, 26, .06), rgba(198, 167, 94, .1));
  border-radius: 12px;
  font-size: 1.3rem;
}

.loc-idx-card-body {
  flex: 1;
  min-width: 0;
}

.loc-idx-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  margin: 0 0 .1rem;
}

.loc-idx-card-district {
  font-size: .76rem;
  color: var(--accent, #c6a75e);
  margin: 0;
  font-weight: 500;
}

.loc-idx-card-dist {
  font-size: .73rem;
  color: var(--muted, #5a5450);
  margin: .15rem 0 0;
}

.loc-idx-card-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--accent, #c6a75e);
  font-weight: 600;
  transition: transform .2s ease;
}

.loc-idx-card:hover .loc-idx-card-arrow {
  transform: translateX(4px);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.loc-idx-cta-banner {
  padding: 2rem 0;
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a18 50%, #1a0a10 100%);
}

.loc-idx-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(198, 167, 94, .2);
  backdrop-filter: blur(12px);
}

.loc-idx-cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 .3rem;
}

.loc-idx-cta-inner p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
  margin: 0;
  line-height: 1.55;
}

.loc-idx-cta-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
}

/* ── Location Index Mobile ───────────────────────────────── */
@media (max-width: 900px) {
  .loc-idx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .loc-idx-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }

  .loc-idx-stat-num {
    font-size: 1.2rem;
  }

  .loc-idx-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .loc-idx-card {
    padding: .9rem 1rem;
  }

  .loc-idx-card-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .loc-idx-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1rem;
    gap: 1rem;
  }

  .loc-idx-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .loc-idx-cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Story grid (image + text side by side) ──────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(107, 15, 26, .1);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
}

.about-story-content .section-title {
  text-align: left;
}

.about-story-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--muted, #5a5450);
  margin-bottom: .8rem;
}

/* ── Card titles inside why-choose cards ─────────────────── */
.about-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
  margin: 0 0 .25rem;
}

/* ── Contact buttons inside panel ────────────────────────── */
.about-contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  padding: .8rem 1.4rem 1.2rem;
}

.about-contact-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  background: rgba(107, 15, 26, .03);
  border: 1px solid rgba(198, 167, 94, .15);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(107, 15, 26, .06);
  border-color: rgba(198, 167, 94, .35);
}

.about-contact-btn-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-contact-btn strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary, #6b0f1a);
}

.about-contact-btn p {
  font-size: .73rem;
  color: var(--muted, #5a5450);
  margin: .1rem 0 0;
}

/* ── btn-outline-dark variant ────────────────────────────── */
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--primary, #6b0f1a);
  color: var(--primary, #6b0f1a);
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  padding: .6rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease, color .2s ease;
}

.btn-outline-dark:hover {
  background: var(--primary, #6b0f1a);
  color: #fff;
}

/* ── About Page Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-story-img img {
    aspect-ratio: 16/9;
    max-height: 240px;
  }

  .about-story-content .section-title {
    text-align: center;
  }

  .about-story-content .eyebrow-sm {
    text-align: center;
  }

  .about-story-content p {
    text-align: center;
  }

  .about-story-content .hero-actions {
    justify-content: center;
  }

  .about-contact-btns {
    grid-template-columns: 1fr;
    padding: .6rem 1.2rem 1.2rem;
    gap: .4rem;
  }

  .about-contact-btn {
    padding: .75rem .9rem;
    background: linear-gradient(160deg, #fff 50%, rgba(246, 234, 206, .18));
    border-color: rgba(198, 167, 94, .22);
    border-left: 3px solid var(--accent, #c6a75e);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(107, 15, 26, .03);
  }

  .about-contact-btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary, #6b0f1a), #8a1825);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(107, 15, 26, .15);
  }

  .about-contact-btn strong {
    font-size: .8rem;
  }

  .about-contact-btn p {
    font-size: .72rem;
  }

  .about-card-title {
    font-size: .84rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   HELP CTA CARD — "Need Help Choosing?"
   ══════════════════════════════════════════════════════════════ */
.help-cta-section {
  padding: 2.5rem 0;
}

.help-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a18 40%, #1a0a10 100%);
  border-radius: 20px;
  padding: 2.8rem 2rem;
  text-align: center;
  border: 1px solid rgba(198, 167, 94, .2);
}

/* Animated glow orbs */
.help-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  animation: helpGlowPulse 4s ease-in-out infinite alternate;
}

.help-cta-glow-1 {
  width: 200px;
  height: 200px;
  background: var(--accent, #c6a75e);
  top: -60px;
  right: -40px;
}

.help-cta-glow-2 {
  width: 160px;
  height: 160px;
  background: var(--primary, #6b0f1a);
  bottom: -50px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes helpGlowPulse {
  0% {
    opacity: .2;
    transform: scale(1);
  }

  100% {
    opacity: .4;
    transform: scale(1.15);
  }
}

/* Content */
.help-cta-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.help-cta-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 167, 94, .12);
  border: 1px solid rgba(198, 167, 94, .25);
  border-radius: 16px;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.help-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .5rem;
}

.help-cta-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  margin: 0 0 1.4rem;
}

/* Action buttons */
.help-cta-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
}

.help-cta-btn {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
  min-width: 180px;
}

.help-cta-btn:hover {
  transform: translateY(-3px);
}

.help-cta-btn-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.help-cta-btn strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: .84rem;
  font-weight: 600;
}

.help-cta-btn span {
  font-size: .72rem;
  opacity: .7;
}

/* Call variant */
.help-cta-btn-call {
  background: linear-gradient(135deg, var(--accent, #c6a75e), #d4b566);
  box-shadow: 0 4px 16px rgba(198, 167, 94, .25);
}

.help-cta-btn-call:hover {
  box-shadow: 0 6px 24px rgba(198, 167, 94, .4);
}

/* WhatsApp variant */
.help-cta-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .2);
}

.help-cta-btn-wa:hover {
  box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
}

/* Note line */
.help-cta-note {
  margin: 1.2rem 0 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .02em;
}

/* ── Help CTA Mobile ────────────────────────────────────── */
@media (max-width: 768px) {
  .help-cta-card {
    padding: 2rem 1.2rem;
    border-radius: 16px;
  }

  .help-cta-title {
    font-size: 1.15rem;
  }

  .help-cta-actions {
    flex-direction: column;
    gap: .5rem;
  }

  .help-cta-btn {
    min-width: unset;
    width: 100%;
    justify-content: center;
  }

  .help-cta-glow-1 {
    width: 120px;
    height: 120px;
  }

  .help-cta-glow-2 {
    width: 100px;
    height: 100px;
  }
}

/* ══════════════════════════════════════════════════════════
   RAJPUTI WEAR PAGE — rajputi-wear.php
   ══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.rw-breadcrumb {
  background: #fdf8f2;
  border-bottom: 1px solid rgba(198, 167, 94, .15);
  padding: .6rem 0;
}

.rw-breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .82rem;
}

.rw-breadcrumb-list a {
  color: var(--primary, #6b0f1a);
  text-decoration: none;
}

.rw-breadcrumb-list a:hover {
  text-decoration: underline;
}

.rw-breadcrumb-list li:last-child {
  color: #888;
}

/* Intro Section */
.rw-intro-section {
  background: #fdf8f2;
}

.rw-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}

.rw-intro-text .section-title {
  margin-bottom: .8rem;
}

.rw-intro-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rw-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.rw-intro-tags span {
  padding: .3rem .75rem;
  background: rgba(107, 15, 26, .07);
  color: var(--primary, #6b0f1a);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(107, 15, 26, .12);
}

.rw-intro-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Stats */
.rw-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  min-width: 200px;
}

.rw-stat {
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .2);
  border-radius: 14px;
  padding: 1rem .8rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(107, 15, 26, .05);
}

.rw-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary, #6b0f1a);
  line-height: 1;
  margin-bottom: .3rem;
}

.rw-stat-label {
  font-size: .72rem;
  color: #888;
  font-weight: 600;
  letter-spacing: .03em;
}

/* Subcategory alternating sections */

.rw-subcat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.rw-subcat-reverse {
  direction: rtl;
}

.rw-subcat-reverse>* {
  direction: ltr;
}

/* Image panel */
.rw-subcat-images {
  position: relative;
}

.rw-subcat-main-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(107, 15, 26, .12);
  aspect-ratio: 4/5;
}

.rw-subcat-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rw-subcat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: .3rem .8rem;
  background: linear-gradient(135deg, #c6a75e, #d9bf7f);
  color: #2e1f08;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(198, 167, 94, .4);
}

.rw-subcat-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.rw-subcat-thumbs img {
  border-radius: 10px;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}

.rw-subcat-thumbs img:hover {
  border-color: var(--accent, #c6a75e);
  transform: translateY(-2px);
}

/* Text panel */
.rw-subcat-text {
  padding-top: .5rem;
}

.rw-subcat-text .eyebrow-sm {
  margin-bottom: .4rem;
}

.rw-subcat-title {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  color: var(--primary, #6b0f1a);
  margin: .3rem 0 .9rem;
  font-weight: 800;
  line-height: 1.25;
}

.rw-subcat-desc {
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: .95rem;
}

.rw-subcat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.2rem;
}

.rw-tag {
  padding: .28rem .7rem;
  background: rgba(198, 167, 94, .12);
  border: 1px solid rgba(198, 167, 94, .3);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  color: #5a3a12;
}

.rw-subcat-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.2rem;
  padding: .7rem 1rem;
  background: rgba(107, 15, 26, .04);
  border-left: 3px solid var(--accent, #c6a75e);
  border-radius: 0 10px 10px 0;
}

.rw-price-label {
  font-size: .8rem;
  color: #888;
}

.rw-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary, #6b0f1a);
}

.rw-subcat-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

/* Why Grid */
.rw-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: .5rem;
}

.rw-why-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.rw-why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: .7rem;
}

.rw-why-card h3 {
  color: #f1ddb0;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.rw-why-card p {
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
  line-height: 1.6;
}

/* CTA Strip */
.rw-cta-strip {
  background: linear-gradient(135deg, var(--primary, #6b0f1a), #4a0810);
}

.rw-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.rw-cta-inner h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: .3rem;
}

.rw-cta-inner p {
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
}

.rw-cta-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Collections featured card */
.collection-card-featured {
  position: relative;
}

.collection-featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #c6a75e, #d9bf7f);
  color: #2e1f08;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(198, 167, 94, .4);
  z-index: 2;
}

/* ── Responsive: Rajputi Wear Page ─────────────────────── */
@media (max-width: 1024px) {
  .rw-subcat-grid {
    gap: 2rem;
  }

  .rw-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rw-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rw-intro-stats {
    grid-template-columns: repeat(4, 1fr);
    min-width: unset;
  }

  .rw-stat {
    padding: .7rem .5rem;
  }

  .rw-stat-num {
    font-size: 1.2rem;
  }

  .rw-subcat-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rw-subcat-reverse {
    direction: ltr;
  }

  .rw-subcat-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .rw-subcat-title {
    font-size: 1.3rem;
  }

  .rw-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .rw-why-card {
    padding: 1rem;
  }

  .rw-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .rw-cta-btns {
    justify-content: center;
  }

  .rw-cta-inner h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .rw-intro-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-stat-num {
    font-size: 1.1rem;
  }

  .rw-subcat-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .rw-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rw-why-icon {
    font-size: 1.5rem;
  }

  .rw-why-card h3 {
    font-size: .85rem;
  }

  .rw-why-card p {
    font-size: .78rem;
  }

  .rw-subcat-actions {
    flex-direction: column;
  }

  .rw-subcat-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════
   MAIN CATEGORY CARDS (mc-) — Homepage "Our Collections"
   ══════════════════════════════════════════════════════════ */
.mc-section {
  background: #fff;
}

.mc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.mc-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

.mc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.mc-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.mc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.mc-card:hover .mc-card-img img {
  transform: scale(1.06);
}

.mc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(var(--mc, 107, 15, 26), .5));
  opacity: 0;
  transition: opacity .35s;
}

.mc-card:hover .mc-card-overlay {
  opacity: 1;
}

.mc-card-body {
  padding: 1rem 1rem .9rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.mc-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.mc-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a0a0e;
  line-height: 1.25;
  margin: 0;
}

.mc-desc {
  font-size: .8rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.mc-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary, #6b0f1a);
  letter-spacing: .02em;
}

/* ── Brands Strip ────────────────────────────── */
.brands-strip-section {
  background: #fdf8f2;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.brands-strip-label {
  font-size: .82rem;
  color: #888;
  margin-bottom: .75rem;
  font-weight: 600;
  text-align: center;
}

.brands-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
}

.brands-strip-item {
  padding: .5rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .25);
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 700;
  color: #3a2a12;
  box-shadow: 0 2px 8px rgba(198, 167, 94, .12);
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s;
}

.brands-strip-item:hover {
  background: linear-gradient(135deg, #c6a75e, #d9bf7f);
  color: #2e1f08;
  transform: translateY(-2px);
}

/* ── brands-grid (Gents Wear Page) ──────────── */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}

.brand-chip {
  padding: .7rem 1.5rem;
  background: linear-gradient(135deg, #c6a75e20, #d9bf7f18);
  border: 1.5px solid rgba(198, 167, 94, .3);
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 800;
  color: #3a2a12;
  letter-spacing: .03em;
}

/* ══════════════════════════════════════════════════════════
   WE-CARD grid — Women Ethnic, Gents Wear, Winter, Fabric pages
   ══════════════════════════════════════════════════════════ */
.we-group-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
}

.we-group-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.we-group-head .section-title {
  margin: 0;
  flex-shrink: 0;
}

.we-subcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.we-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.we-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(107, 15, 26, .1);
}

.we-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1a0a0e;
}

.we-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.we-card:hover .we-card-img img {
  transform: scale(1.06);
}

.we-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 3, 5, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.we-card:hover .we-card-overlay {
  opacity: 1;
}

.we-card-body {
  padding: .9rem .85rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .3rem;
}

.we-card-body h3 {
  font-size: .92rem;
  font-weight: 800;
  color: #1a0a0e;
  margin: 0;
  line-height: 1.3;
}

.we-card-body p {
  font-size: .75rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.we-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .3rem;
}

.we-card-tags span {
  padding: .18rem .5rem;
  background: rgba(198, 167, 94, .1);
  border: 1px solid rgba(198, 167, 94, .2);
  border-radius: 12px;
  font-size: .65rem;
  font-weight: 600;
  color: #5a3a12;
}

.we-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .6rem;
  padding-top: .6rem;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.we-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary, #6b0f1a);
}

/* ── Responsive: mc-grid & we-subcat-grid ────── */
@media (max-width: 1100px) {
  .mc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .we-subcat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .mc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mc-title {
    font-size: .9rem;
  }

  .mc-desc {
    font-size: .75rem;
  }

  .we-subcat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .we-group-head {
    gap: .6rem;
  }

  .we-group-icon {
    font-size: 1.5rem;
  }

  .brands-strip-item {
    font-size: .8rem;
    padding: .4rem 1rem;
  }
}

@media (max-width: 480px) {
  .mc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mc-icon {
    font-size: 1.2rem;
  }

  .mc-card-body {
    padding: .7rem .7rem .65rem;
    gap: .2rem;
  }

  .mc-title {
    font-size: .82rem;
  }

  .mc-desc {
    display: none;
  }

  .mc-cta {
    font-size: .72rem;
  }

  .we-subcat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .we-card-body h3 {
    font-size: .8rem;
  }

  .we-card-body p {
    display: none;
  }

  .we-price {
    font-size: .88rem;
  }

  .we-card-tags {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   MEGA-MENU — Collections Dropdown
   ══════════════════════════════════════════════════════════ */

/* The .dropdown-menu is toggled by .open on parent .nav-dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .14), 0 1px 3px rgba(0, 0, 0, .06);
  border: 1px solid rgba(198, 167, 94, .15);
  z-index: 999;
  min-width: 220px;
  overflow: hidden;
  animation: menuDrop .22s ease;
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

/* ── Mega layout: 2 columns ──────────────────────────────── */
.mega-menu {
  display: none;
  flex-direction: row;
  min-width: 520px;
  padding: 0;
}

.nav-dropdown.open .mega-menu {
  display: flex;
}

.mega-col {
  flex: 1;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.mega-col+.mega-col {
  border-left: 1px solid rgba(198, 167, 94, .15);
  background: #fdf8f2;
}

.mega-group-label {
  font-size: .67rem;
  font-weight: 800;
  color: #aaa;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 0 .3rem .4rem;
  margin-bottom: .3rem;
  border-bottom: 1px solid rgba(198, 167, 94, .2);
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .55rem;
  border-radius: 8px;
  font-size: .84rem;
  color: #2c1810;
  text-decoration: none;
  font-weight: 500;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

.mega-col a:hover {
  background: rgba(107, 15, 26, .07);
  color: var(--primary, #6b0f1a);
}

.mega-all {
  font-weight: 800 !important;
  color: var(--primary, #6b0f1a) !important;
  background: rgba(107, 15, 26, .05);
  margin-bottom: .3rem;
}

.mega-all:hover {
  background: rgba(107, 15, 26, .12) !important;
}


/* ══════════════════════════════════════════════════════════
   BRAND LOGO CARDS — "Top Brands We Carry"
   ══════════════════════════════════════════════════════════ */
.brand-logos-section {
  background: linear-gradient(135deg, #fff 0%, #fdf8f2 100%);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.2rem 1rem;
  background: #fff;
  border: 1px solid rgba(198, 167, 94, .2);
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  text-decoration: none;
  text-align: center;
  gap: .6rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}

.brand-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 167, 94, .06), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.brand-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .10);
  border-color: rgba(198, 167, 94, .45);
}

.brand-logo-card:hover::before {
  opacity: 1;
}

.blc-logo {
  width: 100%;
  max-width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blc-logo svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.blc-tagline {
  font-size: .72rem;
  font-weight: 600;
  color: #999;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .blc-logo {
    height: 52px;
  }
}

@media (max-width: 600px) {
  .brand-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-logo-card {
    padding: 1.1rem .8rem .8rem;
  }

  .blc-logo {
    height: 44px;
  }

  .blc-tagline {
    font-size: .66rem;
  }
}

/* -- Brand Logo Card compact non-clickable --
.brand-logo-card { cursor:default; padding:.9rem .9rem .65rem; }
.brand-logo-card:hover { transform:none; box-shadow:0 4px 20px rgba(0,0,0,.05); border-color:rgba(198,167,94,.2); }
.brand-logo-card:hover::before { opacity:0; }
.blc-logo { height:50px; }
.brand-logo-grid { gap:12px; }
@media(max-width:900px){.blc-logo{height:42px;}}
@media(max-width:600px){.blc-logo{height:36px;}.brand-logo-card{padding:.7rem .6rem .5rem;}}


/* ══════════════════════════════════════════════════════════
   RIGHT-SIDE DRAWER MENU (mobile ≤ 768px)
   ══════════════════════════════════════════════════════════ */

/* ── Hide drawer + overlay on desktop ─────────────────── */
.drawer,
.drawer-overlay {
  display: none;
}

@media (max-width: 768px) {

  /* ── Hide desktop nav on mobile ──────────────────────── */
  .desktop-nav {
    display: none !important;
  }

  /* ── Menu toggle button ─────────────────────────────── */
  .menu-toggle {
    display: flex !important;
  }

  /* ── Drawer panel ───────────────────────────────────── */
  .drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    max-height: 100dvh;
    background: linear-gradient(170deg, #1a0812 0%, #2e0f18 50%, #200a10 100%);
    border-left: 2px solid rgba(198, 167, 94, .3);
    border-bottom: 2px solid rgba(198, 167, 94, .3);
    border-radius: 0 0 0 18px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .5);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
  }

  .drawer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    aspect-ratio: 1;
    background: url('../../media/icon.png') center / contain no-repeat;
    opacity: .06;
    pointer-events: none;
    z-index: 0;
  }

  .drawer-header,
  .drawer-body {
    position: relative;
    z-index: 1;
  }

  .drawer.open {
    transform: translateX(0);
  }

  /* ── Overlay backdrop ───────────────────────────────── */
  .drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  body.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Body scroll lock ───────────────────────────────── */
  body.drawer-open {
    overflow: hidden;
  }

  /* ── Drawer header ──────────────────────────────────── */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(198, 167, 94, .2);
    flex-shrink: 0;
  }

  .drawer-brand {
    display: flex;
    flex-direction: column;
  }

  .drawer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #f0e6d4;
    line-height: 1.2;
  }

  .drawer-brand-sub {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(198, 167, 94, .7);
    margin-top: 1px;
  }

  .drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(198, 167, 94, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: #f0e6d4;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
  }

  .drawer-close:hover {
    background: rgba(198, 167, 94, .15);
    border-color: rgba(198, 167, 94, .5);
  }

  /* ── Drawer body (scrollable) ───────────────────────── */
  .drawer-body {
    overflow-y: auto;
    padding: 8px 0 12px;
    -webkit-overflow-scrolling: touch;
  }

  /* ── Nav links ──────────────────────────────────────── */
  .drawer-link,
  .accordion-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: .7rem 1.25rem;
    font-size: .88rem;
    font-weight: 500;
    color: #f0e6d4;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background .18s, color .18s;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    letter-spacing: .01em;
  }

  .drawer-link:hover,
  .accordion-toggle:hover {
    background: rgba(198, 167, 94, .08);
    color: #c6a75e;
  }

  /* Active link */
  .drawer-link.active {
    color: #c6a75e;
    background: rgba(198, 167, 94, .1);
    font-weight: 600;
    border-left: 3px solid #c6a75e;
  }

  /* ── Accordion ──────────────────────────────────────── */
  .accordion-toggle {
    justify-content: space-between;
    font-family: inherit;
    text-align: left;
  }

  .accordion-arrow {
    font-size: 1.1rem;
    color: rgba(198, 167, 94, .6);
    transition: transform .3s ease;
    display: inline-block;
    line-height: 1;
  }

  .drawer-accordion.expanded .accordion-arrow {
    transform: rotate(90deg);
    color: #c6a75e;
  }

  .drawer-accordion.expanded .accordion-toggle {
    color: #c6a75e;
    background: rgba(198, 167, 94, .06);
  }

  /* ── Accordion panel ────────────────────────────────── */
  .accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
    background: rgba(0, 0, 0, .15);
  }

  .drawer-accordion.expanded .accordion-panel {
    max-height: 600px;
  }

  /* ── Accordion links ────────────────────────────────── */
  .accordion-panel a {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.25rem .5rem 2rem;
    font-size: .82rem;
    font-weight: 400;
    color: rgba(240, 230, 212, .8);
    text-decoration: none;
    transition: background .15s, color .15s;
    border-bottom: 1px solid rgba(255, 255, 255, .02);
  }

  .accordion-panel a:hover {
    background: rgba(198, 167, 94, .1);
    color: #c6a75e;
  }

  .accordion-panel a:first-child {
    padding-top: .65rem;
  }

  .accordion-panel a:last-child {
    padding-bottom: .65rem;
    border-bottom: none;
  }
}

/* ══════════════════════════════════════════════════════════
   HOME ABOUT US CARD
   ══════════════════════════════════════════════════════════ */

.home-about-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(198, 167, 94, .2);
  box-shadow:
    0 20px 60px rgba(107, 15, 26, .07),
    0 0 0 1px rgba(198, 167, 94, .08);
  overflow: hidden;
  padding: 3rem;
}

/* Brand watermark */
.home-about-watermark {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  background: url('../../media/icon.png') center / contain no-repeat;
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}

.home-about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image column */
.home-about-img-col {
  display: flex;
  justify-content: center;
}

.home-about-img-wrap {
  position: relative;
  width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(107, 15, 26, .12);
  border: 3px solid rgba(198, 167, 94, .25);
}

.home-about-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* Floating badge */
.home-about-img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, #6b0f1a, #8b1a2e);
  color: #fff;
  padding: .5rem .8rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(107, 15, 26, .3);
  line-height: 1;
}

.home-about-img-badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #c6a75e;
}

.home-about-img-badge small {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
  color: rgba(255, 255, 255, .85);
}

/* Text column */
.home-about-text-col .eyebrow-sm {
  margin-bottom: .3rem;
}

.home-about-text-col .section-title {
  margin-bottom: .8rem;
}

.home-about-text-col p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: .6rem;
}

/* Stats row */
.home-about-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(198, 167, 94, .18);
  border-bottom: 1px solid rgba(198, 167, 94, .18);
}

.home-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.home-about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.home-about-stat-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* Action buttons */
.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid #e0d0b3;
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: rgba(107, 15, 26, .04);
  border-color: var(--primary);
}

.btn-wa-sm {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: none;
  font-size: .88rem;
}

.btn-wa-sm:hover {
  background: #1ebe5a;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 900px) {
  .home-about-card {
    padding: 2rem 1.5rem;
  }

  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    text-align: center;
  }

  .home-about-img-wrap {
    width: 220px;
    margin: 0 auto;
  }

  .home-about-watermark {
    width: 200px;
    height: 200px;
    right: -8%;
    opacity: .05;
  }

  .home-about-stats {
    gap: .8rem;
  }

  .home-about-stat-num {
    font-size: 1.15rem;
  }

  .home-about-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-about-card {
    padding: 1.4rem 1rem;
    border-radius: 18px;
  }

  .home-about-img-wrap {
    width: 180px;
  }

  .home-about-stat-num {
    font-size: 1rem;
  }

  .home-about-stat-label {
    font-size: .6rem;
  }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM HERO SECTION
   ══════════════════════════════════════════════════════════ */

/* ── Keyframes ────────────────────────────────────────── */
@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ledPulse {

  0%,
  100% {
    box-shadow: 0 0 18px 4px rgba(198, 167, 94, .45), 0 0 40px 10px rgba(198, 167, 94, .2);
  }

  50% {
    box-shadow: 0 0 28px 8px rgba(198, 167, 94, .7), 0 0 60px 18px rgba(198, 167, 94, .35);
  }
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(12px, -18px) scale(1.06);
  }
}

@keyframes ownerGlow {

  0%,
  100% {
    opacity: .55;
  }

  50% {
    opacity: .85;
  }
}

@keyframes premScroll {

  0%,
  100% {
    opacity: .5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}

@keyframes ringCounterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes particleOrbit {
  from {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes particlePulse {

  0%,
  100% {
    opacity: .9;
    transform: scale(1);
    box-shadow: 0 0 6px 2px rgba(198, 167, 94, .8);
  }

  50% {
    opacity: .4;
    transform: scale(.5);
    box-shadow: 0 0 2px 1px rgba(198, 167, 94, .3);
  }
}

@keyframes scanSweep {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

  90% {
    opacity: .6;
  }

  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes logoBreath {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(198, 167, 94, .55)) brightness(1.35);
  }

  50% {
    transform: scale(1.09);
    filter: drop-shadow(0 0 22px rgba(198, 167, 94, .95)) brightness(1.65);
  }
}

@keyframes wallRadiance {

  0%,
  100% {
    opacity: .4;
    transform: scale(1);
  }

  50% {
    opacity: .75;
    transform: scale(1.12);
  }
}

/* ── Section ──────────────────────────────────────────── */
.prem-hero {
  position: relative;
  min-height: 100dvh;
  background: linear-gradient(135deg, #0e0409 0%, #1a0610 35%, #200910 60%, #13040a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Ambient orbs */
.prem-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 9s ease-in-out infinite;
}

.prem-hero-orb1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(198, 167, 94, .18) 0%, transparent 70%);
}

.prem-hero-orb2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: 8%;
  background: radial-gradient(circle, rgba(107, 15, 26, .35) 0%, transparent 70%);
  animation-delay: -4.5s;
}

/* ── 3-column grid ────────────────────────────────────── */
.prem-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  align-items: center;
  gap: 2rem;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

/* ── LEFT — Owner photo ───────────────────────────────── */
.prem-col-owner {
  display: flex;
  justify-content: center;
}

.prem-owner-wrap {
  position: relative;
  width: 300px;
}

.prem-owner-glow {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  background: radial-gradient(ellipse at center, rgba(198, 167, 94, .22) 0%, transparent 70%);
  animation: ownerGlow 5s ease-in-out infinite;
}

.prem-owner-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border: 2px solid rgba(198, 167, 94, .35);
  box-shadow:
    0 0 0 6px rgba(198, 167, 94, .08),
    0 24px 60px rgba(0, 0, 0, .7);
  display: block;
}

.prem-owner-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(135deg, rgba(30, 10, 15, .92), rgba(50, 18, 24, .95));
  border: 1px solid rgba(198, 167, 94, .4);
  border-radius: 12px;
  padding: .55rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

.prem-owner-tag-line1 {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: .75rem;
  font-weight: 700;
  color: #c6a75e;
  letter-spacing: .06em;
}

.prem-owner-tag-line2 {
  display: block;
  font-size: .6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .12em;
  margin-top: 2px;
}

/* ── CENTER — Headline ────────────────────────────────── */
.prem-col-center {
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
}

.prem-center-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(198, 167, 94, .08) 0%, transparent 70%);
  pointer-events: none;
}

.prem-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(198, 167, 94, .75);
  margin: 0 0 .8rem;
}

.prem-title {
  font-family: 'Playfair Display', serif;
  margin: 0;
  line-height: 1.08;
}

.prem-title-line1 {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #f0e6d4;
  text-shadow: 0 2px 20px rgba(198, 167, 94, .3);
}

.prem-title-line2 {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #c6a75e 0%, #f4d896 40%, #c6a75e 70%, #e8c97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.prem-tagline {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(240, 230, 212, .6);
  letter-spacing: .08em;
  margin: .8rem 0 0;
}

.prem-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1.2rem auto;
  width: 80%;
}

.prem-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 167, 94, .5), transparent);
}

.prem-divider i {
  font-style: normal;
  color: rgba(198, 167, 94, .8);
  font-size: .8rem;
}

.prem-actions {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .2rem;
}

.prem-btn {
  min-height: 46px;
  border-radius: 12px;
  padding: .7rem 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  border: none;
  cursor: pointer;
}

.prem-btn:hover {
  transform: translateY(-3px);
}

.prem-btn-gold {
  background: linear-gradient(135deg, #c6a75e, #e8d080, #c6a75e);
  background-size: 200% 100%;
  color: #2e1f08;
  box-shadow: 0 4px 20px rgba(198, 167, 94, .35);
  animation: goldShine 3s linear infinite;
}

@keyframes goldShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.prem-btn-outline {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(198, 167, 94, .45);
  color: #f0e6d4;
  backdrop-filter: blur(6px);
}

.prem-btn-outline:hover {
  background: rgba(198, 167, 94, .1);
}

.prem-location {
  font-size: .72rem;
  color: rgba(240, 230, 212, .45);
  margin: 1rem 0 0;
  letter-spacing: .04em;
}

/* ── RIGHT — Logo Board ───────────────────────────────── */
.prem-col-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.prem-logo-scene {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wall radiance behind logo */
.prem-wall-glow {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(198, 167, 94, .18) 0%, rgba(107, 15, 26, .08) 50%, transparent 70%);
  filter: blur(28px);
  animation: wallRadiance 4s ease-in-out infinite;
}

/* ── Ring 1: slow clockwise conic ── */
.prem-ring-outer {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.prem-ring-track {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    linear-gradient(#120509, #120509) padding-box,
    conic-gradient(rgba(198, 167, 94, 1) 0deg,
      rgba(240, 210, 120, .8) 45deg,
      rgba(198, 167, 94, .4) 90deg,
      rgba(198, 167, 94, .05) 150deg,
      rgba(198, 167, 94, .05) 210deg,
      rgba(198, 167, 94, .4) 270deg,
      rgba(240, 210, 120, .8) 315deg,
      rgba(198, 167, 94, 1) 360deg) border-box;
  box-shadow: 0 0 18px rgba(198, 167, 94, .3), inset 0 0 10px rgba(198, 167, 94, .1);
}

/* ── Ring 2: faster counter-clockwise dashed ── */
.prem-ring-inner {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: ringCounterRotate 5s linear infinite;
  z-index: 1;
}

.prem-ring-dashed {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px dashed rgba(198, 167, 94, .35);
  box-shadow: 0 0 8px rgba(198, 167, 94, .15);
}

/* ── Orbiting particle dots ── */
.prem-particles {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}

.prem-p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4d896 0%, #c6a75e 60%, transparent 100%);
  margin: -3.5px 0 0 -3.5px;
  animation: particleOrbit 6s linear infinite, particlePulse 2s ease-in-out infinite;
}

/* Stagger positions & speeds */
.prem-p1 {
  animation-delay: 0s, 0s;
}

.prem-p2 {
  animation-delay: -1.5s, -0.5s;
}

.prem-p3 {
  animation-delay: -3s, -1s;
}

.prem-p4 {
  animation-delay: -4.5s, -1.5s;
}

/* ── LED pulsing rim ── */
.prem-led-rim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(198, 167, 94, .4);
  animation: ledPulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 4;
}

/* ── Radar scan sweep inside board ── */
.prem-scan-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.prem-scan-sweep::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg,
      rgba(198, 167, 94, .0) 0deg,
      rgba(198, 167, 94, .18) 20deg,
      rgba(198, 167, 94, .0) 40deg);
  animation: scanSweep 4s linear infinite;
}

/* Circular logo board */
.prem-logo-board {
  width: 252px;
  height: 252px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 35% 30%, #2a1020 0%, #160a12 50%, #0e0509 100%);
  border: 1.5px solid rgba(198, 167, 94, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 4px rgba(198, 167, 94, .06),
    inset 0 0 40px rgba(198, 167, 94, .07),
    0 20px 50px rgba(0, 0, 0, .7);
}

.prem-logo-board-inner {
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prem-logo-img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
  margin: 0 auto .4rem;
  animation: logoBreath 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.prem-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: .78rem;
  font-weight: 700;
  color: #f0e6d4;
  letter-spacing: .05em;
  margin: 0;
  text-shadow: 0 0 10px rgba(198, 167, 94, .4);
}

.prem-logo-sub {
  font-size: .85rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c6a75e, #f4d896, #c6a75e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .14em;
  margin: 0 0 .3rem;
}

.prem-logo-glow-line {
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 167, 94, .7), transparent);
  margin: .3rem auto;
}

.prem-logo-phone {
  font-size: .65rem;
  color: rgba(240, 230, 212, .7);
  letter-spacing: .04em;
  margin: 0;
}

/* ── Scroll hint ──────────────────────────────────────── */
.prem-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.prem-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(198, 167, 94, .8), transparent);
  animation: premScroll 1.8s ease-in-out infinite;
}

.prem-scroll-text {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(198, 167, 94, .6);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

  /* Remove full-height constraint on tablet/mobile */
  .prem-hero {
    min-height: unset;
    padding: 0;
  }

  .prem-hero-grid {
    grid-template-columns: 1fr;
    padding: 36px 16px 48px;
    gap: 1.4rem;
    text-align: center;
  }

  /* Order: headline → logo → photo */
  .prem-col-center {
    order: 1;
  }

  .prem-col-logo {
    order: 2;
  }

  .prem-col-owner {
    order: 3;
  }

  .prem-owner-wrap {
    width: 180px;
    margin: 0 auto;
  }

  /* Shrink owner photo aspect on tablet */
  .prem-owner-img {
    aspect-ratio: 4 / 3;
  }

  .prem-logo-scene {
    width: 200px;
    height: 200px;
  }

  .prem-logo-board {
    width: 178px;
    height: 178px;
  }

  .prem-logo-img {
    width: 55px;
    height: 55px;
  }

  .prem-scroll-hint {
    display: none;
  }
}

@media (max-width: 600px) {
  .prem-hero-grid {
    padding: 24px 16px 36px;
    gap: 1rem;
  }

  /* Hide owner photo entirely on small phones to save space */
  .prem-col-owner {
    display: none;
  }

  .prem-title-line1 {
    font-size: 1.6rem;
  }

  .prem-title-line2 {
    font-size: 2rem;
  }

  .prem-tagline {
    font-size: .72rem;
  }

  .prem-eyebrow {
    font-size: .6rem;
  }

  .prem-logo-scene {
    width: 170px;
    height: 170px;
  }

  .prem-logo-board {
    width: 150px;
    height: 150px;
  }

  .prem-logo-img {
    width: 46px;
    height: 46px;
  }

  .prem-logo-name {
    font-size: .65rem;
  }

  .prem-logo-sub {
    font-size: .68rem;
  }

  .prem-divider {
    width: 90%;
    margin: .8rem auto;
  }

  .prem-actions {
    gap: .5rem;
    margin-top: .4rem;
  }

  .prem-btn {
    min-height: 40px;
    padding: .55rem 1rem;
    font-size: .82rem;
    border-radius: 10px;
  }

  .prem-location {
    font-size: .65rem;
    margin-top: .6rem;
  }
}