/* ═══════════════════════════════════════════════════════════
   AKARSSINI — Aavaran Design System
   Premium Luxury Indian Saree E-Commerce
   ═══════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ── */
:root {
  --gold:        #D4AF37;
  --gold-deep:   #B8860B;
  --gold-light:  #F0D060;
  --ivory:       #FAF6EF;
  --blush:       #F2D9D0;
  --rose:        #8B3A52;
  --rose-light:  #C9A0A8;
  --charcoal:    #1C1C1E;
  --cream:       #FFFDF9;
  --muted:       #6B6560;
  --border:      rgba(212,175,55,0.25);
  --shadow:      0 8px 40px rgba(139,58,82,0.08);

  /* Legacy aliases */
  --color-primary:    var(--rose);
  --color-gold:       var(--gold);
  --color-ivory:      var(--ivory);
  --color-text:       var(--charcoal);
  --color-text-muted: var(--muted);
  --transition:       0.3s cubic-bezier(0.4,0,0.2,1);

  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-accent:  'Playfair Display', serif;
}

/* ── 2. CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── 3. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }

/* ── 4. TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6,.display-font {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
  color: var(--charcoal);
}

.font-display  { font-family: var(--font-display) !important; }
.font-accent   { font-family: var(--font-accent) !important; font-style: italic; }
.font-body-reg { font-family: var(--font-body) !important; font-style: normal; font-weight: 400; }

/* Bootstrap typography overrides */
.fw-300 { font-weight: 300 !important; }
.text-muted, .text-muted * { color: var(--muted) !important; }
.text-rose  { color: var(--rose)  !important; }
.text-gold  { color: var(--gold)  !important; }

/* ── Auth pages (login/register) ── */
.auth-shell {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: #faf6f0;
}

.auth-wrap {
  width: 100%;
  max-width: 420px;
}

.auth-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-brand__logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: 0 auto 0.85rem;
  display: block;
}

.auth-brand__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.85rem;
  color: #2c1a08;
  margin-bottom: 0.25rem;
}

.auth-brand__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8882a;
  font-weight: 500;
}

.auth-card {
  background: #fff;
  border: 1px solid #d4b896;
  padding: 2.25rem;
}

.auth-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.25rem;
}

.auth-card__sub {
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.auth-alert {
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.84rem;
  border-left-width: 3px;
  border-left-style: solid;
}

.auth-alert--error {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-left-color: #c62828;
  color: #c62828;
}

.auth-btn {
  border-radius: 2px;
  font-size: 0.82rem;
  padding: 0.8rem;
}

.auth-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.auth-footnote {
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

.auth-link {
  color: var(--rose);
  font-weight: 500;
}

.auth-safe {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
}

.auth-safe__icon {
  color: var(--gold-deep);
}

/* Login — centered single column (legacy; omit .auth-shell--split) */
.auth-shell--login:not(.auth-shell--split) {
  position: relative;
  min-height: auto;
  isolation: isolate;
  background: #faf6f0;
  padding-top: 0;
  padding-bottom: 0;
}

.auth-shell--login:not(.auth-shell--split)::before {
  content: "";
  position: fixed;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  max-width: min(280px, 70vw);
  max-height: min(280px, 70vw);
  background: url("../images/ashoka.png") no-repeat center / contain;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.auth-shell--login:not(.auth-shell--split)::after {
  content: "";
  position: fixed;
  bottom: 60px;
  left: 50px;
  width: 70px;
  height: 70px;
  background: url("../images/phula.png") no-repeat center / contain;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.auth-shell--login:not(.auth-shell--split) .auth-wrap::before {
  content: "";
  position: fixed;
  top: 120px;
  right: 50px;
  width: 60px;
  height: 60px;
  background: url("../images/phula.png") no-repeat center / contain;
  opacity: 0.07;
  transform: rotate(180deg);
  z-index: 0;
  pointer-events: none;
}

.auth-shell--login:not(.auth-shell--split) .auth-wrap {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.auth-shell--login:not(.auth-shell--split) .auth-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #e8d9c0;
  border-top: 3px solid #b8882a;
  border-radius: 0;
  padding: 40px 40px 36px;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
}

.auth-shell--login:not(.auth-shell--split) .auth-card__title {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  color: #2c1a08;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  text-align: center;
}

.auth-shell--login:not(.auth-shell--split) .auth-card__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1.5px;
  background: #b8882a;
  margin: 10px auto 6px;
}

.auth-shell--login:not(.auth-shell--split) .auth-card__sub {
  font-size: 12px;
  color: #a07840;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  margin-top: 0;
  font-weight: 400;
  text-align: center;
}

.auth-shell--login:not(.auth-shell--split) .auth-card .form-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7a5c3a;
  font-weight: 500;
  margin-bottom: 6px;
}

.auth-shell--login:not(.auth-shell--split) .auth-card .form-control {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #d4b896;
  border-radius: 0;
  padding: 10px 2px;
  font-size: 14px;
  color: #2c1a08;
  width: 100%;
  box-shadow: none;
}

.auth-shell--login:not(.auth-shell--split) .auth-card .form-control:focus {
  border-bottom-color: #b8882a;
  outline: none;
  box-shadow: none;
  background: transparent;
  color: #2c1a08;
}

.auth-shell--login:not(.auth-shell--split) .auth-btn,
.auth-shell--login:not(.auth-shell--split) .auth-card .auth-btn {
  background: #5a3a1a !important;
  color: #faf6f0 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  margin-top: 28px !important;
  transition: background 0.2s;
}

.auth-shell--login:not(.auth-shell--split) .auth-btn:hover,
.auth-shell--login:not(.auth-shell--split) .auth-card .auth-btn:hover {
  background: #b8882a !important;
  color: #faf6f0 !important;
  transform: none;
  box-shadow: none;
}

.auth-shell--login:not(.auth-shell--split) .auth-btn:focus-visible {
  outline: 2px solid #b8882a;
  outline-offset: 2px;
}

.auth-shell--login:not(.auth-shell--split) .auth-footnote {
  font-size: 13px;
  color: #7a5c3a;
}

.auth-shell--login:not(.auth-shell--split) .auth-link {
  font-size: 13px;
  color: #5a3a1a;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #b8882a;
}

.auth-shell--login:not(.auth-shell--split) .auth-link:hover {
  color: #5a3a1a;
  text-decoration-color: #b8882a;
}

.auth-shell--login:not(.auth-shell--split) .auth-safe {
  font-size: 11px;
  color: #a07840;
  margin-top: 16px;
}

.auth-shell--login:not(.auth-shell--split) .auth-safe__icon {
  color: #a07840;
}

@media (max-width: 575.98px) {
  .auth-shell--login:not(.auth-shell--split)::after {
    bottom: 48px;
    left: 24px;
    width: 56px;
    height: 56px;
  }
  .auth-shell--login:not(.auth-shell--split) .auth-wrap::before {
    top: 100px;
    right: 24px;
    width: 52px;
    height: 52px;
  }
  .auth-shell--login:not(.auth-shell--split) .auth-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Login — split screen: trending (left) + form with logo (right) */
.auth-shell--login.auth-shell--split {
  min-height: auto;
  padding: 0;
  display: block;
  background: #0f0b09;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  box-sizing: border-box;
}

.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  align-items: stretch;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.auth-split__visual {
  position: relative;
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 15% 10%, rgba(184, 136, 42, 0.09) 0%, transparent 45%),
    radial-gradient(ellipse 70% 60% at 90% 95%, rgba(139, 58, 82, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #0e0a08 0%, #16110e 40%, #221a15 100%);
}

.auth-split__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(184, 136, 42, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(139, 58, 82, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Auth split: looping video visual */
.auth-split__visual--video {
  padding: 0;
  justify-content: center;
  align-items: stretch;
}

.auth-visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-visual-video__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(184, 136, 42, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 95%, rgba(139, 58, 82, 0.12) 0%, transparent 60%),
    linear-gradient(165deg, rgba(14, 10, 8, 0.6) 0%, rgba(22, 17, 14, 0.5) 40%, rgba(34, 26, 21, 0.35) 100%);
  pointer-events: none;
}

.auth-split__visual::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -25%;
  width: 70%;
  height: 70%;
  background: url("../images/phula.png") no-repeat center / contain;
  opacity: 0.04;
  transform: rotate(-12deg);
  pointer-events: none;
}

.auth-trending__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.auth-trending__label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 216, 152, 0.88);
  margin: 0 0 1rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
}

/* Two separate cards: diagonal flow (grid), full images — no clip-path */
.auth-trending__flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 1.75rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0.35rem 0 0.35rem;
}

/* Register page: three cards — alternating left / right / left */
.auth-trending__flow--three {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
}

.auth-trending__flow--three .auth-trend-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  z-index: 2;
}

.auth-trending__flow--three .auth-trend-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  margin-top: -0.85rem;
  position: relative;
  z-index: 1;
}

.auth-trending__flow--three .auth-trend-card:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
  margin-top: -0.85rem;
  position: relative;
  z-index: 1;
}

.auth-trend-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 232px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.auth-trend-card--pos-tl {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  z-index: 2;
}

.auth-trend-card--pos-br {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin-top: -3.5rem;
  position: relative;
  z-index: 1;
}

.auth-trend-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(240, 216, 152, 0.38);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.48),
    0 8px 20px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-trend-card:focus-visible {
  outline: 2px solid rgba(240, 216, 152, 0.9);
  outline-offset: 4px;
}

.auth-trend-card__img {
  aspect-ratio: 3/4;
  flex-shrink: 0;
  overflow: hidden;
  background: #0c0907;
}

.auth-trend-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.auth-trend-card:hover .auth-trend-card__img img {
  transform: scale(1.07);
}

.auth-trend-card__ph {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(160deg, rgba(139, 58, 82, 0.35), rgba(42, 33, 26, 0.95));
}

.auth-trend-card__body {
  flex-shrink: 0;
  padding: 0.65rem 0.75rem 0.8rem;
  background: linear-gradient(180deg, rgba(22, 17, 13, 0.5) 0%, rgba(10, 8, 6, 0.96) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
}

.auth-trend-card__name {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.38;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Single product fallback */
.auth-trending__single {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.auth-trend-card--single {
  max-width: 100%;
}

.auth-trend-card--single:hover .auth-trend-card__img img {
  transform: scale(1.06);
}

.auth-trending__empty {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.auth-trending__empty-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.auth-trending__cta {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0d898;
  border: 1px solid rgba(240, 216, 152, 0.45);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.auth-trending__cta:hover {
  background: rgba(240, 216, 152, 0.12);
  color: #fff;
}

.auth-split__form {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid #e8d9c0;
}

.auth-wrap--split {
  width: 100%;
  max-width: 400px;
  padding: 0;
}

.auth-brand--split {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
}

.auth-brand--split .auth-brand__logo {
  width: 56px;
  height: 56px;
  margin: 0;
  flex-shrink: 0;
}

.auth-brand--split .auth-brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.auth-brand--split .auth-brand__name {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.15;
}

.auth-brand--split .auth-brand__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  margin: 0;
}

.auth-card--split {
  background: #fafafa;
  border: 1px solid #e8e4dc;
  border-radius: 14px;
  border-top: 3px solid #b8882a;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 12px 40px rgba(20, 16, 13, 0.06);
}

.auth-shell--split .auth-card__title {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a120e;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  text-align: left;
}

.auth-shell--split .auth-card__title::after {
  display: none;
}

.auth-shell--split .auth-card__sub {
  font-size: 0.88rem;
  color: #6b6560;
  margin-bottom: 1.75rem;
  text-align: left;
  letter-spacing: 0;
}

.auth-shell--split .auth-card .form-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #3d3833;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.auth-shell--split .auth-card .form-control {
  background: #fff;
  border: 1px solid #ddd8cf;
  border-radius: 10px;
  padding: 0.7rem 0.95rem;
  font-size: 0.92rem;
  color: #1a120e;
}

.auth-shell--split .auth-card .form-control::placeholder {
  color: #a09890;
}

.auth-shell--split .auth-card .form-control:focus {
  border-color: #b8882a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 136, 42, 0.15);
  background: #fff;
}

.auth-btn--split,
.auth-shell--split .auth-btn--split {
  margin-top: 0.5rem !important;
  border-radius: 10px !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em !important;
  text-transform: none !important;
  font-weight: 600 !important;
  background: #1a120e !important;
  color: #faf6f0 !important;
}

.auth-btn--split:hover,
.auth-shell--split .auth-btn--split:hover {
  background: #5a3a1a !important;
  color: #faf6f0 !important;
  transform: none !important;
  box-shadow: none !important;
}

.auth-shell--split .auth-alert {
  border-radius: 10px;
  font-size: 0.84rem;
}

.auth-shell--split .auth-divider {
  background: #e8e4dc;
  margin: 1.35rem 0;
}

.auth-shell--split .auth-footnote {
  text-align: center;
  font-size: 0.88rem;
  color: #6b6560;
}

.auth-shell--split .auth-link {
  font-size: inherit;
  color: #5a3a1a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 136, 42, 0.5);
}

.auth-shell--split .auth-link:hover {
  color: #b8882a;
  border-bottom-color: #b8882a;
}

.auth-shell--split .auth-safe {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #8a8278;
}

.auth-shell--split .auth-safe__icon {
  color: #a07840;
}

.auth-shell--split .auth-legal {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #8a8278;
  line-height: 1.55;
}

.auth-shell--split .auth-legal a {
  color: #5a3a1a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 136, 42, 0.5);
}

.auth-shell--split .auth-legal a:hover {
  color: #b8882a;
  border-bottom-color: #b8882a;
}

@media (max-width: 991.98px) {
  .auth-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .auth-split__form {
    order: 1;
    border-left: none;
    border-bottom: 1px solid #e8d9c0;
    padding-top: max(1.75rem, env(safe-area-inset-top, 0px));
    padding-bottom: 2rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    min-height: auto;
    min-width: 0;
  }

  .auth-split__visual {
    order: 2;
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    min-width: 0;
  }

  .auth-trending__inner {
    max-width: min(100%, 500px);
  }

  .auth-trending__flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    max-width: min(100%, 320px);
    padding: 0.25rem 0 0.35rem;
  }

  .auth-trending__flow--three {
    gap: 1.5rem;
  }

  /* Register: 2 trending cards, centered stack (matches login mobile) */
  .auth-trending__flow--three .auth-trend-card:nth-child(1),
  .auth-trending__flow--three .auth-trend-card:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-top: 0;
    max-width: 280px;
    width: 100%;
  }

  .auth-trending__flow--three .auth-trend-card:nth-child(3) {
    display: none;
  }

  .auth-trend-card--pos-tl,
  .auth-trend-card--pos-br {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    max-width: 280px;
  }

  .auth-trend-card--pos-br {
    margin-top: 0;
  }

  .auth-trending__label {
    text-align: center;
  }
}

/* Split auth — phones: no horizontal scroll, touch-friendly fields, longer forms */
@media (max-width: 575.98px) {
  .auth-shell--login.auth-shell--split {
    overflow-x: clip;
  }

  .auth-split__form {
    padding-top: max(1.35rem, env(safe-area-inset-top, 0px));
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    align-items: stretch;
  }

  .auth-shell--register .auth-split__form {
    padding-bottom: max(2.25rem, calc(env(safe-area-inset-bottom) + 1rem));
  }

  .auth-split__visual {
    padding-top: 1.35rem;
    padding-bottom: 1.75rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .auth-wrap--split {
    max-width: 100%;
    min-width: 0;
  }

  .auth-brand--split {
    gap: 0.75rem;
    margin-bottom: 1.45rem;
    align-items: flex-start;
  }

  .auth-brand--split .auth-brand__logo {
    width: 52px;
    height: 52px;
  }

  .auth-brand--split .auth-brand__name {
    font-size: 1.35rem;
  }

  .auth-card--split {
    padding: 1.35rem 1.05rem 1.35rem;
    border-radius: 12px;
  }

  .auth-shell--split .auth-card__title {
    font-size: 1.35rem;
  }

  .auth-shell--split .auth-card__sub {
    margin-bottom: 1.25rem;
    font-size: 0.84rem;
  }

  /* 16px+ avoids iOS zoom on focus */
  .auth-shell--split .auth-card .form-control {
    font-size: 16px;
    padding: 0.65rem 0.85rem;
  }

  .auth-shell--split .auth-alert {
    font-size: 0.8rem;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }

  .auth-btn--split,
  .auth-shell--split .auth-btn--split {
    min-height: 48px;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .auth-shell--split .auth-safe {
    margin-top: 1.25rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }

  .auth-shell--split .auth-legal {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-trend-card,
  .auth-trend-card__img img {
    transition: none;
  }
  .auth-trend-card:hover {
    transform: none;
  }
  .auth-trend-card:hover .auth-trend-card__img img {
    transform: none;
  }
}

/* ── Offers page (offers.php) ── */
.offers-ticker {
  background: var(--gold-deep);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.offers-ticker__marquee {
  display: flex;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}

.offers-ticker__item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 0 2.5rem;
}

.offers-ticker__strong { font-weight: 500; }

.offers-section-head__row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.offers-section-head__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  margin: 0;
}

.offers-section-head__meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.offers-section-head__rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 0.6rem;
}

.offers-section-head__rule--spacious { margin-bottom: 2rem; }

.offers-section-head__desc {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

.offers-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.offers-empty__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.offers-empty__desc {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.offers-empty__btn { border-radius: 2px; }

/* Offer coupon cards (palettes via modifier classes) */
.offer-coupon-card {
  --offer-bg: linear-gradient(135deg, #1f4d3a 0%, #2d6b50 100%);
  --offer-accent: #D4AF37;
  --offer-text: #fff;

  background: var(--offer-bg);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-coupon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.offer-coupon-card--p0 { --offer-bg: linear-gradient(135deg,#1f4d3a 0%,#2d6b50 100%); --offer-accent:#D4AF37; --offer-text:#fff; }
.offer-coupon-card--p1 { --offer-bg: linear-gradient(135deg,#1C1C1E 0%,#2d2d30 100%); --offer-accent:#D4AF37; --offer-text:#fff; }
.offer-coupon-card--p2 { --offer-bg: linear-gradient(135deg,#5c2436 0%,#8B3A52 100%); --offer-accent:#F0D060; --offer-text:#fff; }
.offer-coupon-card--p3 { --offer-bg: linear-gradient(135deg,#3d2b1f 0%,#5c4033 100%); --offer-accent:#D4AF37; --offer-text:#fff; }

.offer-coupon-card__wm {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 130px;
  height: 130px;
  object-fit: contain;
  opacity: 0.06;
  filter: brightness(10);
  pointer-events: none;
}

.offer-coupon-card__wm--sm {
  right: -15px;
  bottom: -15px;
  width: 120px;
  height: 120px;
}

.offer-coupon-card__topline {
  height: 3px;
  background: linear-gradient(90deg, var(--offer-accent), transparent);
}

.offer-coupon-card__body {
  padding: 1.75rem 1.75rem 1.5rem;
}

.offer-coupon-card__disc {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.offer-coupon-card__disc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--offer-accent);
}

.offer-coupon-card__disc-pct {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--offer-accent);
  margin-bottom: 0.4rem;
}

.offer-coupon-card__disc-off {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  padding-left: 0.2rem;
  align-self: flex-end;
  margin-bottom: 0.35rem;
}

.offer-coupon-card__icon {
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
  color: var(--offer-accent);
}

.offer-coupon-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--offer-text);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.offer-coupon-card__banner {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.offer-coupon-card__code-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 1rem;
}

.offer-coupon-card__code-box {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.25);
  border-right: none;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  min-width: 0;
}

.offer-coupon-card__code {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--offer-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-coupon-card__copy {
  background: var(--offer-accent);
  color: #1C1C1E;
  border: none;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.offer-coupon-card__copy.is-copied {
  background: #2e7d32;
  color: #fff;
}

.offer-coupon-card__use {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease;
}

.offer-coupon-card__use i { font-size: 0.6rem; }

.offer-coupon-card:hover .offer-coupon-card__use {
  color: var(--offer-accent);
}

/* Tab filter buttons (moved from offers.php) */
.offer-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}
.offer-tab:hover { border-color: var(--gold); color: var(--gold-deep); }
.offer-tab.active { background: var(--charcoal); color: var(--gold); border-color: var(--charcoal); }
.offer-product-col.hidden { display: none !important; }

/* Offer highlight strip (no inline hover) */
.offer-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.offers-highlight {
  border: 1px solid var(--border);
  margin-bottom: 4rem;
  overflow: hidden;
}

.offers-highlight__cell {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.offers-highlight__cell--divider { border-right: 1px solid var(--border); }
.offers-highlight__cell--cursor { border-right: 1px solid var(--border); cursor: default; }

.offers-highlight__cell:hover { background: rgba(212,175,55,0.05); }

.offers-highlight__big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offers-highlight__big span { font-size: 1.2rem; }

.offers-highlight__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.offers-highlight__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.offers-highlight__sub {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 767px) {
  .offer-highlight-strip { grid-template-columns: 1fr; }
  .offers-highlight__cell--divider,
  .offers-highlight__cell--cursor { border-right: none; border-bottom: 1px solid var(--border); }
  .offers-highlight__cell:last-child { border-bottom: none; }
  .offers-highlight__cell { padding: 1.25rem 1rem; }
}

/* Offers newsletter */
.offers-newsletter {
  margin-top: 4rem;
  background: linear-gradient(108deg,#1f4d3a 0%,#2d6b50 60%,#1a3d2e 100%);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.offers-newsletter__wm {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  object-fit: contain;
  opacity: 0.07;
  filter: brightness(10);
  pointer-events: none;
}

.offers-newsletter__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.offers-newsletter__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.offers-newsletter__sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin: 0;
}

.offers-newsletter__email-row { gap: 0; max-width: 400px; }

.offers-newsletter__input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-right: none;
  padding: 0.8rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #fff;
  outline: none;
}

.offers-newsletter__input:focus { border-color: var(--gold); }

.offers-newsletter__input::placeholder {
  color: rgba(255,255,255,0.55);
  opacity: 1;
}

.offers-newsletter__btn {
  background: var(--gold);
  color: #1C1C1E;
  border: none;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.offers-newsletter__btn:hover { background: var(--gold-light); }

.offers-newsletter__fineprint {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.6rem;
  font-weight: 300;
}

/* Newsletter email row: flex → stack on mobile */
.offer-email-row { display: flex; }
@media (max-width: 575px) {
  .offer-email-row { flex-direction: column; gap: 0 !important; max-width: 100% !important; }
  .offers-newsletter__input { border-right: 1px solid rgba(212,175,55,0.3); border-bottom: none; }
  .offers-newsletter__btn { width: 100%; padding: 0.8rem 1rem; }
}

/* ── 5. ANNOUNCEMENT BAR ── */
:root{
  --announce-h: 40px;
  --nav-h: 68px; /* approximate; avoids content jump */
}

.announcement-bar {
  height: 40px;
  background: var(--gold-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1055;
}

.announcement-marquee {
  display: flex;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  gap: 0;
}

.announcement-marquee span {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  color: #fff;
  padding: 0 2rem;
  letter-spacing: 1.5px;
}

@media (max-width: 575px) {
  .announcement-bar { height: 36px; }
  .announcement-marquee span { font-size: 11px; padding: 0 1.25rem; letter-spacing: 1.5px; }
  :root { --announce-h: 36px; }
}

.announcement-bar:hover .announcement-marquee { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 6. NAVBAR ── */
.navbar-akarssini {
  background: #fff;
  border-bottom: 1px solid #e8d9c0;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease, transform 0.28s ease;
  /* Avoid transforms on sticky elements (breaks position: sticky in browsers) */
  will-change: auto;
  z-index: 1040;
}

/* Make navbar reliably stay on top (fixed beats sticky edge cases) */
#mainNavbar.sticky-top,
.navbar-akarssini.sticky-top {
  position: fixed !important;
  top: var(--announce-h) !important;
  left: 0;
  right: 0;
  transform: translateY(0);
}

/* Offset page content for fixed announcement + navbar */
body { padding-top: calc(var(--announce-h) + var(--nav-h)); }

.navbar-akarssini.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: #e8d9c0;
  box-shadow: 0 1px 20px rgba(139,58,82,0.08);
  padding: 0.6rem 0;
}

/* When hiding, beat the #mainNavbar.sticky-top specificity */
#mainNavbar.nav-hidden,
.navbar-akarssini.sticky-top.nav-hidden,
.navbar-akarssini.nav-hidden {
  transform: translateY(-110%) !important;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-akarssini { transition: none; }
}

/* Mobile / tablet: keep logo + icons on one row (Bootstrap navbar defaults to flex-wrap: wrap) */
@media (max-width: 991.98px) {
  .navbar-akarssini.navbar {
    flex-wrap: nowrap;
  }
  .navbar-akarssini > .container {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    max-width: 100%;
  }
  .navbar-akarssini .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0;
  }
  .navbar-akarssini .nav-brand-name {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a3a72;
  }
  .navbar-akarssini .nav-brand-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }
  .navbar-akarssini .brand-lotus {
    width: 32px;
    height: 32px;
  }
  .navbar-akarssini .nav-icon-group {
    flex-shrink: 0;
  }
}

@media (max-width: 380px) {
  .navbar-akarssini .nav-brand-tagline {
    display: none;
  }
  .navbar-akarssini .nav-brand-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a3a72;
  }
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.30rem;
  text-decoration: none;
}

.nav-brand .brand-lotus {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  font-style: italic;
  color: #1a3a72;
  letter-spacing: 0.03em;
}

@media (min-width: 992px) {
  .navbar-akarssini .nav-brand-name {
    font-size: 1.85rem;
  }
}

.nav-brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-style: normal;
  font-weight: 400;
  margin-top: 1px;
}

/* Nav links */
.navbar-akarssini .nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}

.navbar-akarssini .nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.navbar-akarssini .nav-link:hover::after,
.navbar-akarssini .nav-link.active::after { transform: scaleX(1); }

.navbar-akarssini .nav-link:hover,
.navbar-akarssini .nav-link.active { color: var(--rose) !important; }

/* Krishna nav accent */
.nav-krishna-wrap {
  flex-shrink: 0;
  margin-right: 0.5rem;
  line-height: 0;
}

.nav-krishna-img {
  width: 36px;
  height: 52px;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  border: 2px solid #c9a227;
  box-shadow:
    0 0 0 3px rgba(201,162,39,0.18),
    0 4px 16px rgba(201,162,39,0.22);
  display: block;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-krishna-img:hover {
  box-shadow:
    0 0 0 4px rgba(201,162,39,0.30),
    0 6px 22px rgba(201,162,39,0.35);
  transform: translateY(-1px);
}

@media (max-width: 991.98px) {
  .nav-krishna-wrap {
    margin-right: 0.25rem;
  }
  .nav-krishna-img {
    width: 43px;
    height: 52px;
    border: 1px solid #c9a227;
  }
  .navbar-akarssini {
    padding: 0.50rem 0;
  }
}

/* Nav icons */
.nav-icon-group { display: flex; align-items: center; gap: 0.35rem; }

.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--charcoal);
  font-size: 1rem;
  transition: color var(--transition), background var(--transition);
}

.nav-icon-btn:hover { color: var(--rose); background: rgba(139,58,82,0.06); }

.nav-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 17px; height: 17px;
  background: var(--rose);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ivory);
  padding: 0 3px;
}

/* Badge node is always in DOM so AJAX can update count; hidden when cart is empty */
.nav-badge.nav-badge-empty {
  display: none;
}

/* ── 7. MOBILE OVERLAY MENU ── */
.mobile-menu-toggle {
  width: 40px; height: 40px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 991.98px) {
  /* Show the fixed bottom bar */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e8d9c0;
    /* padding: 0.55rem 0rem;
    padding-bottom: calc(0.55rem + env(safe-area-inset-bottom)); */
    justify-content: space-around;
    align-items: center;
    z-index: 1060;
    box-shadow: 0 -4px 24px rgba(26,58,114,0.09);
  }

  /* Hide icon group from top navbar — moved to bottom bar */
  .navbar-akarssini .nav-icon-group {
    display: none !important;
  }

  /* Prevent content hiding behind the bottom bar */
  body > main {
    padding-bottom: 76px !important;
  }
  footer {
    padding-bottom: 76px !important;
  }
}

/* Bottom bar button */
.mob-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #555;
  font-size: 1.25rem;
  width: 56px;
  height: 52px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.mob-bar-btn:hover,
.mob-bar-btn.active {
  color: var(--rose);
  background: rgba(var(--rose-rgb, 139,58,82), 0.07);
}

/* Cart badge on bottom bar */
.mob-bar-badge {
  position: absolute;
  top: 5px;
  right: 6px;
  background: var(--rose);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  border: 2px solid #fff;
}

/* Hamburger lines inside bottom bar button */
.mob-bar-ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 24px;
  height: 18px;
}

.mob-bar-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animate hamburger to X when overlay opens */
#mobileMenuToggle2.open .mob-bar-ham span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#mobileMenuToggle2.open .mob-bar-ham span:nth-child(2) {
  opacity: 0;
}
#mobileMenuToggle2.open .mob-bar-ham span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 1080;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-overlay .mob-nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 8vw, 2.35rem);
  font-style: italic;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.45rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.25s ease;
}

.mobile-overlay.open .mob-nav-link { opacity: 1; transform: none; }
.mobile-overlay .mob-nav-link:hover { color: var(--rose); }

/* Stagger delays */
.mobile-overlay .mob-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay .mob-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-overlay .mob-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay .mob-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-overlay .mob-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-overlay .mob-nav-link:nth-child(6) { transition-delay: 0.30s; }

/* ── 8. BUTTONS ── */
.btn-rose {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rose);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.72rem 1.9rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(139,58,82,0.22);
}
.btn-rose:hover { background: #74304400; background: #74304400; background-color: #6d2d41; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(139,58,82,0.3); color:#fff !important; }

.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--gold-deep) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.70rem 1.9rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--charcoal) !important; }

.btn-charcoal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--charcoal);
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.72rem 1.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-charcoal:hover { background: #2d2d30; transform: translateY(-1px); }

.btn-text-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap var(--transition), color var(--transition);
}
.btn-text-arrow:hover { gap: 0.7rem; color: var(--rose); }

/* Shared */
.btn-rose, .btn-gold-outline, .btn-charcoal, .btn-text-arrow { position: relative; overflow: hidden; }

/* Old compat */
.btn-gold          {     background: linear-gradient(108deg, #012f17 0%, #194b32 60%, #194931 100%); color: #fff !important; border: none; font-size:0.78rem; letter-spacing:.1em; text-transform:uppercase; padding:.72rem 1.9rem; border-radius:2px; font-family:var(--font-body); cursor:pointer; transition:all var(--transition); }
.btn-gold:hover    { filter:brightness(1.06); transform:translateY(-2px); }
.btn-outline-gold  { border:1px solid var(--gold); color:var(--gold-deep) !important; background:transparent; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; padding:.7rem 1.9rem; border-radius:2px; font-family:var(--font-body); cursor:pointer; transition:all var(--transition); }
.btn-outline-gold:hover { background:var(--gold); color:var(--charcoal) !important; }
.btn-primary-forest { background:var(--rose); color:#fff !important; border:none; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; padding:.72rem 1.9rem; border-radius:2px; font-family:var(--font-body); cursor:pointer; transition:all var(--transition); }
.btn-primary-forest:hover { background:#6d2d41; transform:translateY(-1px); }

/* ── 9. PRODUCT CARD ── */
.product-card {
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(212,175,55,0.15);
  overflow: visible;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
  transform: translateY(-4px);
}

/* Image wrap */
.product-card .product-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
  border-radius: 2px 2px 0 0;
  margin: 0;
}

.product-card .product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.05); }

/* Hover overlay */
.product-card .card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,30,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .card-hover-overlay { opacity: 1; }

/* Touch / coarse pointer: hover overlay is unusable — keep Quick View reachable */
@media (hover: none), (pointer: coarse) {
  .product-card .card-hover-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(28, 28, 30, 0.55) 0%, transparent 45%);
    align-items: flex-end;
    padding-bottom: 0.65rem;
  }
  .product-card .quick-view-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.68rem;
  }
}

.quick-view-btn {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition);
}

.quick-view-btn:hover { background: var(--gold-light); }

/* Tag badge */
.product-card .tag-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  z-index: 5;
  pointer-events: none;
}

.tag-new       { background: var(--rose);    color: #fff; }
.tag-offer     { background: var(--gold);    color: var(--charcoal); }
.tag-best      { background: var(--charcoal); color: var(--gold); }

/* Wishlist */
.product-card .wishlist-btn {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--muted);
  z-index: 5;
  transition: color var(--transition), transform var(--transition), background var(--transition);
}

.product-card .wishlist-btn:hover,
.product-card .wishlist-btn.active { color: var(--rose); transform: scale(1.1); background: #fff; }

/* Card body */
.product-card .card-body {
  padding: 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.product-card .product-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.4;
  /* clamp to 2 lines so all cards in a row are visually balanced */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .product-material {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  margin-top: auto;      /* push price + button to bottom of card body */
}

.product-card .price-new {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--rose);
}

.product-card .price-old {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 300;
}

.product-card .discount-pill {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  background: rgba(212,175,55,0.15);
  color: var(--gold-deep);
}

/* ── Mobile product card tweaks (col-6 ≈ 160 px) ── */
@media (max-width: 575px) {
  .product-card .card-body {
    padding: 0.6rem 0.65rem 0.7rem;
  }
  .product-card .product-name {
    font-size: 0.78rem;
    margin-bottom: 0.2rem;
  }
  .product-card .product-material {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
  }
  .product-card .price-new {
    font-size: 0.88rem;
  }
  .product-card .price-old {
    font-size: 0.7rem;
  }
  .product-card .price-wrap {
    margin-bottom: 0.5rem;
    gap: 0.25rem;
  }
  /* Add-to-Cart button: prevent text wrapping on narrow cards */
  .product-card .js-add-cart {
    white-space: nowrap !important;
    font-size: 0.62rem !important;
    padding: 0.5rem 0.35rem !important;
    letter-spacing: 0.06em !important;
    gap: 0.3rem !important;
  }
  /* Smaller quick-view button on touch mobile */
  .quick-view-btn {
    font-size: 0.6rem;
    padding: 0.4rem 0.85rem;
    letter-spacing: 0.07em;
  }
  /* Smaller wishlist button */
  .product-card .wishlist-btn {
    width: 27px;
    height: 27px;
    font-size: 0.68rem;
    top: 7px;
    right: 8px;
  }
  /* Tag badge */
  .product-card .tag-badge {
    font-size: 0.52rem;
    padding: 0.18rem 0.45rem;
    top: 8px;
    left: 8px;
  }
}

/* ── 10. HERO — Soft Cream & Gold (index.php) ── */
.ak-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  min-height: 460px;
  background: #faf6f0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  align-items: stretch;
  overflow: hidden;
}

.ak-hero__col--text {
  position: relative;
  background: #faf6f0;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-width: 0;
}

/* Decorative background layers (ashoka, phula, shankha) */
.ak-hero__col--text::before,
.ak-hero__col--text::after,
.ak-hero__text-inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 1) ashoka.png — centered */
.ak-hero__col--text::before {
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0.08;
  background-image: url("../images/ashoka.png");
  animation: akAshokaSpin 18s linear infinite;
}

@keyframes akAshokaSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .ak-hero__col--text::before { animation: none; }
}

/* 2) phula.png — top-right */
/* .ak-hero__col--text::after {
  width: 90px;
  height: 90px;
  top: 20px;
  right: 16px;
  opacity: 0.13;
  background-image: url("../images/phula.png");
} */

/* 3) shankha.png — bottom-left (on inner so we can have 3 layers) */
/* .ak-hero__text-inner::before {
  width: 80px;
  height: 80px;
  bottom: 0;
  left: 20px;
  opacity: 0.12;
  background-image: url("../images/shankha.png");
} */

.ak-hero__text-inner {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

/* Typography — clean sans */
.ak-hero__eyebrow,
.ak-hero__title,
.ak-hero__lead,
.ak-hero__btn,
.ak-hero__stat-num,
.ak-hero__stat-label,
.ak-hero__main-tag,
.ak-hero__main-name,
.ak-hero__main-price,
.ak-hero__main-pill,
.ak-hero__side-cat,
.ak-hero__side-name,
.ak-hero__side-price,
.ak-hero__badge {
  font-family: var(--font-body);
  font-style: normal;
}

.ak-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 3.5px;
  color: #b8882a;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.ak-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: #b8882a;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.ak-hero__title {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #2c1a08;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
}

.ak-hero__title-line:last-child {
  font-weight: 700;
  color: #5a3a1a;
  font-size: 52px;
}

.ak-hero__lead {
  font-size: 13px;
  color: #7a5c3a;
  line-height: 1.85;
  font-weight: 300;
  max-width: 280px;
  margin: 0 0 28px;
}

/* Buttons */
.ak-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ak-hero__btn {
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ak-hero__btn--primary {
  background: #5a3a1a;
  color: #faf6f0;
  border: none;
}

.ak-hero__btn--primary:hover {
  background: #b8882a;
  color: #faf6f0;
}

.ak-hero__btn--outline {
  background: transparent;
  color: #5a3a1a;
  border: 1px solid #c4a06a;
}

.ak-hero__btn--outline:hover {
  border-color: #5a3a1a;
  color: #5a3a1a;
}

/* Stats */
.ak-hero__stats {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid #d4b896;
  flex-wrap: wrap;
}

.ak-hero__stat { display: flex; flex-direction: column; gap: 0; }

.ak-hero__stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1.1;
}

.ak-hero__stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a07840;
  display: block;
  margin-top: 2px;
}

/* Main image column */
.ak-hero__col--main {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.ak-hero__main-inner { position: absolute; inset: 0; overflow: hidden; }

.ak-hero__carousel,
.ak-hero__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ak-hero #heroCarousel { position: absolute; inset: 0; width: 100%; height: 100%; }
.ak-hero #heroCarousel .carousel-inner { position: relative; width: 100%; height: 100%; }

.ak-hero #heroCarousel .carousel-item {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block !important;
  opacity: 0;
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: opacity;
}

.ak-hero #heroCarousel .carousel-item.active { opacity: 1; pointer-events: auto; z-index: 1; }

.ak-hero__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ak-hero__main-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10, 5, 0, 0.80) 0%, rgba(10, 5, 0, 0.3) 50%, transparent 100%);
}

.ak-hero__main-caption {
  position: absolute;
  bottom: 32px;
  left: 28px;
  right: auto;
  z-index: 2;
  pointer-events: none;
}

.ak-hero__main-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0d898;
  margin: 0 0 8px;
  font-weight: 500;
}

.ak-hero__main-name {
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 10px;
}

.ak-hero__main-price {
  font-size: 14px;
  color: #f0c060;
  font-weight: 500;
  margin: 0 0 14px;
}

.ak-hero__main-pill {
  background: #b8882a;
  color: #fff;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: none;
  pointer-events: auto;
}

/* Carousel indicators */
.ak-hero #heroCarousel .carousel-indicators.ak-hero__carousel-indicators {
  bottom: 12px;
  z-index: 4;
  margin-bottom: 0;
}

.ak-hero #heroCarousel .carousel-indicators button {
  width: 18px;
  height: 2px;
  background: #c9a84c;
  border: none;
  border-radius: 0;
  opacity: 0.4;
  padding: 0;
  transition: opacity 0.2s, width 0.2s;
}

.ak-hero #heroCarousel .carousel-indicators button.active {
  opacity: 1;
  width: 28px;
}

/* Side column + cards */
.ak-hero__col--side {
  display: flex;
  flex-direction: column;
  background: #f2e8d8;
  gap: 0;
  min-height: 0;
}

.ak-hero__side-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e8d0b0;
  cursor: pointer;
  min-height: 120px;
  transition: background 0.2s;
}

.ak-hero__side-card:last-child { border-bottom: none; }

.ak-hero__side-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ak-hero__side-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ak-hero__side-card:hover .ak-hero__side-media img { transform: scale(1.05); }

.ak-hero__side-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(15, 8, 2, 0.88) 0%, rgba(15, 8, 2, 0.4) 60%, transparent 100%);
  z-index: 2;
}

.ak-hero__side-cat {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 5px;
  font-weight: 500;
}

.ak-hero__side-name {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.ak-hero__side-price {
  font-size: 14px;
  font-weight: 600;
  color: #f0c060;
  margin: 4px 0 0;
}

/* Badges */
.ak-hero__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
  z-index: 2;
}

.ak-hero__badge--gold { background: #b8882a; color: #fff; }
.ak-hero__badge--maroon { background: #fff; color: #5a3a1a; border: 1px solid #d4b896; }

/* Empty states */
.ak-hero__side-card--empty {
  background: #e8d5b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-hero__side-empty-inner {
  opacity: 0.3;
  font-size: 40px;
}

/* Placeholder */
.ak-hero__placeholder {
  width: 100%;
  height: 100%;
  background: #c8a87a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ak-hero__placeholder-logo { max-width: 160px; opacity: 0.4; }

@media (max-width: 900px) {
  .ak-hero { grid-template-columns: 1fr 1.4fr; }
  .ak-hero__col--side { display: none; }
}

@media (max-width: 768px) {
  .ak-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  /* Carousel / banner first, then copy + CTAs + stats */
  .ak-hero__col--main {
    order: 1;
    min-height: 320px;
    height: auto;
  }

  .ak-hero__col--text {
    padding: 36px 24px 28px;
    order: 2;
  }

  /* Product strip hidden on mobile — carousel + text only */
  .ak-hero__col--side {
    display: none !important;
  }

  .ak-hero__title {
    font-size: 34px;
    margin: 12px 0;
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
  }

  /* Title: "Draped in" line, then "Timeless Grace" on one line */
  .ak-hero__title-line {
    display: inline;
  }

  .ak-hero__title-line:nth-child(1)::after {
    content: "\A";
    white-space: pre;
  }

  .ak-hero__title-line:last-child {
    font-size: 40px;
  }

  .ak-hero__eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
  }

  .ak-hero__lead {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 100%;
  }

  .ak-hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .ak-hero__btn {
    padding: 11px 18px;
    font-size: 10px;
    letter-spacing: 2px;
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .ak-hero__stats {
    gap: 20px;
    padding-top: 20px;
    justify-content: space-around;
  }

  .ak-hero__stat-num {
    font-size: 18px;
  }

  .ak-hero__stat-label {
    font-size: 8px;
  }

  /* Ashoka watermark — lighter, less centered on copy */
  .ak-hero__col--text::before {
    width: 160px;
    height: 160px;
    opacity: 0.05;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    animation: none;
  }

  /* Phula + shankha (mobile-only accents; shared base gives content/position) */
  .ak-hero__col--text::after {
    width: 50px;
    height: 50px;
    opacity: 0.07;
    top: 12px;
    right: 12px;
    left: auto;
    bottom: auto;
    transform: none;
    background-image: url("../images/phula.png");
  }

  .ak-hero__text-inner::before {
    width: 44px;
    height: 44px;
    opacity: 0.07;
    bottom: 16px;
    left: 12px;
    top: auto;
    right: auto;
    transform: none;
    background-image: url("../images/shankha.png");
  }
}

/* ── 11. SECTION HEADINGS ── */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.lotus-divider::before,
.lotus-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lotus-divider i { color: var(--gold); font-size: 0.72rem; }

/* ── 12. CATEGORY STRIP ── */
.category-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  padding: 0.5rem 0 1.25rem;
}

.category-strip::-webkit-scrollbar { display: none; }

.cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.cat-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--blush);
  overflow: hidden;
  border: 3px solid transparent;
  outline: 1px solid rgba(212,175,55,0.18);
  outline-offset: 4px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), outline-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 18px rgba(139,58,82,0.08);
  position: relative;
}

.cat-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.08) 100%);
  pointer-events: none;
}

.cat-chip:hover .cat-circle {
  border-color: var(--gold);
  outline-color: rgba(212,175,55,0.45);
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 30px rgba(212,175,55,0.22);
}

.cat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  white-space: nowrap;
  transition: color var(--transition);
}

.cat-chip:hover .cat-label {
  color: var(--gold-deep);
}

/* ── 13. OFFER BANNER ── */
.offer-strip {
  background: var(--charcoal);
  display: flex;
  align-items: stretch;
  min-height: 200px;
}

.offer-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.15);
  transition: background var(--transition);
  cursor: pointer;
}

.offer-block:last-child { border-right: none; }
.offer-block:hover { background: rgba(212,175,55,0.08); }

.offer-block .offer-icon { color: var(--gold); font-size: 1.5rem; }

.offer-block h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.offer-block p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin: 0;
}

/* ── 14. BRAND STORY ── */
.brand-story-img {
  background: linear-gradient(140deg, var(--blush) 0%, var(--rose-light) 100%);
  border: 1px solid var(--border);
  box-shadow: 8px 8px 0 var(--gold);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.brand-story-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.brand-story-quote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  line-height: 1.7;
}

/* ── 15. TESTIMONIALS ── */
.testimonial-section {
  background: var(--cream);
  border-top: 4px solid var(--blush);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.75rem; left: 1.5rem;
  font-size: 6rem;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.testimonial-card .review-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.testimonial-card .reviewer-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.testimonial-card .reviewer-city {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(139, 58, 82, 0.1);
  transform: translateY(-3px);
}

/* Wedding page — 2-col testimonial grid, equal card heights */
.wedding-testimonial-grid > [class*="col-"] {
  display: flex;
}
.wedding-testimonial-grid .testimonial-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wedding-testimonial-grid .testimonial-card .review-text {
  flex: 1;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose-light);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* Testimonials — Owl Carousel 2 */
.testimonial-owl {
  position: relative;
  padding: 0 0 2.75rem;
}
@media (min-width: 768px) {
  .testimonial-owl {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}
.testimonial-owl .owl-stage-outer {
  overflow: hidden;
}

/* Make all items the same height — stretch to the tallest card */
.testimonial-owl .owl-stage {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: stretch;
}
.testimonial-owl .owl-item {
  display: flex;
  flex: 0 0 auto;
}
.testimonial-owl .owl-item .item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.testimonial-owl .owl-item .testimonial-card {
  flex: 1;            /* card fills full height of the tallest sibling */
  display: flex;
  flex-direction: column;
  width: 100%;
}
/* Push reviewer name+city to bottom so short reviews align too */
.testimonial-owl .owl-item .testimonial-card .review-text {
  flex: 1;
}
.testimonial-owl .owl-nav {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 0.15rem;
}

@media (max-width: 767px) {
  /* Move nav below cards so it doesn't overlap text */
  .testimonial-owl .owl-nav {
    position: static;
    transform: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 0;
  }
}
.testimonial-owl .owl-nav button.owl-prev,
.testimonial-owl .owl-nav button.owl-next {
  pointer-events: auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid var(--border) !important;
  color: var(--charcoal) !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(139, 58, 82, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonial-owl .owl-nav button.owl-prev:hover,
.testimonial-owl .owl-nav button.owl-next:hover {
  background: #fff !important;
  box-shadow: var(--shadow);
}
.testimonial-owl .owl-nav button.owl-prev span,
.testimonial-owl .owl-nav button.owl-next span {
  margin-top: -2px;
}
.testimonial-owl .owl-dots {
  margin-top: 1.75rem;
}
.testimonial-owl .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 5px;
  background: var(--rose-light);
  transition: background var(--transition), transform var(--transition);
}
.testimonial-owl .owl-dots .owl-dot.active span,
.testimonial-owl .owl-dots .owl-dot:hover span {
  background: var(--gold);
}
.testimonial-owl .owl-dots .owl-dot.active span {
  transform: scale(1.25);
}

/* ── 15.5 DIVINE HERITAGE BANNER ── */
.divine-banner {
  position: relative;
  background: #160a01;
  overflow: hidden;
  padding: 5rem 0;
}

/* Atmospheric layered glow */
.divine-banner__radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 28% 50%,  rgba(212,145,30,.22)  0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 72% 20%,  rgba(176,38,36,.13)   0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(100,40,10,.35)    0%, transparent 60%);
  pointer-events: none;
}

.divine-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4.5rem;
}

/* ── Image side ── */
.divine-banner__img-col {
  flex-shrink: 0;
  width: 300px;
}

.divine-banner__img-frame {
  position: relative;
  display: inline-block;
}

.divine-banner__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 48px rgba(212,145,30,.50))
          drop-shadow(0 24px 48px rgba(0,0,0,.70));
}

/* Radial halo behind the image */
.divine-banner__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(255,200,60,.18) 0%,
    rgba(212,145,30,.10) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* ── Text side ── */
.divine-banner__text-col {
  flex: 1;
  min-width: 0;
  color: #f5e6c0;
}

.divine-banner__eyebrow {
  font-size: .68rem;
  font-family: var(--font-body, 'Jost', sans-serif);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1.1rem;
  opacity: .9;
}

.divine-banner__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: #faecd4;
  margin-bottom: 1.35rem;
}

.divine-banner__body {
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.9;
  color: rgba(245,230,192,.72);
  max-width: 500px;
  margin-bottom: 1.75rem;
}

.divine-banner__lotus {
  font-size: .9rem;
  letter-spacing: .2em;
  color: rgba(212,175,55,.50);
  margin-bottom: 1.5rem;
}

.divine-banner__shloka {
  border-left: 2px solid rgba(212,145,30,.45);
  padding-left: 1.1rem;
  margin: 0 0 .6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #d4af37;
  opacity: .88;
}

.divine-banner__shloka p {
  margin: 0;
}

.divine-banner__shloka-trans {
  font-size: .75rem;
  font-style: normal;
  font-weight: 300;
  color: rgba(245,230,192,.45);
  letter-spacing: .04em;
  padding-left: 1.1rem;
  margin-bottom: 2rem;
}

.divine-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #d4af37;
  font-size: .78rem;
  font-family: var(--font-body, 'Jost', sans-serif);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,.35);
  padding-bottom: .2rem;
  transition: color .2s, border-color .2s, gap .2s;
}

.divine-banner__cta:hover {
  color: #f5e6c0;
  border-color: rgba(245,230,192,.6);
  gap: .8rem;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .divine-banner__inner {
    gap: 3rem;
  }
  .divine-banner__img-col {
    width: 240px;
  }
}

@media (max-width: 767.98px) {
  .divine-banner {
    padding: 3.5rem 0;
  }
  .divine-banner__inner {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  .divine-banner__img-col {
    width: 200px;
  }
  .divine-banner__body {
    font-size: .88rem;
    max-width: 100%;
  }
  .divine-banner__shloka {
    border-left: none;
    border-top: 1px solid rgba(212,145,30,.35);
    padding-left: 0;
    padding-top: 1rem;
    text-align: center;
  }
  .divine-banner__shloka-trans {
    padding-left: 0;
    text-align: center;
  }
}

/* ── 16. GALLERY MARQUEE ── */
.gallery-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: default;
}

.gallery-marquee {
  display: flex;
  gap: 1rem;
  animation: galleryScroll 40s linear infinite;
  will-change: transform;
  padding: 1rem 0;
}

.gallery-marquee-wrap:hover .gallery-marquee { animation-play-state: paused; }

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-item {
  flex-shrink: 0;
  width: 200px; height: 260px;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img, .gallery-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  background: linear-gradient(160deg, var(--blush) 0%, var(--rose-light) 60%, var(--blush) 100%);
}

/* ── 17. TRUST ROW ── */
.trust-row { background: var(--cream); }

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  padding: 2rem 1rem;
}

.trust-badge .trust-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-deep);
}

.trust-badge .trust-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

@media (max-width: 767px) {
  .trust-row.py-4 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }

  .trust-badge {
    padding: 1.2rem 0.65rem;
    gap: 0.5rem;
  }

  .trust-badge .trust-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .trust-badge .trust-label {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }
}

/* ── 18. FOOTER ── */
.site-footer {
  background: #023018;
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

@media (max-width: 767px) {
  .site-footer { padding: 2.5rem 0 1.5rem; }
  .site-footer h5 { margin-bottom: 0.75rem; }
  .newsletter-input-group { max-width: 100%; }
  .footer-divider { margin: 2rem 0 1rem; }
}

.footer-lotus-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 280px; height: 280px;
  object-fit: contain;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.site-footer h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.site-footer p { font-size: 0.85rem; font-weight: 300; line-height: 1.7; }

.site-footer a {
  color: rgba(255,255,255,0.6);
  /* font-size: 0.85rem; */
  font-weight: 300;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.site-footer .footer-link-icon {
  color: var(--gold);
}

.site-footer a:hover { color: var(--gold-light); padding-left: 4px; }

.site-footer .social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  margin-right: 0.4rem;
  padding-left: 0 !important;
  transition: background var(--transition), border-color var(--transition);
}

.site-footer .social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Newsletter */
.newsletter-input-group { display: flex; gap: 0; max-width: 340px; }

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-right: none;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover { background: var(--gold-light); }

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
  margin: 3rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.5rem;
}

.footer-bottom__left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-bottom__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

.footer-bottom__credit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.03em;
}

.footer-bottom__credit-brand {
  color: rgba(212,175,55,0.45);
  font-style: italic;
}

.footer-bottom__right {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-bottom__ssl {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}

.footer-bottom__sep {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.15);
}

.footer-bottom__payments {
  height: 26px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-bottom__payments:hover {
  opacity: 1;
}

@media (max-width: 575.98px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }
  .footer-bottom__left {
    align-items: center;
  }
  .footer-bottom__right {
    justify-content: center;
  }
}

/* ── 19. PAGE HERO (inner pages) ── */
.page-hero {
  /* background: linear-gradient(108deg, #1a1012 0%, var(--rose) 60%, #5c2436 100%); */
  background: linear-gradient(108deg, #012f17 0%, #194b32 60%, #194931 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Logo watermark on hero right side */
.page-hero::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background: url('../images/logo/akarssini_logo.png') center/contain no-repeat;
  opacity: 0.07;
  filter: brightness(10);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -5%; bottom: -40%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.page-hero .page-hero-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.page-hero .breadcrumb { background: transparent; padding: 0; margin-bottom: 0.75rem; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.page-hero .breadcrumb-item a:hover { color: var(--gold-light); }
.page-hero .breadcrumb-item.active { color: var(--gold-light); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

/* ── 20. COLLECTIONS PAGE ── */
/* Banner uses shared .page-hero (§19) — do not override here */

/* Main wrap */
.coll-page-wrap {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* ── Toolbar ── */
.coll-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.85rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

/* Row: Filters | sort + grid (full width on mobile) */
.coll-toolbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  width: 100%;
  min-width: 0;
}

.coll-toolbar-chips {
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.coll-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

/* Filter button */
.coll-toolbar-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 0.5rem 0.95rem;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.coll-toolbar-filter-text {
  display: inline;
}

.coll-toolbar-filter-btn i {
  font-size: 0.78rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.coll-toolbar-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.coll-toolbar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  font-size: 0.55rem;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  font-weight: 600;
  padding: 0 3px;
}

/* Active filter chips */
.coll-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.coll-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  background: rgba(139, 58, 82, 0.08);
  border: 1px solid rgba(139, 58, 82, 0.2);
  color: var(--rose);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background var(--transition), color var(--transition);
  border: 1px solid rgba(139, 58, 82, 0.2);
}

.coll-chip i { font-size: 0.55rem; opacity: 0.7; }
.coll-chip:hover { background: rgba(139, 58, 82, 0.14); color: var(--rose); }

.coll-chip--gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border);
  color: var(--gold-deep);
}

.coll-chip--gold:hover { background: rgba(212, 175, 55, 0.18); color: var(--gold-deep); }

.coll-chip-clear {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color var(--transition);
}

.coll-chip-clear:hover { color: var(--rose); }

/* Sort select */
.coll-sort-form {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.coll-sort-label {
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
}

.coll-sort-select {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.45rem 1.85rem 0.45rem 0.65rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6560'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 9px 5px;
  transition: border-color var(--transition);
  width: 100%;
  min-width: 0;
  max-width: 220px;
}

.coll-sort-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Grid toggle */
.coll-grid-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.coll-grid-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  background: var(--ivory);
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.coll-grid-btn.active,
.coll-grid-btn:hover {
  background: var(--charcoal);
  color: #fff;
}

/* Collections page — mobile toolbar & spacing */
@media (max-width: 767px) {
  .coll-page-wrap {
    padding-top: 1.25rem;
  }

  .coll-toolbar {
    padding: 0.65rem 0.7rem;
  }

  .coll-toolbar-main {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.5rem;
  }

  .coll-toolbar-filter-btn {
    padding: 0.55rem 0.75rem;
    letter-spacing: 0.08em;
    min-height: 40px;
    box-sizing: border-box;
  }

  .coll-toolbar-right {
    gap: 0.35rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .coll-sort-form {
    flex: 1 1 0;
    min-width: 0;
  }

  .coll-sort-select {
    max-width: none;
    font-size: 0.68rem;
    padding: 0.45rem 1.65rem 0.45rem 0.5rem;
  }

  .coll-grid-toggle {
    flex-shrink: 0;
  }

  .coll-grid-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .coll-chip-row {
    gap: 0.35rem;
  }
}

@media (max-width: 380px) {
  .coll-toolbar-filter-btn {
    position: relative;
    padding: 0.55rem 0.65rem;
  }

  /* Icon-only label on very narrow screens — full word still in aria-label on button */
  .coll-toolbar-filter-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 575px) {
  .coll-page-wrap.container {
    max-width: 100%;
  }
}

/* ── Offcanvas filter drawer ── */
.coll-offcanvas {
  width: min(340px, 92vw) !important;
  background: #fff;
  border-right: 1px solid var(--border) !important;
}

.coll-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
  position: sticky;
  top: 0;
  z-index: 2;
}

.coll-offcanvas-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coll-offcanvas-title i {
  font-size: 0.9rem;
  color: var(--gold-deep);
  font-style: normal;
}

.coll-filter-count-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(139, 58, 82, 0.1);
  color: var(--rose);
  border: 1px solid rgba(139, 58, 82, 0.2);
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
  margin-top: 0.2rem;
  font-style: normal;
}

.coll-clear-all-link {
  font-size: 0.68rem;
  font-family: var(--font-body);
  color: var(--muted);
  text-decoration: underline;
  white-space: nowrap;
  transition: color var(--transition);
}

.coll-clear-all-link:hover { color: var(--rose); }

.coll-offcanvas-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.72rem;
  color: var(--charcoal);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.coll-offcanvas-close:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.coll-offcanvas-body {
  padding: 0;
  overflow-y: auto;
}

/* Filter groups */
.coll-filter-group {
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.coll-filter-group-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.coll-filter-group-title i {
  font-size: 0.6rem;
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.coll-filter-group-title.collapsed i { transform: rotate(-90deg); }
.coll-filter-group-title:hover { color: var(--gold-deep); }

.coll-filter-group-body {
  padding: 0 1.5rem 1.15rem;
}

/* Category pills */
.coll-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.coll-cat-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--charcoal);
  background: var(--ivory);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.coll-cat-pill input { display: none; }

.coll-cat-pill:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.coll-cat-pill.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

/* Price range */
.coll-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.coll-price-max-label { color: var(--rose); font-weight: 400; }

.coll-price-range::-webkit-slider-thumb { background: var(--gold); }
.coll-price-range:focus { outline: none; box-shadow: none; }

/* Color swatches */
.coll-swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.coll-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coll-swatch:hover { transform: scale(1.12); }

.coll-swatch.selected {
  border-color: var(--gold);
  transform: scale(1.1);
}

.coll-swatch-check {
  font-size: 0.6rem;
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* Fabric checklist */
.coll-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.coll-check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.coll-check-item input { display: none; }

.coll-check-box {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}

.coll-check-item.checked .coll-check-box {
  background: var(--rose);
  border-color: var(--rose);
}

.coll-check-item.checked .coll-check-box::after {
  content: '';
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.coll-check-label {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--charcoal);
}

/* Offer toggle switch */
.coll-toggle-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.coll-toggle-switch input { display: none; }

.coll-toggle-track {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: var(--border);
  flex-shrink: 0;
  position: relative;
  transition: background var(--transition);
}

.coll-toggle-track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.coll-toggle-switch input:checked ~ .coll-toggle-track {
  background: var(--gold);
}

.coll-toggle-switch input:checked ~ .coll-toggle-track::after {
  transform: translateX(18px);
}

.coll-toggle-label {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--charcoal);
}

/* Filter actions */
.coll-filter-actions {
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.coll-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--rose);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
}

.coll-apply-btn:hover { background: #6d2d41; }

.coll-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.coll-reset-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Bootstrap offcanvas override — keep backdrop brand style */
.offcanvas-backdrop {
  background: rgba(26, 12, 8, 0.55) !important;
}

/* ── Product card (pc__) — used on collections + other grids ── */
.pc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.pc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(139, 58, 82, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.pc__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blush);
  border-radius: 2px 2px 0 0;
}

.pc__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.pc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.pc:hover .pc__img { transform: scale(1.05); }

.pc__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(145deg, var(--blush), var(--rose-light));
  color: var(--rose-light);
}

/* Quick View FAB — white circle + bag; always visible; .quick-view-btn → modal */
.pc__qv-circle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.pc__qv-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  background: #fff;
  color: var(--rose);
}

.pc__qv-circle:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* Badges */
.pc__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

.pc__badge--new    { background: var(--rose); color: #fff; }
.pc__badge--offer  { background: var(--gold); color: var(--charcoal); }
.pc__badge--best   { background: var(--charcoal); color: var(--gold); }

/* Wishlist */
.pc__wishlist {
  position: absolute;
  top: 9px;
  right: 10px;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition), background var(--transition);
}

.pc__wishlist:hover, .pc__wishlist.active {
  color: var(--rose);
  background: #fff;
  transform: scale(1.12);
}

/* Card body */
.pc__body {
  padding: 0.85rem 0.9rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.pc__category {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.pc__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 0 0 0.5rem;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.pc__name:hover { color: var(--rose); }

.pc__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.pc__price-new {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  font-weight: 400;
}

.pc__price-old {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 300;
}

.pc__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 0.8rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
}

.pc__cart-btn:hover { background: var(--rose); }

/* Collections grid: cart removed — tighten spacing under price */
.pc--no-cart .pc__price-row {
  margin-bottom: 0;
}

.pc--no-cart .pc__body {
  padding-bottom: 0.9rem;
}

/* All product grids using .pc — same gutters & touch behavior as collections */
@media (max-width: 767px) {
  .product-grid-pc.row {
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0.75rem;
  }
}

@media (max-width: 767px) and (hover: none) {
  .pc:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
  }

  .pc:hover .pc__img {
    transform: none;
  }
}

/* ── mobile card tweaks (collections editorial density — all pages) ── */
@media (max-width: 575px) {
  .product-grid-pc.row {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.65rem;
  }

  .pc__body {
    padding: 0.55rem 0.5rem 0.68rem;
  }

  .pc--no-cart .pc__body {
    padding-bottom: 0.65rem;
  }

  .pc__name {
    font-size: 0.76rem;
    margin-bottom: 0.3rem;
  }

  .pc__category {
    font-size: 0.58rem;
    margin-bottom: 0.2rem;
  }

  .pc__price-new {
    font-size: 0.88rem;
  }

  .pc__price-old {
    font-size: 0.7rem;
  }

  .pc__badge {
    font-size: 0.5rem;
    padding: 0.18rem 0.32rem;
  }

  .pc__wishlist {
    width: 28px;
    height: 28px;
    font-size: 0.66rem;
    top: 7px;
    right: 7px;
  }

  .pc__qv-circle {
    width: 38px;
    height: 38px;
    bottom: 8px;
    right: 8px;
    font-size: 0.88rem;
  }

  .pc__cart-btn {
    font-size: 0.65rem;
    padding: 0.52rem 0.6rem;
  }
}

/* Wide-view (2-col) card adjustments */
.coll-prod-col--wide .pc__image-wrap { aspect-ratio: 4 / 3; }
.coll-prod-col--wide .pc__name { font-size: 1rem; -webkit-line-clamp: 3; }
.coll-prod-col--wide .pc__body { padding: 1rem 1.1rem 1.15rem; }

/* Empty state */
.coll-empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.coll-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
  color: var(--gold-deep);
}

.coll-empty-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.65rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.coll-empty-sub {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.coll-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background var(--transition);
}

.coll-empty-btn:hover { background: #6d2d41; color: #fff; }

/* Legacy: keep colour swatch used on other pages */
.color-swatch-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.color-swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}

.color-swatch.selected { border-color: var(--gold); transform: scale(1.15); }

/* Range slider */
.form-range::-webkit-slider-thumb { background: var(--gold); }
.form-range:focus { outline: none; box-shadow: none; }

/* Legacy form-check (used on other pages) */
.form-check-input:checked {
  background-color: var(--rose);
  border-color: var(--rose);
}
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(139,58,82,0.15); border-color: var(--rose); }
.form-check-label { font-size: 0.84rem; font-weight: 300; color: var(--charcoal); cursor: pointer; }

/* ── 21. QUICK VIEW MODAL ── */
.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.quick-view-modal.open { opacity: 1; pointer-events: all; }

.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,28,30,0.55);
  backdrop-filter: blur(4px);
}

.qv-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--border);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

#qvImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Extra product lines (sale / stock) — keeps original card layout */
.qv-cat-line {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.qv-sale-pill {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.32rem 0.6rem;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  font-weight: 500;
  line-height: 1.3;
}

.qv-stock-line {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
}

.qv-stock-ok { color: #2e7d32; font-weight: 500; }
.qv-stock-meta { color: var(--muted); font-weight: 300; }
.qv-stock-bad { color: #c62828; font-weight: 500; }

.qv-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}

.qv-close:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

#qvAddCart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Account dashboard — wishlist grid uses shared .pc cards + text remove */
.dash-wish-remove-link {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color var(--transition);
}

.dash-wish-remove-link:hover {
  color: #c62828;
}

/* Quick View: modal-sized prices (PDP clamp is too large here) */
.qv-card .pdp-price-block {
  margin: 0.35rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.qv-card .pdp-price-new {
  font-size: 1.5rem;
}

.qv-card .pdp-price-old {
  font-size: 0.92rem;
}

/* Quick View — mobile / narrow sheet */
@media (max-width: 767px) {
  .quick-view-modal .qv-card {
    padding: 1.35rem 1rem 1.25rem;
    padding-top: 2.75rem;
  }

  .quick-view-modal .qv-card .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 1rem;
  }

  .quick-view-modal .qv-close {
    top: 0.65rem;
    right: 0.65rem;
  }

  .qv-card #qvName {
    font-size: 1.35rem !important;
    line-height: 1.2;
    margin-bottom: 0.35rem !important;
  }

  .qv-card .qv-cat-line {
    font-size: 0.68rem;
    margin-bottom: 0.25rem;
  }

  .qv-card .pdp-price-block {
    margin: 0.25rem 0 0.4rem;
  }

  .qv-card .pdp-price-new {
    font-size: 1.35rem;
  }

  .qv-card .pdp-price-old {
    font-size: 0.82rem;
  }

  .qv-card .qv-sale-pill {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 0.35rem;
    font-size: 0.62rem;
  }

  .qv-card .qv-stock-line {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
  }

  .qv-card .qty-selector {
    margin-top: 0.85rem !important;
    width: 100%;
    max-width: 220px;
    justify-content: space-between;
  }

  .qv-card .qty-btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .qv-card .qty-val {
    flex: 1;
    font-size: 0.95rem;
  }

  .qv-card .d-flex.flex-column.gap-2 {
    gap: 0.65rem !important;
    margin-top: 0.85rem !important;
  }

  .qv-card .btn-rose.w-100,
  .qv-card .btn-gold-outline.w-100 {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 575px) {
  .quick-view-modal {
    padding: 0;
    align-items: flex-end;
  }

  .quick-view-modal .qv-card {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    -webkit-overflow-scrolling: touch;
  }

  .qv-card #qvName {
    font-size: 1.28rem !important;
  }
}

/* ── 22. PRODUCT DETAIL ── */
/* Gallery: main image + right-side thumbs (desktop) */
.pdp-gallery__layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  max-width: min(440px, 100%);
  margin: 0 auto;
}

.pdp-gallery .main-image {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
  border: 1px solid rgba(232, 217, 192, 0.9);
  position: relative;
}

.pdp-gallery .main-image img,
.pdp-gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: default;
}

.pdp-gallery__carousel,
.pdp-gallery__carousel .carousel-inner,
.pdp-gallery__carousel .carousel-item {
  width: 100%;
  height: 100%;
}

.pdp-gallery__carousel {
  position: absolute;
  inset: 0;
}

.pdp-gallery__carousel .carousel-inner {
  height: 100%;
}

/* Ensure fade carousel always fills the frame (prevents bottom blank gap) */
.pdp-gallery__carousel .carousel-item {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.pdp-gallery__carousel .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.pdp-gallery__carousel .carousel-control-prev,
.pdp-gallery__carousel .carousel-control-next {
  width: 18%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pdp-gallery .main-image:hover .pdp-gallery__carousel .carousel-control-prev,
.pdp-gallery .main-image:hover .pdp-gallery__carousel .carousel-control-next {
  opacity: 1;
}

.pdp-gallery .main-image:hover .pdp-gallery__img { transform: scale(1.02); }

/* PDP carousel indicators (mobile only) */
.pdp-gallery__indicators {
  display: none;
  gap: 6px;
  margin: 0;
}

@media (max-width: 991.98px) {
  .pdp-gallery__indicators {
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 5;
  }

  .pdp-gallery__indicators button {
    width: 18px;
    height: 2px;
    border: none;
    border-radius: 0;
    background: #c9a84c;
    opacity: 0.35;
    padding: 0;
    margin: 0;
    transition: opacity 0.2s ease, width 0.2s ease;
  }

  .pdp-gallery__indicators button.active {
    opacity: 1;
    width: 28px;
  }
}

/* Thumbnail column wrapper — holds nav arrows + clip layer */
.pdp-thumbs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 76px;
  flex-shrink: 0;
}

/* Clip shell: fixed height viewport — NO overflow scroll, NO scrollbar ever */
.pdp-thumbs-clip {
  width: 76px;
  overflow: hidden;
  flex-shrink: 0;
  max-height: min(72vh, calc(340px * 4 / 3 + 4px));
}

/* Up / down nav arrows */
.pdp-thumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text-muted, #888);
  cursor: pointer;
  font-size: 0.72rem;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.pdp-thumb-nav:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.pdp-thumb-nav--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Strip uses transform to "scroll" — no overflow, no scrollbar at all */
.pdp-thumbs--left {
  width: 76px;
  overflow: visible;
  will-change: transform;
  transition: transform 0.3s ease;
}

.pdp-thumb-btn {
  display: block;
  width: 76px;
  padding: 0;
  margin: 0 0 0.5rem;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 0;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
}

.pdp-thumb-btn:last-child { margin-bottom: 0; }

.pdp-thumb-btn img {
  width: 100%;
  aspect-ratio: 3/4;
  height: auto;
  max-height: 104px;
  object-fit: cover;
  display: block;
}

.pdp-thumb-btn:hover,
.pdp-thumb-btn.active {
  opacity: 1;
  border-color: var(--gold);
}

/* Wishlist on main product image (PDP) */
.pdp-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.pdp-wishlist-btn:hover,
.pdp-wishlist-btn.active {
  color: var(--rose);
  background: #fff;
  transform: scale(1.06);
}

.pdp-wishlist-btn:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.65);
  outline-offset: 2px;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 76px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  overflow: visible;   /* clip is handled by .pdp-thumbs-clip parent */
  max-height: none;    /* max-height lives on .pdp-thumbs-clip now */
  align-self: stretch;
  scrollbar-width: thin;
}

.pdp-main-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(160deg, var(--blush), var(--rose-light));
}

.pdp-thumbs img {
  width: 100%;
  aspect-ratio: 3/4;
  height: auto;
  max-height: 104px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all var(--transition);
  flex-shrink: 0;
}

.pdp-thumbs img.active, .pdp-thumbs img:hover { opacity: 1; border-color: var(--gold); }

@media (max-width: 991.98px) {
  .pdp-gallery__layout {
    flex-direction: column;
    max-width: 100%;
    align-items: center;
  }

  .pdp-gallery .main-image {
    max-width: min(380px, 100%);
    order: 1;
    width: 100%;
  }

  .pdp-thumbs--left {
    display: none;
  }

  .pdp-thumbs {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    max-width: min(360px, 100%);
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    order: 2;
    padding-bottom: 0.25rem;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .pdp-thumbs img {
    width: 68px;
    max-height: 90px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }
}

/* ── Product detail page: info, tabs, related (product.php) ── */
.pdp-page { position: relative; }

.pdp-info {
  padding-top: 0.25rem;
}

.pdp-product-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 600;
  color: #2c1a08;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.pdp-meta {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.84rem;
}

.pdp-rating-stars {
  color: #b8882a;
  letter-spacing: 0.05em;
}

.pdp-rating-text {
  color: var(--muted);
  font-size: 0.8rem;
}

.pdp-rating-count {
  opacity: 0.55;
}

.pdp-review-link {
  font-size: 0.72rem;
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-review-link:hover {
  color: var(--rose);
  opacity: 0.9;
}

.pdp-rule {
  height: 1px;
  background: rgba(232, 217, 192, 0.95);
  margin: 1rem 0;
}

.pdp-short-desc {
  font-size: 0.92rem;
  margin: 1.15rem 0 1.35rem;
}

.pdp-short-desc.rte-content {
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

.pdp-discount-pill {
  font-size: 0.78rem;
}

.spec-grid--pdp {
  padding: 1rem 1.15rem;
  background: #fffef9;
  border: 1px solid rgba(232, 217, 192, 0.9);
  border-radius: 0;
}

/* Specs table (PDP) */
.spec-table {
  padding: 1rem 1.15rem;
  background: #fffef9;
  border: 1px solid rgba(232, 217, 192, 0.9);
  border-radius: 0;
}

.spec-table--card {
  padding: 0;
  background: transparent;
  border: none;
}

.spec-table__t {
  width: 100%;
  border-collapse: collapse;
}

.spec-table__t tr + tr {
  border-top: 1px solid rgba(232, 217, 192, 0.85);
}

.spec-table__t th,
.spec-table__t td {
  padding: 0.7rem 0;
  vertical-align: top;
}

.spec-table__t th {
  width: 44%;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.spec-table__t td {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 400;
  text-align: left;
}

/* Show table only on mobile (keep desktop unchanged) */
.spec-table--show-mobile { display: none; }

@media (max-width: 767.98px) {
  .spec-grid--hide-mobile { display: none !important; }
  .spec-table--show-mobile { display: block; }
}

/* PDP bottom actions (mobile fixed bar) */
.pdp-actions {
  display: flex;
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
}

.pdp-actions__btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .pdp-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    margin: 0 !important;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(250, 246, 240, 0.92) 0%, rgba(250, 246, 240, 0.98) 100%);
    border-top: 1px solid rgba(232, 217, 192, 0.95);
    box-shadow: 0 -14px 30px rgba(28, 28, 30, 0.12);
    backdrop-filter: blur(10px);
  }

  .pdp-actions__btn {
    min-height: 46px;
    border-radius: 10px !important;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    width: 100%;
    box-shadow: none !important;
    transform: none !important;
  }

  .pdp-actions__btn i {
    font-size: 0.9rem;
  }

  .pdp-actions .btn-rose {
    border: 1px solid rgba(139, 58, 82, 0.18);
  }

  .pdp-actions .btn-charcoal {
    color: #f0d898 !important;
    background: #171719;
    border: 1px solid rgba(240, 216, 152, 0.18);
  }

  .pdp-actions .btn-charcoal:hover {
    background: #171719;
  }

  .pdp-page {
    padding-top: 1.5rem !important;
    padding-bottom: 92px;
  }

  .pdp-page > .row.g-5 {
    --bs-gutter-y: 1.75rem;
  }

  /* Reduce vertical gaps between PDP sections (mobile only) */
  .pdp-rule {
    margin: 0.75rem 0;
  }

  .pdp-short-desc {
    margin: 0.75rem 0 0.9rem;
  }

  .spec-grid--pdp,
  .spec-table--pdp {
    margin-bottom: 0.9rem !important;
  }

  .pdp-info .pdp-qty-block {
    margin-bottom: 0.75rem !important;
  }

  .trust-bar {
    margin-top: 0.75rem;
  }

  .pdp-tabs-section {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .product-tabs {
    margin-bottom: 1.25rem;
  }

  .pdp-related-section {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }
}

.pdp-stock--in {
  color: #2e7d32;
}

.pdp-stock--out {
  color: #c62828;
}

.pdp-info .pdp-qty-block .form-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: #7a5c3a;
}

.pdp-add-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pdp-tabs-section {
  border-top: 1px solid rgba(232, 217, 192, 0.95);
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.pdp-tab-lead {
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 1rem;
}

.pdp-detail-card {
  background: #faf6f0;
  border-top: 3px solid #b8882a;
}

.pdp-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 2;
}

.pdp-icon-list__i {
  color: var(--gold-deep);
  font-size: 0.7rem;
}

.pdp-pin-help {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.pdp-pin-row .pdp-pin-input {
  flex: 1;
  border-radius: 0;
}

.pdp-pin-result {
  font-size: 0.82rem;
  margin-top: 0.6rem;
  font-weight: 300;
}

.pdp-returns-card {
  max-width: 680px;
}

.pdp-returns-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 2.2;
}

.pdp-returns-list__ok {
  color: #2e7d32;
  font-size: 0.75rem;
}

.pdp-returns-list__note {
  color: var(--gold-deep);
  font-size: 0.75rem;
}

.pdp-returns-contact {
  margin-top: 1rem;
  display: inline-flex;
}

.pdp-reviews-anchor {
  position: relative;
  top: -8px;
  outline: none;
}

.pdp-reviews-score {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4.5rem;
  color: #b8882a;
  line-height: 1;
}

.pdp-reviews-stars-big {
  color: #b8882a;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.pdp-reviews-based {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.4rem;
}

.pdp-rating-row-bars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
}

.pdp-rating-bar-label {
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.pdp-rating-bar-track {
  flex: 1;
  height: 5px;
  background: var(--blush);
  border-radius: 3px;
  overflow: hidden;
}

.pdp-rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 3px;
}

.pdp-rating-bar-pct {
  width: 28px;
  color: var(--muted);
  flex-shrink: 0;
}

.pdp-reviews-write-btn {
  font-size: 0.75rem !important;
  padding: 0.65rem 1rem !important;
}

.pdp-review-card-meta {
  text-align: right;
}

.pdp-verified-badge {
  font-size: 0.62rem;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  font-weight: 500;
}

.pdp-review-card-date {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.pdp-review-card-stars {
  font-size: 0.78rem;
  color: #b8882a;
}

.pdp-review-quote {
  font-size: 0.86rem;
}

.testimonial-card--pdp {
  background: #fffef9;
  border: 1px solid rgba(232, 217, 192, 0.85);
}

.pdp-related-section {
  border-top: 1px solid rgba(232, 217, 192, 0.95);
}

.pdp-related-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0;
  color: #2c1a08;
}

.pdp-related-more {
  font-size: 0.75rem;
}

/* Rich text (product + tabs) */
.rte-content {
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}

.rte-content p {
  margin: 0 0 0.85rem;
}

.rte-content ul,
.rte-content ol {
  padding-left: 1.1rem;
  margin: 0 0 0.85rem;
}

.rte-content h2,
.rte-content h3,
.rte-content h4 {
  color: var(--charcoal);
  margin: 1rem 0 0.5rem;
  font-family: var(--font-display);
}

.rte-content blockquote {
  border-left: 3px solid rgba(139, 58, 82, 0.35);
  padding-left: 0.9rem;
  margin: 0 0 0.85rem;
  color: var(--charcoal);
}

/* PDP info */
.pdp-price-block { margin: 1.25rem 0; }

.pdp-price-new {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  color: var(--rose);
  line-height: 1;
}

.pdp-price-old {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 300;
}

.pdp-you-save { font-size: 0.82rem; color: #2e7d32; font-weight: 400; }

/* Spec grid */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; }

.spec-pair { display: flex; flex-direction: column; gap: 0.15rem; }
.spec-key { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.spec-val { font-size: 0.88rem; color: var(--charcoal); font-weight: 400; }

/* Qty selector */
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--ivory);
  width: fit-content;
}

.qty-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: background var(--transition);
}

.qty-btn:hover { background: var(--blush); }
.qty-val { width: 42px; text-align: center; font-size: 0.9rem; font-weight: 400; }

/* Product tabs */
.product-tabs { border-bottom: 1px solid var(--border); margin-bottom: 2rem; }

.product-tab-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
}

.product-tab-btn.active {
  color: var(--rose);
  border-bottom-color: var(--gold);
}

/* Trust bar (PDP) */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--cream);
}

.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted); font-weight: 400;
}

.trust-item i { color: var(--gold-deep); width: 14px; text-align: center; }

/* ── 23. CART ── */
.cart-table-head {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.cart-item-img {
  width: 80px; height: 100px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* Order summary */
.order-summary-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}

@media (max-width: 991px) {
  .order-summary-box { position: static; }
}

.order-summary-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
}

.summary-total {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose);
}

.coupon-input-group {
  display: flex;
  gap: 0;
  margin: 1.25rem 0;
}

.coupon-input {
  flex: 1;
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
  font-family: var(--font-body);
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  background: var(--ivory);
}

.coupon-input:focus { border-color: var(--gold); }

.coupon-btn {
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  padding: 0.65rem 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.coupon-btn:hover { background: #2d2d30; }

/* Empty cart state */
.empty-state { padding: 4rem 2rem; text-align: center; }
.empty-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(242,217,208,0.5);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--rose-light);
}

/* ── 24. CHECKOUT STEPS ── */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: all var(--transition);
}

.checkout-step.done  { color: var(--gold-deep); }
.checkout-step.done .step-num  { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.checkout-step.active { color: var(--rose); }
.checkout-step.active .step-num { background: var(--rose); border-color: var(--rose); color: #fff; }

.checkout-step-line {
  flex: 1; height: 1px;
  background: var(--border);
  min-width: 2rem; max-width: 6rem;
  margin: 0 0.5rem;
}

/* Form section card */
.form-section {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,175,55,0.12);
}

.form-section-title i { color: var(--gold-deep); }

/* Form inputs */
.form-control, .form-select {
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  outline: none;
  background: #fff;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

/* Payment option card */
.payment-option {
  border: 1.5px solid var(--border);
  padding: 1rem 1.25rem;
  margin-bottom: 0.65rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.payment-option:hover { border-color: var(--gold); background: rgba(212,175,55,0.03); }
.payment-option.selected { border-color: var(--rose); background: rgba(139,58,82,0.03); }
.payment-option label { cursor: pointer; font-weight: 400; font-size: 0.88rem; margin: 0; }

/* ── 25. DASHBOARD ── */
.dashboard-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.dashboard-sidebar .dash-user-head {
  background: linear-gradient(135deg, #1a1012, var(--rose));
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
}

.dash-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  border: 2px solid rgba(212,175,55,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
}

.dash-user-name {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

.dash-user-email {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 300;
}

.dash-nav-links { padding: 0.5rem 0; }

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.84rem;
  color: var(--charcoal);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.dash-nav-item i { width: 16px; text-align: center; font-size: 0.82rem; color: var(--gold-deep); flex-shrink: 0; }
.dash-nav-item:hover { background: rgba(242,217,208,0.35); color: var(--rose); padding-left: 1.75rem; }
.dash-nav-item.active { background: rgba(242,217,208,0.5); color: var(--rose); border-left-color: var(--gold); font-weight: 500; }
.dash-nav-item.logout { color: #c62828; border-top: 1px solid var(--border); margin-top: 0.25rem; }
.dash-nav-item.logout i { color: #c62828; }
.dash-nav-item.logout:hover { background: rgba(198,40,40,0.05); }

/* Stat cards */
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; align-items: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(242,217,208,0.5);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: var(--rose);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* Order status badges */
.order-status {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.order-status.pending    { background: rgba(240,208,96,0.2);  color: var(--gold-deep);  border: 1px solid rgba(240,208,96,0.4); }
.order-status.processing { background: rgba(21,101,192,0.08); color: #1565C0;           border: 1px solid rgba(21,101,192,0.2); }
.order-status.shipped    { background: rgba(0,131,143,0.08);  color: #00838F;           border: 1px solid rgba(0,131,143,0.2); }
.order-status.delivered  { background: rgba(46,125,50,0.08);  color: #2E7D32;           border: 1px solid rgba(46,125,50,0.2); }
.order-status.cancelled  { background: rgba(198,40,40,0.08);  color: #C62828;           border: 1px solid rgba(198,40,40,0.2); }

/* user/_nav.php — sticky sidebar (all account pages) */
@media (max-width: 767.98px) {
  .dashboard-sidebar { position: static; margin-bottom: 1.5rem; }
}

/* ── 26. SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: none; }

/* ── 27. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes expandRule {
  from { width: 0; }
  to   { width: 40px; }
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ── 28. UTILITY ── */
.min-vh-50  { min-height: 50vh; }
.bg-ivory   { background-color: var(--ivory) !important; }
.bg-cream   { background-color: var(--cream) !important; }
.bg-charcoal { background-color: var(--charcoal) !important; }
.bg-blush   { background-color: var(--blush) !important; }
.section-divider { border:0; height:1px; background:linear-gradient(90deg, transparent, var(--border), transparent); margin:0; }

/* Page load */
body.loading { overflow: hidden; }
.page-loader {
  position: fixed; inset: 0; background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}
.page-loader.done { opacity: 0; pointer-events: none; }

.page-loader__inner {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.page-loader__logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(139,58,82,0.10));
}

.page-loader__ring {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 2px solid rgba(212,175,55,0.22);
  border-top-color: rgba(212,175,55,0.75);
  animation: akLoaderSpin 0.9s linear infinite;
}

@keyframes akLoaderSpin {
  to { transform: rotate(360deg); }
}

/* ── 29. RESPONSIVE ── */
@media (max-width: 991px) {
  /* Offer strip: single row on mobile (no horizontal scroll) */
  .offer-strip {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    min-height: 0;
  }

  .offer-block {
    flex: 1 1 0;
    min-width: 0;
    padding: 1.25rem 0.9rem;
    gap: 0.55rem;
    border-right: 1px solid rgba(212,175,55,0.15);
    border-bottom: none;
  }

  .offer-block .offer-icon {
    font-size: 1.25rem;
  }

  .offer-block h3 {
    font-size: 1rem;
  }

  .offer-block p {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .offer-block:last-child { border-right: none; }
  .dashboard-sidebar { position: static; margin-bottom: 1.5rem; }
  /* filter panel is now Bootstrap offcanvas — no sidebar rules needed */
}

@media (max-width: 767px) {
  /* Other responsive rules */
  .spec-grid { grid-template-columns: 1fr; }
  .cart-item-row { grid-template-columns: 70px 1fr; gap: 0.75rem; }
  .form-section { padding: 1.25rem; }
  .page-hero { padding: 1.5rem 0 2rem; }

  /* Collections (and similar): shorter hero — more room for grid */
  .page-hero.page-hero--compact {
    padding: 1.35rem 0 1.1rem;
  }

  .page-hero.page-hero--compact .breadcrumb {
    margin-bottom: 0.4rem;
  }

  .page-hero.page-hero--compact h1 {
    font-size: clamp(1.35rem, 5.2vw, 1.65rem);
    margin-bottom: 0.15rem;
  }

  .page-hero.page-hero--compact .page-hero-sub {
    font-size: 0.72rem;
    line-height: 1.45;
    max-width: 26rem;
  }

  .page-hero.page-hero--compact::before {
    width: 88px;
    height: 88px;
    opacity: 0.05;
    right: 2%;
  }

  .page-hero.page-hero--compact::after {
    width: 200px;
    height: 200px;
    bottom: -35%;
    right: -10%;
  }

  .section-heading h2 { font-size: 1.85rem; }
}

@media (max-width: 480px) {
  .page-hero.page-hero--compact {
    padding: 1.1rem 0 0.95rem;
  }

  .page-hero.page-hero--compact .page-hero-sub {
    font-size: 0.68rem;
  }
}

@media (max-width: 576px) {
  .nav-brand-name { font-size: 1.3rem; font-weight: 700; color: #1a3a72; }
  .checkout-steps { gap: 0; }
  .checkout-step span { display: none; }
  .checkout-step-line { min-width: 1rem; max-width: 3rem; }
}

/* ── 30. CONTACT PAGE ── */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  height: 100%;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.ci-sub {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
  margin-bottom: 1.75rem;
  display: block;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.ci-value {
  display: block;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .contact-info-card { padding: 1.5rem; margin-bottom: 0; }
}
@media (max-width: 767px) {
  .contact-info-card { padding: 1.25rem; }
  .ci-sub { margin-bottom: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Wedding page (wedding.php) — all styles live here; no inline CSS in template
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.wedding-hero-section {
  background: linear-gradient(160deg, #1a0a10 0%, #5c2436 45%, #8b3a52 75%, #b05060 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.wedding-hero-watermark {
  position: absolute;
  right: 3vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 30vw, 420px);
  height: auto;
  object-fit: contain;
  opacity: 0.06;
  filter: brightness(10);
  pointer-events: none;
}

.wedding-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.09) 0%, transparent 60%);
  pointer-events: none;
}

.wedding-hero-inner {
  position: relative;
  z-index: 2;
}

.wedding-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.wedding-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.wedding-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.wedding-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  margin-bottom: 1.1rem;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

.wedding-hero-headline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.5rem;
}

.wedding-hero-accent {
  color: var(--gold-light);
}

.wedding-hero-rule {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}

.wedding-hero-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.wedding-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.wedding-hero-cta-primary {
  border-radius: 2px;
  background: var(--gold);
  color: #1c1c1e !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
}

.wedding-hero-cta-secondary {
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero editorial mosaic (desktop) */
.wedding-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wedding-hero-mosaic-tall {
  grid-row: span 2;
  background: linear-gradient(160deg, #f2d9d0, #c9a0a8);
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 8px 8px 0 var(--gold);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  position: relative;
}

.wedding-hero-mosaic-tall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(242, 217, 208, 0.4), rgba(139, 58, 82, 0.6));
}

.wedding-hero-mosaic-tall-inner {
  position: relative;
  z-index: 1;
}

.wedding-hero-mosaic-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

.wedding-hero-mosaic-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 300;
}

.wedding-hero-mosaic-cell {
  background: linear-gradient(135deg, #5c2436, #8b3a52);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.wedding-hero-mosaic-cell--green {
  background: linear-gradient(135deg, #1f4d3a, #2d6b50);
}

.wedding-hero-mosaic-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.88rem;
  color: #fff;
  margin: 0;
}

/* Values strip */
.wedding-values-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.wedding-vals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.wedding-val-cell {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.wedding-val-icon {
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.6rem;
}

.wedding-val-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.wedding-val-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* Bridal collection section */
.wedding-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.wedding-eyebrow--spaced {
  margin-bottom: 1rem;
}

.wedding-section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  margin: 0;
  color: var(--charcoal);
}

.wedding-section-h2--editorial {
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.wedding-section-h2--ritual {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.wedding-section-h2--process {
  color: #fff;
}

.wedding-section-h2--cta {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

/* ── Bridal Collection + filters (wedding.php #bridal-collection only) ── */
.bridal-collection-section {
  background: #f5f0e8;
}

.bridal-collection-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.bridal-collection-header-text {
  flex: 1 1 16rem;
  min-width: 0;
}

.bridal-collection-eyebrow {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4963a;
  margin: 0 0 0.65rem;
  font-weight: 400;
  line-height: 1.35;
}

.bridal-collection-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: #1a1208;
  margin: 0 0 0.65rem;
}

.bridal-collection-rule {
  width: 48px;
  height: 2px;
  background: #c4963a;
  border: none;
  margin: 0;
}

.bridal-collection-view-all {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b2737;
  text-decoration: none;
  border-bottom: 1px solid #6b2737;
  padding-bottom: 3px;
  align-self: flex-end;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.bridal-collection-view-all:hover {
  color: #6b2737;
  border-bottom-color: #6b2737;
  opacity: 0.85;
}

.bridal-collection-view-all-arrow {
  margin-left: 0.15em;
}

@media (max-width: 575.98px) {
  .bridal-collection-header {
    flex-direction: column;
    align-items: stretch;
  }

  .bridal-collection-view-all {
    align-self: flex-end;
  }

  .bridal-collection-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
}

/* Horizontal filter tabs — scoped so offers.php .offer-tab stays unchanged */
#brideTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.25rem;
}

#brideTabs .offer-tab {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid #c4963a;
  border-radius: 0;
  background: transparent;
  color: #6b2737;
  cursor: pointer;
  line-height: 1.25;
  text-align: center;
  width: auto;
  min-width: 0;
  flex: 0 1 auto;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#brideTabs .offer-tab:hover:not(.active) {
  background: #f0e8d8;
  color: #6b2737;
  border-color: #c4963a;
}

#brideTabs .offer-tab:focus-visible {
  outline: 2px solid #c4963a;
  outline-offset: 2px;
}

#brideTabs .offer-tab.active {
  background: #6b2737;
  color: #f5f0e8;
  border-color: #6b2737;
}

/* Bridal grid uses shared .pc cards (same as collections); section chrome only below */

/* Bridal Collection — tablets / small screens (wedding.php): visibility + overflow only */
@media (max-width: 768px) {
  #bridal-collection.bridal-collection-section {
    overflow-x: hidden;
  }

  #bridal-collection .bridal-collection-header-text {
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    min-height: auto;
    max-height: none;
  }

  #bridal-collection .bridal-collection-eyebrow {
    display: block;
    visibility: visible;
    opacity: 1;
    color: #c4963a !important;
    -webkit-text-fill-color: #c4963a;
  }

  #bridal-collection .bridal-collection-title {
    visibility: visible;
    opacity: 1;
    color: #1a1208 !important;
    -webkit-text-fill-color: #1a1208;
  }

  #bridal-collection .bridal-collection-rule {
    visibility: visible;
    opacity: 1;
    display: block;
  }

  #bridal-collection .bridal-collection-view-all {
    visibility: visible;
    opacity: 1;
    color: #6b2737 !important;
    -webkit-text-fill-color: #6b2737;
  }
}

/* Bridal Collection — phones ≤480px (layout, tabs, grid) */
@media (max-width: 480px) {
  #bridal-collection.bridal-collection-section {
    padding: 32px 20px !important;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
  }

  #bridal-collection.bridal-collection-section .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    overflow: visible;
  }

  #bridal-collection .bridal-collection-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 1.5rem;
  }

  #bridal-collection .bridal-collection-header-text {
    width: 100%;
    flex: none;
    max-width: none;
    overflow: visible;
    min-height: auto;
    height: auto;
  }

  #bridal-collection .bridal-collection-eyebrow {
    display: block;
    font-size: 11px;
    color: #c4963a !important;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    visibility: visible;
    opacity: 1 !important;
    -webkit-text-fill-color: #c4963a;
    overflow: visible;
    height: auto;
    max-height: none;
    clip: unset;
    clip-path: none;
    position: relative;
    z-index: 1;
  }

  #bridal-collection .bridal-collection-title {
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #1a1208 !important;
    line-height: 1.15;
    margin: 0;
    visibility: visible;
    opacity: 1 !important;
    -webkit-text-fill-color: #1a1208;
    overflow: visible;
    clip: unset;
    clip-path: none;
    position: relative;
    z-index: 1;
  }

  #bridal-collection .bridal-collection-rule {
    width: 40px;
    height: 2px;
    background: #c4963a !important;
    display: block;
    margin-top: 10px;
    margin-bottom: 0;
    visibility: visible;
    opacity: 1 !important;
    overflow: visible;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  #bridal-collection .bridal-collection-view-all {
    display: inline-block;
    align-self: flex-start;
    margin-top: 12px;
    margin-left: 0;
    font-size: 11px;
    font-weight: 500;
    color: #6b2737 !important;
    border-bottom: 1px solid #6b2737;
    padding-bottom: 3px;
    white-space: normal;
    visibility: visible;
    opacity: 1 !important;
    -webkit-text-fill-color: #6b2737;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }

  #bridal-collection #brideTabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  #bridal-collection #brideTabs .offer-tab {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none;
    min-width: 0;
    font-size: 11px;
    padding: 8px 14px;
    border: 1px solid #c4963a;
    border-radius: 0;
    color: #6b2737 !important;
    background: transparent !important;
    box-sizing: border-box;
    align-self: flex-start;
    text-align: center;
    line-height: 1.25;
  }

  #bridal-collection #brideTabs .offer-tab:hover:not(.active) {
    background: #f0e8d8 !important;
    color: #6b2737 !important;
    border-color: #c4963a;
  }

  #bridal-collection #brideTabs .offer-tab.active {
    background: #6b2737 !important;
    color: #f5f0e8 !important;
    border-color: #6b2737 !important;
  }
}

.wedding-product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--blush), var(--rose-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--rose-light);
}

.wedding-btn-cart {
  border-radius: 2px;
  font-size: 0.72rem;
  padding: 0.55rem 0.8rem;
}

.wedding-empty-state {
  padding: 4rem 2rem;
}

.wedding-empty-icon {
  font-size: 2rem;
}

.wedding-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.wedding-empty-text {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.wedding-btn-rounded {
  border-radius: 2px;
}

/* Editorial */
.wedding-editorial-body {
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.wedding-editorial-body:last-of-type {
  margin-bottom: 1.75rem;
}

.wedding-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.wedding-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 300;
}

.wedding-feature-row i {
  color: var(--gold-deep);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Testimonials */
.wedding-testimonial-card {
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
}

.wedding-testimonial-card .stars {
  margin-bottom: 0.85rem;
}

.wedding-testimonial-card .review-text {
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.wedding-testimonial-card .reviewer-city {
  color: var(--muted);
}

.wedding-testimonial-card .reviewer-city em {
  color: var(--rose-light);
  font-size: 0.7rem;
}

.wedding-testimonials-empty {
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed var(--border);
  color: var(--muted);
}

.wedding-testimonials-empty-lead {
  font-size: 0.95rem;
}

/* Process section */
.wedding-process-section {
  background: linear-gradient(160deg, #1a0a10 0%, #5c2436 60%, #3d1522 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.wedding-process-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  object-fit: contain;
  opacity: 0.05;
  filter: brightness(10);
  pointer-events: none;
}

.wedding-process-inner {
  position: relative;
  z-index: 2;
}

.wedding-process-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.wedding-process-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

.wedding-process-grid-wrap {
  position: relative;
}

.wedding-process-line {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.2), var(--gold));
  display: none;
}

/* Connector only when 4 steps sit in one row (Bootstrap lg+) */
@media (min-width: 992px) {
  .wedding-process-line {
    display: block;
  }
}

.wedding-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

/*
 * Our Process — layout breakpoints (match Bootstrap lg / sm)
 * ≥992px  : 4 columns + gold connector line
 * ≤991.98px: 2 columns, line hidden (tablet / small laptop)
 * ≤575.98px: 1 column (phones — readable step stack)
 */

.wedding-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.wedding-process-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.wedding-process-icon-wrap i {
  font-size: 1.1rem;
  color: var(--gold);
}

.wedding-process-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--gold-light);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.wedding-process-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.wedding-process-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.wedding-process-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

.wedding-process-cta {
  border-radius: 2px;
  color: var(--gold) !important;
  border-color: var(--gold);
}

/* Occasion guide */
.wedding-occasion-intro {
  text-align: center;
  margin-bottom: 2.75rem;
}

.wedding-occasion-sub {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.occasion-guide-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}

.occasion-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.occasion-card-icon-outer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.occasion-card-icon-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.occasion-card-icon-inner i {
  font-size: 0.95rem;
}

.occasion-card--haldi .occasion-card-icon-outer,
.occasion-card--haldi .occasion-card-icon-inner {
  background: rgba(212, 175, 55, 0.12);
}

.occasion-card--haldi .occasion-card-icon-inner i {
  color: var(--gold-deep);
}

.occasion-card--mehendi .occasion-card-icon-outer,
.occasion-card--mehendi .occasion-card-icon-inner {
  background: rgba(46, 125, 50, 0.1);
}

.occasion-card--mehendi .occasion-card-icon-inner i {
  color: #2e7d32;
}

.occasion-card--sangeet .occasion-card-icon-outer,
.occasion-card--sangeet .occasion-card-icon-inner {
  background: rgba(139, 58, 82, 0.1);
}

.occasion-card--sangeet .occasion-card-icon-inner i {
  color: var(--rose);
}

.occasion-card--ceremony .occasion-card-icon-outer,
.occasion-card--ceremony .occasion-card-icon-inner {
  background: rgba(198, 40, 40, 0.1);
}

.occasion-card--ceremony .occasion-card-icon-inner i {
  color: #c62828;
}

.occasion-card--reception .occasion-card-icon-outer,
.occasion-card--reception .occasion-card-icon-inner {
  background: rgba(212, 175, 55, 0.12);
}

.occasion-card--reception .occasion-card-icon-inner i {
  color: var(--gold-deep);
}

.occasion-card--after .occasion-card-icon-outer,
.occasion-card--after .occasion-card-icon-inner {
  background: rgba(242, 217, 208, 0.5);
}

.occasion-card--after .occasion-card-icon-inner i {
  color: var(--rose-light);
}

.occasion-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.occasion-card-desc {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* Bottom CTA */
.wedding-cta-section {
  background: linear-gradient(108deg, #1a0a10 0%, #5c2436 50%, #8b3a52 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wedding-cta-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  object-fit: contain;
  opacity: 0.05;
  filter: brightness(10);
  pointer-events: none;
}

.wedding-cta-inner {
  position: relative;
  z-index: 2;
}

.wedding-cta-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.wedding-cta-subtext {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}

.wedding-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wedding-cta-primary {
  border-radius: 2px;
  background: var(--gold);
  color: #1c1c1e !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
  font-size: 0.8rem;
}

.wedding-cta-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.72rem 1.9rem;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.wedding-cta-sub:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.wedding-cta-sub i {
  font-size: 0.75rem;
}

/* Shared section rhythm */
.wedding-section {
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .wedding-section {
    padding: 5rem 0;
  }
}

@media (max-width: 991.98px) {
  .wedding-process-section {
    padding: 3.5rem 0;
  }

  .wedding-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
  }

  .wedding-process-line {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .wedding-vals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wedding-vals-grid > .wedding-val-cell {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .wedding-hero-section {
    min-height: 0;
    padding: 2.75rem 0 2.25rem;
  }

  .wedding-hero-section h1.wedding-hero-headline {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    margin-bottom: 0.85rem;
  }

  .wedding-hero-section .wedding-hero-eyebrow {
    margin-bottom: 0.65rem;
  }

  .wedding-hero-section > .container > .row {
    --bs-gutter-y: 1.5rem;
  }

  .wedding-hero-ctas {
    gap: 0.65rem;
  }

  .wedding-hero-ctas .btn-rose.wedding-hero-cta-primary,
  .wedding-hero-ctas .btn-gold-outline.wedding-hero-cta-secondary {
    font-size: 0.72rem;
    padding: 0.6rem 1.25rem;
  }

  .wedding-section {
    padding: 2.5rem 0;
  }

  .wedding-process-section {
    padding: 2.5rem 0;
  }

  .wedding-process-section .wedding-section-h2--process {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .wedding-process-intro {
    margin-bottom: 2rem;
  }

  #brideTabs {
    margin-bottom: 1.5rem;
  }

  .wedding-testimonial-grid .wedding-testimonial-card {
    padding: 0.85rem;
  }

  .wedding-testimonial-grid .wedding-testimonial-card .review-text {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }

  .wedding-testimonial-grid .wedding-testimonial-card .stars {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
  }

  .wedding-editorial-row {
    --bs-gutter-y: 2rem;
  }

  .wedding-editorial-body {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .wedding-editorial-body:last-of-type {
    margin-bottom: 1.25rem;
  }

  .occasion-guide-card {
    padding: 1.1rem 0.75rem;
  }

  .wedding-cta-section {
    padding: 2.75rem 0;
  }

  .wedding-process-icon-wrap {
    margin-bottom: 0.5rem;
  }
  .wedding-process-num {
    font-size: 1.2rem;
  }
}

/* Process: single column below Bootstrap sm (phones) */
@media (max-width: 575.98px) {
  .wedding-process-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 479px) {
  .wedding-hero-ctas {
    flex-direction: column;
    gap: 0.5rem;
  }

  .wedding-hero-ctas .btn-rose.wedding-hero-cta-primary,
  .wedding-hero-ctas .btn-gold-outline.wedding-hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .wedding-vals-grid {
    grid-template-columns: 1fr;
  }
}