/*
Theme Name:        Jaipur Handloomia
Theme URI:         https://jaipurhandloomia.com
Description:       Custom WordPress theme for Jaipur Handloomia — Indian handloom e-commerce. Heritage editorial aesthetic with cream, terracotta and gold palette. WooCommerce-ready, fully mobile responsive.
Version:           1.0.0
Author:            Jaipur Handloomia
Author URI:        https://jaipurhandloomia.com
Text Domain:       jaipur-handloomia
Tags:              e-commerce, woocommerce, custom-colors, custom-logo, full-width-template
License:           GPL-2.0-or-later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-cream:          #f7f0e1;
  --bg-page:           #fbf6ec;
  --bg-paper:          #ffffff;
  --bg-tint:           #f1e8d4;

  /* Ink / Text */
  --ink-darkest:       #1f130a;
  --ink-dark:          #2d1c10;
  --ink-mid:           #4a3527;
  --ink-soft:          #6e5a4a;
  --ink-mute:          #9b8a78;

  /* Lines */
  --line:              #e3d5b8;
  --line-soft:         #ebdfc7;

  /* Accent / Brand */
  --accent:            #c97b4a;
  --accent-dark:       #a25a2e;
  --accent-soft:       #efd9c4;
  --gold:              #b89752;
  --sale:              #7a6534;

  /* Header Special */
  --top-bar:           #2a1a0e;
  --top-bar-gold:      #d9b673;
  --star:              #c97b4a;

  /* Typography */
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'Manrope', sans-serif;
  --font-hindi:        'Tiro Devanagari Hindi', serif;

  /* Effects */
  --shadow-card:       0 1px 2px rgba(45, 28, 16, .04), 0 8px 24px rgba(45, 28, 16, .06);
  --radius:            0;

  /* Transitions */
  --ease:              cubic-bezier(.4, 0, .2, 1);
  --dur:               220ms;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dark);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  /* Do NOT set outline:none here — we use :focus-visible selectively below */
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-darkest);
}

p {
  max-width: 68ch;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 481px)  { .container { padding-inline: 24px; } }
@media (min-width: 641px)  { .container { padding-inline: 32px; } }
@media (min-width: 881px)  { .container { padding-inline: 48px; } }
@media (min-width: 1441px) { .container { padding-inline: 56px; } }

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

.show-mobile { display: none; }
.hide-mobile { display: block; }

@media (max-width: 880px) {
  .show-mobile { display: block; }
  .hide-mobile { display: none; }
}

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4     { gap: 1rem; }
.gap-6     { gap: 1.5rem; }
.gap-8     { gap: 2rem; }

/* ============================================================
   4. TYPOGRAPHY HELPERS
   ============================================================ */
.serif {
  font-family: var(--font-display);
  font-style: normal;
}

.serif-i {
  font-family: var(--font-display);
  font-style: italic;
}

.hindi {
  font-family: var(--font-hindi);
}

.mono-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.text-gold   { color: var(--top-bar-gold); }
.text-accent { color: var(--accent); }
.text-mute   { color: var(--ink-mute); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink-darkest);
  color: var(--bg-cream);
  border: 1.5px solid var(--ink-darkest);
}

.btn-primary:hover {
  background: var(--ink-dark);
  border-color: var(--ink-dark);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink-dark);
  border: 1.5px solid var(--line);
}

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

/* ============================================================
   6. ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--top-bar);
  color: var(--top-bar-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.45rem 1rem;
  position: relative;
  z-index: 200;
  overflow: hidden;
}

.ann-bar__messages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.ann-bar__sep {
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.ann-bar a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   7. SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}

body.is-scrolled .site-header {
  box-shadow: 0 2px 16px rgba(31, 19, 10, .08);
}

.header-inner {
  padding-block: 0;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  gap: 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  grid-column: 2;
}

.header-logo__en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--ink-darkest);
  letter-spacing: 0.01em;
}

.header-logo__hi {
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.header-nav--left  { grid-column: 1; justify-content: flex-end; }
.header-nav--right { grid-column: 3; justify-content: flex-start; }

.header-nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  padding: 0.4rem 0.65rem;
  border-radius: 2px;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.header-nav__link:hover,
.header-nav__link:focus-visible {
  color: var(--accent);
}

/* Icon cluster */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.header-icons--left  { margin-right: auto; }
.header-icons--right { margin-left: auto; }

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ink-mid);
  border-radius: 50%;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
}

.icon-btn:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* Counters on cart / wishlist */
.icon-count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding-inline: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* ============================================================
   8. MOBILE HEADER
   ============================================================ */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding-inline: 12px;
}

@media (max-width: 880px) {
  .header-grid  { display: none; }
  .mobile-header { display: flex; }
  .site-header { min-height: 60px; }

  .header-inner {
    padding-block: 0;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  color: var(--ink-mid);
  background: none;
  border: none;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 280ms var(--ease), opacity 280ms var(--ease);
  transform-origin: center;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile logo */
.mobile-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.mobile-logo__en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-darkest);
}

.mobile-logo__hi {
  font-family: var(--font-hindi);
  font-size: 0.7rem;
  color: var(--accent);
}

/* Mobile right icons */
.mobile-icons {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

/* ============================================================
   9. DRAWER
   ============================================================ */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31, 19, 10, .5);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms var(--ease), visibility 280ms var(--ease);
}

.drawer-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg-paper);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 300ms var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

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

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg-paper);
  z-index: 1;
}

.drawer__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-darkest);
}

.drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-soft);
  border-radius: 50%;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.drawer__close:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Drawer search */
.drawer__search {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}

.drawer__search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  background: var(--bg-cream);
}

.drawer__search-wrap svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-mute);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
}

.drawer__search-input {
  flex: 1;
  font-size: 0.875rem;
  color: var(--ink-dark);
  background: transparent;
}

.drawer__search-input::placeholder {
  color: var(--ink-mute);
}

/* Drawer nav */
.drawer__nav {
  flex: 1;
  padding: 0.75rem 0;
}

.drawer__nav-link {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-left: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.drawer__nav-link:hover {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-soft);
}

.drawer__section-label {
  padding: 0.5rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.5rem;
}

/* Drawer footer actions */
.drawer__actions {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer__action-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.5rem 0;
  transition: color var(--dur) var(--ease);
}

.drawer__action-link:hover { color: var(--accent); }

.drawer__action-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   10. SEARCH OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 19, 10, .8);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms var(--ease), visibility 260ms var(--ease);
}

.search-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: min(680px, 90vw);
}

.search-overlay__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bg-cream);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.search-overlay__field {
  display: flex;
  align-items: center;
  background: var(--bg-paper);
  border: 1.5px solid var(--line);
}

.search-overlay__field svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink-mute);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  margin-inline: 1rem;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  padding: 0.9rem 0;
  font-size: 1rem;
  color: var(--ink-dark);
  background: transparent;
}

.search-input::placeholder { color: var(--ink-mute); }

.search-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--bg-cream);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease);
}

.search-overlay__close:hover { opacity: 1; }

.search-overlay__close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}

/* Search results dropdown */
.search-results {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-top: none;
  max-height: 60vh;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  transition: background var(--dur) var(--ease);
}

.search-result-item:hover { background: var(--bg-tint); }

.search-result-item:last-child { border-bottom: none; }

.search-result-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-item__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-dark);
}

.search-result-item__price {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.15rem;
}

/* ============================================================
   11. FESTIVE COUNTDOWN BANNER
   ============================================================ */
.festive-banner {
  background: linear-gradient(90deg, #3d1a00 0%, #5a2800 50%, #3d1a00 100%);
  color: var(--top-bar-gold);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  display: none; /* shown by JS when a festival is within 40 days */
}

.festive-banner.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.festive-banner__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
}

.festive-banner__timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.festive-banner__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
}

.festive-banner__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}

.festive-banner__lbl {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.1rem;
}

.festive-banner__sep {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.5;
  margin-bottom: 6px;
}

/* ============================================================
   12. SITE FOOTER
   ============================================================ */
.site-footer {
  background: #1a0f08;
  color: #c8b49a;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer brand */
.footer-brand__logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand__logo-en {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--top-bar-gold);
}

.footer-brand__logo-hi {
  font-family: var(--font-hindi);
  font-size: 0.875rem;
  color: var(--accent);
  display: block;
}

.footer-brand__tagline {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #a09080;
  max-width: 26ch;
  margin-block: 0.75rem;
}

.footer-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--top-bar-gold);
  border: 1px solid rgba(217, 182, 115, .3);
  padding: 0.25rem 0.5rem;
}

/* Footer columns */
.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--top-bar-gold);
  margin-bottom: 1rem;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col__link {
  font-size: 0.875rem;
  color: #a09080;
  transition: color var(--dur) var(--ease);
  text-decoration: none;
}

.footer-col__link:hover { color: var(--top-bar-gold); }

/* Newsletter */
.footer-newsletter__copy {
  font-size: 0.875rem;
  color: #a09080;
  margin-bottom: 1rem;
  max-width: 28ch;
}

.footer-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-newsletter__input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.65rem 1rem;
  width: 100%;
  transition: border-color var(--dur) var(--ease);
}

.footer-newsletter__input::placeholder { color: #7a6a5a; }

.footer-newsletter__input:focus {
  border-color: var(--top-bar-gold);
}

.footer-newsletter__btn {
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  transition: background var(--dur) var(--ease);
  cursor: pointer;
}

.footer-newsletter__btn:hover { background: var(--accent-dark); }

/* Footer divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-block: 2.5rem;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 0.75rem;
  color: #6a5a4a;
}

.footer-bottom__copy a {
  color: #a09080;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: #6a5a4a;
  transition: color var(--dur) var(--ease);
}

.footer-legal-links a:hover { color: #a09080; }

/* Payment badges */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.payment-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a7a6a;
  border: 1px solid rgba(255,255,255,.1);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.payment-badge--upi {
  color: var(--top-bar-gold);
  border-color: rgba(217,182,115,.3);
}

/* ============================================================
   13. PRODUCT CARD
   ============================================================ */
.pcard {
  position: relative;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.pcard:hover {
  box-shadow: 0 4px 32px rgba(45, 28, 16, .12);
  transform: translateY(-2px);
}

/* Media container with flip */
.pcard-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-tint);
}

.pcard-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 400ms var(--ease), transform 600ms var(--ease);
}

.pcard-media__img--front { z-index: 1; opacity: 1; }
.pcard-media__img--back  { z-index: 2; opacity: 0; }

.pcard:hover .pcard-media__img--front { opacity: 0; }
.pcard:hover .pcard-media__img--back  { opacity: 1; }

.pcard:hover .pcard-media__img--front {
  transform: scale(1.04);
}

/* Floating badges */
.pcard-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pcard-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  color: #fff;
  background: var(--accent);
}

.pcard-badge--sale    { background: var(--sale); }
.pcard-badge--new     { background: var(--ink-darkest); }
.pcard-badge--limited { background: var(--accent-dark); }

/* Wishlist button */
.pcard-wish {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-paper);
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(31,19,10,.1);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
  opacity: 0;
  transform: scale(0.85);
}

.pcard:hover .pcard-wish {
  opacity: 1;
  transform: scale(1);
}

.pcard-wish:hover { color: var(--accent); }
.pcard-wish.is-wished { color: var(--accent); opacity: 1; transform: scale(1); }

.pcard-wish svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pcard-wish.is-wished svg { fill: currentColor; }

/* Quick-add / quick-view bar */
.pcard-qa {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--ink-darkest);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem;
  transform: translateY(100%);
  transition: transform 260ms var(--ease);
  cursor: pointer;
  border: none;
  width: 100%;
}

.pcard:hover .pcard-qa {
  transform: translateY(0);
}

.pcard-qa:hover { background: var(--accent); }

/* Card body */
.pcard-body {
  padding: 0.875rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.pcard-category {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.pcard-title {
  font-family: var(--font-display);
  font-size: 1.025rem;
  font-weight: 600;
  color: var(--ink-darkest);
  line-height: 1.3;
  margin-top: 0.15rem;
}

.pcard-title a { text-decoration: none; color: inherit; }
.pcard-title a:hover { color: var(--accent); }

.pcard-artisan {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-top: 0.1rem;
}

/* Stars */
.pcard-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.35rem;
}

.pcard-star {
  color: var(--star);
  font-size: 0.75rem;
  line-height: 1;
}

.pcard-star--empty { color: var(--line); }

.pcard-review-count {
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-left: 0.25rem;
}

/* Price */
.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.pcard-price__current {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-darkest);
}

.pcard-price__original {
  font-size: 0.8rem;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.pcard-price__off {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sale);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   14. MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}

.marquee::before { left: 0; background: linear-gradient(to right, var(--bg-cream), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--bg-cream), transparent); }

.marquee-inner {
  display: inline-flex;
  animation: marquee-scroll 32s linear infinite;
  gap: 0;
}

.marquee-inner:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   15. ANIMATIONS & EFFECTS
   ============================================================ */

/* Fade-in-up */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.fade-in-up.visible,
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-in-up:nth-child(1) { transition-delay: 0ms; }
.fade-in-up:nth-child(2) { transition-delay: 80ms; }
.fade-in-up:nth-child(3) { transition-delay: 160ms; }
.fade-in-up:nth-child(4) { transition-delay: 240ms; }
.fade-in-up:nth-child(5) { transition-delay: 320ms; }
.fade-in-up:nth-child(6) { transition-delay: 400ms; }

/* Float keyframes */
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-8px) scale(1.03); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg,
    var(--gold) 0%,
    var(--top-bar-gold) 25%,
    #fff8e0 50%,
    var(--top-bar-gold) 75%,
    var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ============================================================
   16. REEL CARD
   ============================================================ */
.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg-tint);
  border-radius: var(--radius);
}

.reel-card img,
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.reel-card:hover img,
.reel-card:hover video {
  transform: scale(1.04);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,19,10,.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
}

.reel-overlay__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.reel-overlay__meta {
  font-size: 0.7rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.reel-card:hover .reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.reel-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 3px;
}

/* ============================================================
   17. REVIEW CARD
   ============================================================ */
.rev-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rev-card__stars {
  display: flex;
  gap: 2px;
  color: var(--star);
  font-size: 0.85rem;
}

.rev-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-dark);
}

.rev-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.rev-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--accent-soft);
}

.rev-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.rev-card__location {
  font-size: 0.7rem;
  color: var(--ink-mute);
}

.rev-card__verified {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* ============================================================
   18. TRUST BAR
   ============================================================ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 640px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .trust-bar { grid-template-columns: 1fr; }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}

.trust-item:last-child { border-right: none; }

.trust-item--cod {
  background: var(--bg-tint);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-dark);
  letter-spacing: 0.04em;
}

.trust-item__sub {
  font-size: 0.7rem;
  color: var(--ink-mute);
}

/* ============================================================
   19. STICKY CART
   ============================================================ */
.sticky-cart {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: var(--ink-darkest);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 24px rgba(31,19,10,.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sticky-cart.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cart svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.sticky-cart__count {
  background: var(--accent);
  border-radius: 99px;
  min-width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
}

/* ============================================================
   20. PAGE TOGGLE (Dev prototype pill)
   ============================================================ */
.page-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--ink-darkest);
  padding: 0.35rem;
  border-radius: 99px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.page-toggle__btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a09080;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: none;
}

.page-toggle__btn.active,
.page-toggle__btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   21. WOOCOMMERCE OVERRIDES
   ============================================================ */

/* Product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

@media (max-width: 880px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.woocommerce ul.products li.product {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

/* Prices */
.woocommerce .price,
.woocommerce-page .price {
  color: var(--ink-darkest) !important;
  font-family: var(--font-display) !important;
}

.woocommerce .price del,
.woocommerce-page .price del {
  color: var(--ink-mute) !important;
  font-size: 0.85em !important;
}

.woocommerce .price ins,
.woocommerce-page .price ins {
  text-decoration: none !important;
  color: var(--accent) !important;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--ink-darkest) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.6rem 1.25rem !important;
  transition: background var(--dur) var(--ease) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--accent) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--accent) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--accent-dark) !important;
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--sale) !important;
  border-radius: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  min-height: auto !important;
  min-width: auto !important;
  padding: 0.2rem 0.5rem !important;
  line-height: 1.4 !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  padding: 0.6rem 0.875rem !important;
  font-family: var(--font-body) !important;
  color: var(--ink-dark) !important;
  background: var(--bg-paper) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Star ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
  color: var(--star) !important;
}

/* Remove default WC sidebar */
.woocommerce-page .woocommerce-sidebar,
.woocommerce aside.widget-area {
  display: none;
}

/* ============================================================
   22. SECTION UTILITIES
   ============================================================ */
.section {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--ink-darkest);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 0.5rem;
}

/* Product grid layouts */
.product-grid {
  display: grid;
  gap: 1.5rem;
}

.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .product-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .product-grid--4,
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .product-grid--4,
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================================
   23. COUNTER STAT
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

@media (max-width: 640px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  background: var(--bg-cream);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.4rem;
}

/* ============================================================
   24. MOBILE RESPONSIVE (≤880px)
   ============================================================ */
@media (max-width: 880px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(even) { border-right: none; }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .sticky-cart {
    bottom: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   25. SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .ann-bar__messages {
    flex-direction: column;
    gap: 0.2rem;
  }

  .ann-bar__sep { display: none; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-payments {
    justify-content: flex-start;
  }

  .sticky-cart {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
    width: calc(100% - 2rem);
    justify-content: center;
  }

  .sticky-cart.visible {
    transform: translateX(-50%);
  }

  .page-toggle {
    bottom: 4.5rem;
    max-width: calc(100vw - 2rem);
    overflow-x: auto;
  }

  .rev-card { padding: 1rem; }
}

/* ============================================================
   PATCH: Hero Carousel (classes generated by hero-carousel.php)
   ============================================================ */

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: #1a0d05;
}

/* All slides hidden by default — JS adds .is-active to show one */
.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.hero-carousel__slide.is-active .hero-carousel__bg {
  transform: scale(1.04);
}

.hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,13,5,.68) 0%, rgba(31,13,5,.28) 100%);
}

/* Content */
.hero-carousel__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 80px;
  max-width: 680px;
}

.hero-carousel__eyebrow {
  color: var(--top-bar-gold);
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-carousel__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--top-bar-gold);
  flex-shrink: 0;
}

.hero-carousel__heading {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: #fbf6ec;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-carousel__sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(251,246,236,.78);
  max-width: 440px;
}

.hero-carousel__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-carousel__whatsapp {
  background: rgba(37,211,102,.12);
  color: #25D366;
  border-color: rgba(37,211,102,.35);
  backdrop-filter: blur(4px);
}
.hero-carousel__whatsapp:hover {
  background: rgba(37,211,102,.22);
  color: #25D366;
}

/* Navigation arrows */
.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--dur) var(--ease);
}
.hero-carousel__arrow:hover { background: rgba(255,255,255,.22); }
.hero-carousel__arrow--prev { left: 20px; }
.hero-carousel__arrow--next { right: 20px; }

/* Dots */
.hero-carousel__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.hero-carousel__dot.is-active {
  width: 28px;
  background: var(--accent);
}

/* Floating motifs */
.hero-carousel__motifs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.motif {
  position: absolute;
}
.motif--paisley {
  bottom: 8%;
  left: 4%;
  width: clamp(60px,8vw,100px);
  animation: float2 9s ease-in-out infinite;
}
.motif--floral {
  top: 8%;
  right: 5%;
  width: clamp(70px,9vw,110px);
  animation: float1 7s ease-in-out infinite;
}
.motif--ambi {
  top: 22%;
  left: 2%;
  width: clamp(50px,6vw,80px);
  animation: float3 8s ease-in-out infinite;
}

/* Mandala ring */
.hero-carousel__mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.mandala-ring {
  width: clamp(300px,55vw,700px);
  height: auto;
  animation: rotate-slow 50s linear infinite;
  opacity: 0.07;
}

/* Hindi watermark */
.hero-carousel__watermark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: clamp(60px, 12vw, 160px);
  color: var(--top-bar-gold);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  font-family: var(--font-hindi);
}

/* Scroll hint */
.hero-carousel__scroll-hint {
  position: absolute;
  right: 28px;
  bottom: 32px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
}
.hero-carousel__scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.3);
  animation: float2 2s ease-in-out infinite;
}
.hero-carousel__scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Track (contains slides) */
.hero-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Mobile hero */
@media (max-width: 640px) {
  .hero-carousel { min-height: 480px; }
  .hero-carousel__heading { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-carousel__sub { font-size: 0.875rem; }
  .hero-carousel__arrow { width: 36px; height: 36px; }
  .hero-carousel__arrow--prev { left: 10px; }
  .hero-carousel__arrow--next { right: 10px; }
  .hero-carousel__scroll-hint { display: none; }
}

/* ============================================================
   PATCH: Marquee band aliases
   (PHP uses .marquee-band, CSS had .marquee — bridging both)
   ============================================================ */

.marquee-band {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  position: relative;
  padding-block: 13px;
}

.marquee-band .marquee-inner {
  display: inline-flex;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-band:hover .marquee-inner {
  animation-play-state: paused;
}

/* Terracotta variant */
.marquee-band--terracotta {
  background: var(--accent);
}
.marquee-band--terracotta .marquee-item {
  color: #fff;
}
.marquee-band--terracotta .marquee-sep circle {
  fill: rgba(255,255,255,.6);
}

/* Dark ink variant */
.marquee-band--dark {
  background: var(--ink-darkest);
}
.marquee-band--dark .marquee-item {
  color: var(--top-bar-gold);
}

.marquee-band .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 1.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   PATCH: Header — ensure the logo from WordPress custom logo
   fits correctly inside the centered column
   ============================================================ */

/* The custom_logo() function wraps the image in <a class="custom-logo-link"> */
.header-logo .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo .custom-logo {
  max-height: 60px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Custom logo link wrapper */

/* ============================================================
   PATCH: Stats strip counter elements
   ============================================================ */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--ink-darkest);
  line-height: 1;
}
.stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ============================================================
   PATCH: Product card — ensure media container is a positioned
   block so absolute children (badges, buttons) sit correctly
   ============================================================ */
.pcard {
  position: relative;
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
}
.pcard-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.pcard-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.pcard-media .img-back { opacity: 0; z-index: 2; }
.pcard-media .img-front { opacity: 1; z-index: 1; }
.pcard:hover .pcard-media .img-back  { opacity: 1; }
.pcard:hover .pcard-media .img-front { opacity: 0; }


/* Reverse marquee direction for dark band */
.marquee-inner--reverse {
  animation-direction: reverse;
}

/* ============================================================
   PATCH: Fade-in-up — ensure .fade-in-up works standalone
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible,
.fade-in-up.is-visible,
.is-active .fade-in-up {
  opacity: 1;
  transform: none;
}

/* ============================================================
   PATCH v3: Header logo size constraint + header grid fix
   ============================================================ */

/* Constrain the WordPress custom logo image */
.site-header .custom-logo-link,
.header-logo .custom-logo-link {
  display: block !important;
  line-height: 0 !important;
}
.site-header .custom-logo,
.header-logo .custom-logo,
.header-logo img {
  display: block !important;
  max-height: 52px !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Ensure single-row header layout */
.site-header .header-inner {
  padding-block: 0 !important;
}
.site-header .header-nav--left {
  grid-column: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}
.site-header .header-nav--right {
  grid-column: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  min-width: 0 !important;
}
.site-header .header-logo {
  grid-column: 2 !important;
}

/* ============================================================
   PATCH v3: Hero carousel — guaranteed visible first slide
   ============================================================ */

/* Make sure the section has full height */
section.hero-carousel,
.hero-carousel {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 540px !important;
  overflow: hidden !important;
  background: #2d1c10 !important; /* dark fallback so it's never cream */
}

/* First slide always visible without JS */
.hero-carousel__slide:first-child {
  opacity: 1 !important;
  pointer-events: auto !important;
}
/* But if JS has run and set another slide active, hide the first */
.hero-carousel__slide:first-child:not(.is-active):has(~ .is-active) {
  opacity: 0 !important;
}

/* Mandala ring — smaller so it doesn't dominate */
.mandala-ring {
  width: clamp(200px, 35vw, 480px) !important;
  opacity: 0.06 !important;
}

/* Strong overlay on .hero-carousel__bg so text is always readable */
.hero-carousel__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(31,13,5,.72) 0%, rgba(31,13,5,.35) 70%, rgba(31,13,5,.55) 100%) !important;
  z-index: 2 !important;
}
/* Slide content must sit above overlay */
.hero-carousel__content {
  position: relative !important;
  z-index: 10 !important;
}
/* Track fills the hero container */
.hero-carousel__track {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
/* Each slide fills the track */
.hero-carousel__slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
/* bg div fills the slide */
.hero-carousel__bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  z-index: 1 !important;
}

/* ============================================================
   AUDIT FIXES — v4
   Fixing all missing CSS for classes used in PHP templates.
   ============================================================ */

/* ── Utility classes used in templates ── */
.section-pad {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.link-u {
  color: var(--ink-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color var(--dur) var(--ease);
}
.link-u:hover { color: var(--accent); }

.hover-fade {
  transition: opacity var(--dur) var(--ease);
}
.hover-fade:hover { opacity: 0.7; }

/* Horizontal scroll — hide scrollbar */
.no-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scroll::-webkit-scrollbar { display: none; }

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* ── TRUST BAR (PHP uses trust-bar__item, trust-bar__icon, trust-bar__content) ── */
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--line-soft);
  transition: background var(--dur) var(--ease);
  background: var(--bg-cream);
}
.trust-bar__item:last-child { border-right: none; }

.trust-bar__item--accent {
  background: rgba(201,123,74,.07);
}

.trust-bar__icon svg {
  display: block;
  margin: 0 auto;
}

.trust-bar__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink-dark);
  letter-spacing: 0.04em;
  margin: 0;
}

.trust-bar__sub {
  font-size: 0.6875rem;
  color: var(--ink-mute);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-top: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
  .trust-bar__item:nth-child(4) { border-top: 1px solid var(--line-soft); border-right: none; }
}

/* ── PRODUCT CARD — aliases for PHP classes ── */

/* pcard-fabric: fabric tag overlaid on image top-left (below badges) */
.pcard-fabric {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 4;
  background: rgba(251,246,236,.88);
  color: var(--ink-mid);
  padding: 0.2rem 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(3px);
}
/* When there's also a sale badge, push fabric down */
.pcard-badge + .pcard-fabric {
  top: 2.2rem;
}

/* pcard-eyebrow: fabric label inside card body */
.pcard-eyebrow {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.2rem;
}

/* pcard-name: product title in body */
.pcard-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-darkest);
  line-height: 1.3;
  margin: 0 0 0.35rem;
}
.pcard-name a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur) var(--ease);
}
.pcard-name a:hover { color: var(--accent); }

/* pcard-rating: stars row */
.pcard-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0.3rem 0;
}

.pcard-stars .star-rating {
  font-size: 0.75rem !important;
  color: var(--star) !important;
}

/* pcard-swatches */
.pcard-swatches {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pcard-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
}
.pcard-swatch:hover,
.pcard-swatch:focus {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--bg-paper), 0 0 0 3px var(--ink-dark);
}

/* pcard-qa: the bottom bar with Quick Add + WhatsApp */
.pcard-qa {
  display: flex;
  align-items: stretch;
  background: var(--ink-darkest);
  transform: translateY(100%);
  transition: transform 260ms var(--ease);
  overflow: hidden;
}

/* Override the old single-button rule */
.pcard:hover .pcard-qa {
  transform: translateY(0);
}

.pcard-qa__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.55rem 0.75rem;
  color: rgba(251,246,236,.65);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.pcard-qa__link:hover { color: var(--top-bar-gold); }

.pcard-qa__link svg {
  width: 12px; height: 12px;
  stroke: currentColor; fill: none;
  flex-shrink: 0;
}

.pcard-quick-add {
  flex: 1;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.55rem 0.75rem !important;
  border-radius: 0 !important;
}

.pcard-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.75rem;
  border-left: 1px solid rgba(255,255,255,.1);
  color: #25D366;
  transition: background var(--dur) var(--ease);
  flex-shrink: 0;
}
.pcard-whatsapp:hover { background: rgba(37,211,102,.15); }
.pcard-whatsapp svg { display: block; }

/* pcard low-stock badge */
.pcard-badge--low-stock {
  background: rgba(31,19,10,.8);
  backdrop-filter: blur(4px);
  position: absolute;
  bottom: 3.5rem; /* above the qa bar */
  left: 0.75rem;
  z-index: 5;
  color: #fbf6ec;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}

/* ── SHOP PAGE LAYOUT ── */

.shop-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding-block: 2rem;
}

@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 880px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    display: none;
  }
  .filter-sidebar.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow-y: auto;
    background: var(--bg-paper);
    padding: 1.5rem;
  }
}

.shop-main {
  min-width: 0;
}

/* ── SHOP HERO ── */
.shop-hero {
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.shop-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: flex-end;
}

@media (max-width: 880px) {
  .shop-hero__inner {
    grid-template-columns: 1fr;
  }
  .shop-hero__tiles {
    display: none !important;
  }
}

.shop-hero__eyebrow {
  margin-bottom: 1rem;
}

.shop-hero__heading {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.97;
  color: var(--ink-darkest);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.shop-hero__desc {
  max-width: 52ch;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

.shop-hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.shop-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shop-hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--ink-darkest);
  line-height: 1;
}

.shop-hero__stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.shop-hero__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-self: stretch;
}

.shop-hero__tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-tint);
  text-decoration: none;
}

.shop-hero__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.shop-hero__tile:hover img { transform: scale(1.05); }

.shop-hero__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,19,10,.65) 0%, transparent 55%);
}

.shop-hero__tile-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.875rem;
  right: 0.875rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fbf6ec;
  line-height: 1.2;
  font-weight: 500;
}

/* ── SHOP OCCASIONS ── */
.shop-occasions {
  background: var(--bg-paper);
  border-bottom: 1px solid var(--line-soft);
}

.shop-occasions h2 {
  margin: 0.25rem 0 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink-darkest);
  font-weight: 500;
}

.shop-occasions__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.625rem;
  list-style: none;
  padding: 0;
}

@media (max-width: 1024px) {
  .shop-occasions__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .shop-occasions__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .shop-occasions__grid { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
}

.shop-occasions__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.25rem 0.5rem;
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  min-height: 80px;
}

.shop-occasions__tile:hover {
  background: var(--bg-tint);
  transform: translateY(-2px);
}

.shop-occasions__tile .serif {
  font-size: 0.875rem;
  color: var(--ink-dark);
  font-weight: 500;
}

.shop-occasions__tile .mono-eyebrow {
  font-size: 0.6rem;
  color: var(--ink-mute);
}

/* ── SHOP TOOLBAR ── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
}

.shop-toolbar__count {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin: 0;
}

.shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-toolbar__sort {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--ink-dark);
  cursor: pointer;
  appearance: auto;
}

.shop-toolbar__view-toggle {
  display: flex;
  border: 1px solid var(--line);
}

.view-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  color: var(--ink-mid);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.view-toggle-btn.is-active {
  background: var(--ink-darkest);
  color: #fff;
}

.view-toggle-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none;
}

.shop-toolbar__filter-btn {
  display: none;
}

@media (max-width: 880px) {
  .shop-toolbar__filter-btn { display: inline-flex !important; }
}

.shop-toolbar__filter-count {
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
  min-width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
}

/* ── FILTER SIDEBAR ── */
.filter-sidebar {
  background: var(--bg-paper);
  border-right: 1px solid var(--line-soft);
  padding-right: 1.5rem;
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}

.filter-sidebar__title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dark);
  margin: 0;
}

.filter-sidebar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ink-soft);
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  transition: color var(--dur), background var(--dur);
}

.filter-sidebar__close:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.filter-sidebar__close svg {
  stroke: currentColor; fill: none;
}

.filter-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.filter-sidebar__apply,
.filter-sidebar__clear {
  width: 100%;
  justify-content: center;
}

.filter-group {
  border-bottom: 1px solid var(--line-soft);
  padding: 0.875rem 0;
}

.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dark);
  cursor: pointer;
  font-family: var(--font-body);
}

.filter-group__toggle svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: transform var(--dur);
}

.filter-group__toggle[aria-expanded="false"] svg {
  transform: rotate(-90deg);
}

.filter-group__body {
  margin-top: 0.75rem;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.8125rem;
  color: var(--ink-mid);
}

.filter-checkbox input[type="checkbox"] {
  display: none;
}

.filter-checkbox__mark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--ink-mute);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), border-color var(--dur);
}

.filter-checkbox input[type="checkbox"]:checked + .filter-checkbox__mark {
  background: var(--ink-darkest);
  border-color: var(--ink-darkest);
}

.filter-checkbox input[type="checkbox"]:checked + .filter-checkbox__mark::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.filter-checkbox__label {
  flex: 1;
}

.filter-checkbox__count {
  color: var(--ink-mute);
  font-size: 0.65rem;
}

/* Color swatches in filter */
.filter-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-swatch-label {
  cursor: pointer;
  position: relative;
}

.filter-swatch {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  transition: box-shadow var(--dur);
}

.filter-swatch-label.is-active .filter-swatch,
.filter-swatch-label:hover .filter-swatch {
  box-shadow: 0 0 0 2px var(--bg-paper), 0 0 0 3.5px var(--ink-dark);
}

/* Price range */
.filter-price-range {
  position: relative;
  padding-block: 0.5rem;
}

.filter-price-range__input {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

.filter-price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--ink-mid);
  margin-top: 0.5rem;
}

/* Active filter chips */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--dur);
  border-radius: 999px;
}

.active-filter-chip:hover {
  background: var(--line);
  color: var(--ink-dark);
}

.active-filter-chip svg {
  width: 10px; height: 10px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

.active-filter-chip--clear {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

/* Color row above product grid */
.shop-color-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 0 0.5rem;
  flex-wrap: wrap;
}

.shop-color-row__label {
  color: var(--ink-mute);
  font-size: 0.65rem;
  white-space: nowrap;
}

.shop-color-row__swatches {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.shop-color-swatch {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: box-shadow var(--dur);
  text-decoration: none;
}

.shop-color-swatch.is-active,
.shop-color-swatch:hover {
  box-shadow: 0 0 0 2px var(--bg-paper), 0 0 0 3px var(--ink-dark);
}

/* ── PRODUCT GRID (shop) ── */
.shop-product-grid {
  margin-top: 1rem;
}

/* Default: 3-col grid */
.shop-product-grid .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem !important;
}

@media (max-width: 1024px) {
  .shop-product-grid .products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .shop-product-grid .products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
}

/* List view */
.shop-product-grid[data-view="list"] .products {
  grid-template-columns: 1fr !important;
}

.shop-product-grid[data-view="list"] .pcard {
  display: grid;
  grid-template-columns: 200px 1fr auto;
}

.shop-product-grid[data-view="list"] .pcard-media {
  aspect-ratio: auto;
  height: 220px;
}

/* Pagination */
.shop-pagination {
  padding: 2rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.shop-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.shop-load-more svg {
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

/* No results */
.shop-no-results {
  padding: 4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.shop-no-results .serif {
  font-size: 1.5rem;
  color: var(--ink-darkest);
}

/* Editorial breaker */
.editorial-breaker {
  padding: 2.5rem 2rem;
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
  text-align: center;
  margin: 0.5rem 0;
}

.editorial-breaker__eyebrow { margin-bottom: 0.75rem; }

.editorial-breaker__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink-darkest);
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
}

.editorial-breaker__attr {
  margin-top: 0.75rem;
  color: var(--ink-mute);
}

/* ── SHOP REVIEWS SECTION ── */
.shop-reviews {
  background: var(--bg-cream);
}

.shop-reviews__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.shop-reviews__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0.25rem 0;
}

.shop-reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--star);
  margin: 0.75rem 0 0.5rem;
}

.shop-reviews__stars svg { fill: currentColor; }

.shop-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 880px) {
  .shop-reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .shop-reviews__grid { grid-template-columns: 1fr; }
}

.shop-reviews__card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* rev-card (also used on shop page) */
.rev-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-dark);
  margin: 0;
  flex: 1;
}

.rev-card__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin: 0;
}

.rev-card__product {
  font-size: 0.65rem;
  color: var(--ink-mute);
  margin: 0;
}

/* ── SHOP UGC SECTION ── */
.shop-ugc { background: var(--bg-paper); }

.shop-ugc h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0.25rem 0 1.5rem;
}

.ugc-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

@media (max-width: 880px) {
  .ugc-strip__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .ugc-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 0.25rem; }
}

.ugc-strip__link {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-tint);
  text-decoration: none;
}

.ugc-strip__link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.ugc-strip__link:hover img { transform: scale(1.06); }

.ugc-strip__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,19,10,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-cream);
  transition: background 0.22s;
}

.ugc-strip__link:hover .ugc-strip__overlay {
  background: rgba(31,19,10,.38);
}

.ugc-strip__item { list-style: none; }

/* ── SHOP STORY SECTION ── */
.shop-story { background: var(--bg-tint); }

.shop-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 880px) {
  .shop-story__grid { grid-template-columns: 1fr 1fr; }
  .shop-story__copy { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .shop-story__grid { grid-template-columns: 1fr; }
}

.shop-story__copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0.5rem 0 0.875rem;
}

.shop-story__copy p {
  color: var(--ink-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.shop-story__card {
  background: var(--bg-paper);
  border: 1px solid var(--line-soft);
  padding: 1.5rem;
}

.shop-story__card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--accent-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.shop-story__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink-darkest);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.shop-story__card-desc {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── SHOP PRESS SECTION ── */
.shop-press {
  background: var(--bg-paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.shop-press__eyebrow {
  margin-bottom: 0.875rem;
}

.shop-press__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.shop-press__item { list-style: none; }

.shop-press__link {
  text-decoration: none;
  display: block;
  opacity: 0.65;
  transition: opacity var(--dur);
}

.shop-press__link:hover { opacity: 1; }

.shop-press__logo {
  height: 28px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter var(--dur), opacity var(--dur);
}

.shop-press__logo:hover { filter: none; opacity: 1; }

.shop-press__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: color var(--dur);
}

.shop-press__name:hover { color: var(--ink-dark); }

/* ── NEW ARRIVALS CAROUSEL ── */
.new-arrivals {
  background: var(--bg-page);
}

.new-arrivals__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.new-arrivals__heading-group .mono-eyebrow {
  margin-bottom: 0.4rem;
}

.new-arrivals__heading {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink-darkest);
  font-weight: 500;
}

.new-arrivals__nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  color: var(--ink-mid);
  cursor: pointer;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}

.carousel-arrow:hover {
  background: var(--ink-darkest);
  color: #fff;
  border-color: var(--ink-darkest);
}

.carousel-arrow svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.new-arrivals__track-wrap {
  position: relative;
  overflow: hidden;
}

.new-arrivals__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.new-arrivals__track::-webkit-scrollbar { display: none; }

.new-arrivals__track .pcard {
  width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.new-arrivals__footer {
  margin-top: 1.75rem;
  text-align: center;
}

.new-arrivals__footer .btn {
  gap: 0.5rem;
}

.new-arrivals__footer .btn svg {
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ── FONT LOADING: Ensure Google Fonts are requested ── */
/* (Declared in functions.php, but adding font-face fallback here) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Cormorant Garamond');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: local('Manrope');
}

/* ── BACKGROUND COLOR: Body should be cream ── */
body {
  background-color: var(--bg-cream) !important;
}

/* ── ADDITIONAL LANDING PAGE SECTIONS ── */

/* Stats strip */
.stats-strip {
  background: var(--bg-cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

/* Brand story section */
.brand-story {
  background: var(--bg-tint);
  position: relative;
  overflow: hidden;
}

/* Collections grid */
.collections-grid {
  background: var(--bg-page);
}

/* Occasion tiles */
.occasion-tiles {
  background: var(--bg-paper);
}

/* Bestsellers / horizontal scroll */
.bestsellers,
.new-arrivals-section {
  background: var(--bg-page);
}

/* Gifting banner */
.gifting-banner {
  background: var(--bg-cream);
}

/* Reviews carousel */
.reviews-carousel {
  background: var(--bg-cream);
}

/* UGC strip */
.ugc-strip {
  background: var(--bg-paper);
}

/* Newsletter */
.newsletter-section {
  background: var(--ink-darkest);
  color: #e9d9b7;
}

/* ── MARQUEE: ensure items are visible in dark band ── */
.marquee-band--dark .marquee-item {
  color: var(--top-bar-gold) !important;
}

.marquee-band--terracotta .marquee-item {
  color: #fff !important;
}

/* ── HEADER NAV ── */

/* ── PRODUCT CARD: aspect ratio fix (design calls for 3:4 in some contexts) ── */
.pcard-media {
  aspect-ratio: 3 / 4 !important;
}

/* ── RESPONSIVE FIXES ── */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 880px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .new-arrivals__track .pcard {
    width: 220px;
  }
  .shop-hero__heading {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }
}

@media (max-width: 640px) {
  .new-arrivals__track .pcard {
    width: 180px;
  }
}

/* ── PRODUCT PAGE LAYOUT ── */

.product-breadcrumb {
  padding-block: 0.875rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-paper);
  font-size: 0.75rem;
  color: var(--ink-mute);
}

.product-breadcrumb .woocommerce-breadcrumb {
  margin: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 3.5rem;
  padding-block: 2.5rem;
  align-items: flex-start;
  background: var(--bg-paper);
}

@media (max-width: 1024px) {
  .product-layout {
    grid-template-columns: 52% 1fr;
    gap: 2rem;
  }
}

@media (max-width: 880px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.product-thumb-rail {
  min-width: 0;
}

.product-info-panel {
  min-width: 0;
  position: sticky;
  top: calc(72px + 1rem);
}

/* ── PRODUCT GALLERY COMPONENT ── */
.product-gallery {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 76px;
  flex-shrink: 0;
}

.product-gallery__thumb {
  width: 76px;
  height: 96px;
  padding: 0;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-tint);
  border-radius: 2px;
  transition: border-color var(--dur);
  display: block;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--ink-dark);
}

.product-gallery__main {
  flex: 1;
  min-width: 0;
}

.product-gallery__main-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-tint);
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.3s ease;
}

.product-gallery__sale-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--sale, #b44);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 1px;
}

.product-gallery__sale-badge .serif {
  font-size: 1.1rem;
  font-weight: 600;
}

.product-gallery__sale-badge .mono-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.product-gallery__zoom {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(247,240,225,.9);
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(31,19,10,.12);
  transition: background var(--dur);
}

.product-gallery__zoom:hover {
  background: #fff;
}

.product-gallery__counter {
  position: absolute;
  bottom: 0.875rem;
  right: 0.875rem;
  z-index: 5;
  font-size: 0.7rem;
  color: var(--ink-soft);
  background: rgba(247,240,225,.85);
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.product-gallery__mobile-thumbs {
  display: none;
  flex-direction: row;
  gap: 0.5rem;
  overflow-x: auto;
  margin-top: 0.5rem;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.product-gallery__mobile-thumbs::-webkit-scrollbar { display: none; }

.product-gallery__mobile-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-tint);
  border-radius: 2px;
  padding: 0;
  display: block;
  transition: border-color var(--dur);
}

.product-gallery__mobile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__mobile-thumb.is-active {
  border-color: var(--ink-dark);
}

.product-gallery__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.product-gallery__sec-tile {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  padding: 0;
  cursor: zoom-in;
  border: none;
}

.product-gallery__sec-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-gallery__sec-tile:hover img {
  transform: scale(1.04);
}

/* Zoom lightbox */
.gallery-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,5,2,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.gallery-zoom-overlay[hidden] { display: none; }

.gallery-zoom-overlay__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247,240,225,.15);
  color: #f7f0e1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247,240,225,.25);
  cursor: pointer;
  transition: background var(--dur);
}

.gallery-zoom-overlay__close:hover {
  background: rgba(247,240,225,.25);
}

.gallery-zoom-overlay__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

@media (max-width: 880px) {
  .product-gallery {
    flex-direction: column;
  }
  .product-gallery__thumbs {
    display: none;
  }
  .product-gallery__mobile-thumbs {
    display: flex;
  }
}

/* Below fold grid */
.product-below {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding-block: 3.5rem;
  background: var(--bg-page);
  border-top: 1px solid var(--line-soft);
}

@media (max-width: 880px) {
  .product-below {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.product-below__left { /* accordions + artisan card */ }

/* ── GALLERY COMPONENT ── */
.pdp-gallery { position: relative; }

.pdp-gallery__main {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--bg-tint);
}

.pdp-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.pdp-gallery__badge-sale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sale);
  color: #fbf6ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
}

.pdp-gallery__zoom-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251,246,236,.9);
  color: var(--ink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(31,19,10,.1);
  transition: background var(--dur);
}
.pdp-gallery__zoom-btn:hover { background: #fff; }

.pdp-gallery__counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: rgba(251,246,236,.8);
  padding: 0.25rem 0.65rem;
  backdrop-filter: blur(4px);
}

.pdp-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-gallery__thumb {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--line-soft);
  opacity: 0.7;
  transition: opacity var(--dur), border-color var(--dur);
}

.pdp-gallery__thumb.is-active,
.pdp-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--ink-dark);
}

.pdp-gallery__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pdp-gallery__secondary img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ── INFO PANEL ── */
.pdp-info {
  /* stacking context for sticky bar detection */
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
}

.pdp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 1px solid transparent;
}

.pdp-badge--sale {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: transparent;
}

.pdp-badge--low-stock {
  background: rgba(122,47,26,.08);
  color: #7a2f1a;
  border-color: rgba(122,47,26,.2);
}

.pdp-fabric-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}

.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--ink-darkest);
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.pdp-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.pdp-price-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink-darkest);
}

.pdp-price-mrp {
  font-size: 1rem;
  color: var(--ink-mute);
  text-decoration: line-through;
}

.pdp-price-off {
  font-size: 0.8rem;
  color: #7a2f1a;
  background: rgba(122,47,26,.08);
  padding: 0.2rem 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pdp-tax-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* Offer box */
.pdp-offers {
  padding: 0.875rem 1rem;
  background: var(--bg-cream);
  border: 1px dashed var(--line);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pdp-offer-line {
  font-size: 0.8125rem;
  color: var(--ink-dark);
  margin: 0;
}

.pdp-offer-code {
  font-weight: 700;
  color: var(--accent-dark);
}

/* Color selector */
.pdp-selector-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--ink-dark);
  display: flex;
  justify-content: space-between;
}

.pdp-color-tiles {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.pdp-color-tile {
  width: 56px;
  height: 64px;
  cursor: pointer;
  border: 1px solid var(--line-soft);
  object-fit: cover;
  transition: border-color var(--dur), outline var(--dur);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.pdp-color-tile.is-active,
.pdp-color-tile:hover {
  border-color: var(--ink-dark);
  outline-color: var(--accent);
}

/* Size grid */
.pdp-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pdp-size-btn {
  min-width: 48px;
  height: 42px;
  padding: 0 0.625rem;
  border: 1px solid var(--line);
  background: var(--bg-paper);
  color: var(--ink-dark);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
  position: relative;
}

.pdp-size-btn.is-active {
  background: var(--ink-darkest);
  color: var(--bg-cream);
  border-color: var(--ink-darkest);
}

.pdp-size-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pdp-size-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* QTY + CTA row */
.pdp-add-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-dark);
}

.pdp-qty-btn {
  width: 38px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink-dark);
  cursor: pointer;
  font-size: 1.1rem;
}

.pdp-qty-val {
  width: 36px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
}

.pdp-btn-add {
  flex: 1;
}

.pdp-btn-wish {
  width: 48px;
  border: 1px solid var(--ink-dark);
  background: transparent;
  color: var(--ink-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), color var(--dur);
}

.pdp-btn-wish.is-wished {
  background: var(--ink-darkest);
  color: var(--accent-soft);
}

/* Pincode checker */
.pdp-delivery-box {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
}

.pdp-delivery-box__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp-pin-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
}

.pdp-pin-input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-dark);
  background: var(--bg-paper);
}

.pdp-pin-input:focus {
  border-color: var(--accent);
  outline: none;
}

.pdp-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-mid);
}

.pdp-delivery-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── STICKY ADD-TO-CART BAR ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--bg-paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(31,19,10,.08);
  transform: translateY(100%);
  transition: transform 280ms var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 0;
}

.sticky-cta__img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.sticky-cta__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-darkest);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-cta__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--bg-cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.stats-strip__motifs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.stats-motif {
  position: absolute;
}

.stats-motif--star {
  width: clamp(80px, 12vw, 180px);
  right: -2%;
  top: -20%;
  opacity: 0.5;
  animation: rotate-slow 60s linear infinite;
}

.stats-motif--floral {
  width: clamp(60px, 8vw, 120px);
  left: -1%;
  bottom: -20%;
  opacity: 0.4;
  animation: rotate-slow 80s linear infinite reverse;
}

.stats-strip__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .stats-strip__list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .stats-strip__list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  list-style: none;
}

.stats-strip__icon { margin-bottom: 0.25rem; }

.stats-strip__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--ink-darkest);
  line-height: 1;
}

.stats-strip__suffix {
  font-family: inherit;
  font-size: inherit;
}

.stats-strip__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

/* ── HEADING WEIGHT: ensure h1-h6 use 500 weight from Cormorant ── */
h1, h2, h3, h4 {
  font-weight: 500;
}

/* h1 on hero and shop hero should be bolder and larger */
.hero-carousel__heading,
.shop-hero__heading {
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

/* ============================================================
   AUDIT FIX v5 — MISSING COMPONENT CSS
   All section-level component styles were absent.
   ============================================================ */

/* ── PRODUCT CARD: price class aliases (PHP uses different names) ── */
.pcard-price__sale {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}
.pcard-price__regular {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-darkest);
}
.pcard-price__mrp {
  font-size: 0.8rem;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.pcard-price__savings {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sale);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── PRODUCT CARD: missing badge variants ── */
.pcard-badge--low-stock {
  background: #7a3520;
  color: #fff;
}
.pcard-badge--bestseller {
  background: var(--gold);
  color: var(--ink-darkest);
}

/* ── PRODUCT CARD: fabric label (absolute overlay on image bottom-left) ── */
.pcard-fabric {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 4;
  background: rgba(247,240,225,.92);
  color: var(--ink-mid);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  pointer-events: none;
}

/* ── PRODUCT CARD: cover link inside media ── */
.pcard-media__link {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── SECTION HEADING PATTERNS (shared across sections) ── */
.section-heading-group {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-heading-group .mono-eyebrow {
  margin-bottom: 0.5rem;
}
.section-heading-group h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--ink-darkest);
  font-weight: 500;
}

/* ── BRAND STORY SECTION ── */
.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) {
  .brand-story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.brand-story__eyebrow { margin-bottom: 0.75rem; }

.brand-story__heading {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.brand-story__para {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin: 0 0 2rem;
  max-width: 52ch;
}

.brand-story__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.brand-story__steps {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 2rem;
}

.brand-story__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.brand-story__step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 2.5rem;
}

.brand-story__step-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-darkest);
  margin: 0 0 0.3rem;
}

.brand-story__step-desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.brand-story__visual {
  position: relative;
}

.brand-story__img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.brand-story__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.brand-story__frame-border {
  position: absolute;
  inset: -14px;
  pointer-events: none;
}
.brand-story__frame-border svg {
  width: 100%;
  height: 100%;
}

.brand-story__hindi-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.brand-story__hindi-text {
  font-family: var(--font-hindi);
  font-size: 2rem;
  color: var(--accent);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.brand-story__hindi-desc {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin: 0;
  max-width: 22ch;
}

.brand-story__floral {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: clamp(60px, 8vw, 100px);
  pointer-events: none;
  animation: rotate-slow 40s linear infinite;
}

/* ── COLLECTIONS GRID SECTION ── */
.collections-grid__motif {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: clamp(60px, 8vw, 120px);
  pointer-events: none;
  opacity: 0.5;
}
.collections-grid { position: relative; overflow: hidden; }

.collections-grid__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.collections-grid__header .mono-eyebrow { margin-bottom: 0.5rem; }
.collections-grid__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0;
}

.collections-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 880px) {
  .collections-grid__list { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}
@media (max-width: 480px) {
  .collections-grid__list { grid-template-columns: 1fr; }
}

.collections-grid__card {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/5;
  background: var(--bg-tint);
}

.collections-grid__img-wrap {
  position: absolute;
  inset: 0;
}

.collections-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.collections-grid__card:hover .collections-grid__img {
  transform: scale(1.05);
}

.collections-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,19,10,.75) 0%, rgba(31,19,10,.1) 60%, transparent 100%);
}

.collections-grid__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  color: #fff;
  z-index: 2;
}

.collections-grid__name {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.3rem;
}

.collections-grid__count {
  color: rgba(247,240,225,.7);
  margin: 0 0 0.75rem;
}

.collections-grid__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--top-bar-gold);
  transition: gap var(--dur) var(--ease);
}
.collections-grid__card:hover .collections-grid__cta { gap: 0.6rem; }

.collections-grid__cta svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* ── OCCASION TILES SECTION ── */
.occasion-tiles__header {
  text-align: center;
  margin-bottom: 2rem;
}
.occasion-tiles__header .mono-eyebrow { margin-bottom: 0.5rem; }
.occasion-tiles__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0;
}

.occasion-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 1024px) {
  .occasion-tiles__grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}
@media (max-width: 640px) {
  .occasion-tiles__grid { grid-template-columns: repeat(2, 1fr); }
}

.occasion-tiles__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  text-decoration: none;
  color: rgba(247,240,225,.9);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease);
}
.occasion-tiles__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 260ms;
}
.occasion-tiles__tile:hover { transform: translateY(-3px); }
.occasion-tiles__tile:hover::after { background: rgba(0,0,0,.12); }

.occasion-tiles__icon {
  color: rgba(247,240,225,.85);
  flex-shrink: 0;
}
.occasion-tiles__icon svg {
  display: block;
}

.occasion-tiles__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.occasion-tiles__sub {
  color: rgba(247,240,225,.6);
  text-align: center;
  font-size: 0.625rem;
}

/* ── GIFTING BANNER SECTION ── */
.gifting-banner--dark {
  background: var(--ink-darkest);
  color: #e9d9b7;
}

.gifting-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .gifting-banner__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gifting-banner__visual { order: -1; }
}

.gifting-banner__eyebrow {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.gifting-banner__heading {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  color: var(--top-bar-gold);
  font-weight: 500;
  margin: 0 0 1.25rem;
  line-height: 1.15;
}

.gifting-banner__para {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(233,217,183,.7);
  margin: 0 0 1.75rem;
  max-width: 50ch;
}

.gifting-banner__features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.gifting-banner__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(233,217,183,.85);
}

.gifting-banner__feature-icon {
  color: var(--top-bar-gold);
  flex-shrink: 0;
  width: 20px;
  display: flex;
}

.gifting-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gifting-banner__whatsapp { color: #e9d9b7 !important; }

.gifting-banner__visual { position: relative; }

.gifting-banner__img-frame {
  position: relative;
  display: block;
}

.gifting-banner__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.gifting-banner__frame-deco {
  position: absolute;
  inset: -12px;
  pointer-events: none;
}
.gifting-banner__frame-deco svg {
  width: 100%;
  height: 100%;
}

.gifting-banner__hindi-card {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  background: rgba(31,19,10,.9);
  border: 1px solid rgba(217,182,115,.3);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
  text-align: center;
}

.gifting-banner__hindi {
  font-family: var(--font-hindi);
  font-size: 1.75rem;
  color: var(--top-bar-gold);
  margin: 0 0 0.25rem;
}

.gifting-banner__hindi-sub {
  color: rgba(217,182,115,.6);
  font-size: 0.625rem;
}

/* ── REVIEWS CAROUSEL SECTION ── */
.reviews-carousel--cream { background: var(--bg-cream); }

.reviews-carousel__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-carousel__eyebrow { margin-bottom: 0.5rem; }

.reviews-carousel__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink-darkest);
  font-weight: 500;
  margin: 0 0 1rem;
}

.reviews-carousel__score {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-carousel__score-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--ink-darkest);
  line-height: 1;
}

.reviews-carousel__score-stars {
  display: inline-flex;
  gap: 0.2rem;
  color: var(--star);
}

.reviews-carousel__score-stars .star-icon {
  display: block;
}

.reviews-carousel__score-count { color: var(--ink-mute); }

.reviews-carousel__track-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
}

.reviews-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.reviews-carousel__track::-webkit-scrollbar { display: none; }

.reviews-carousel__track .rev-card {
  min-width: 340px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

@media (max-width: 640px) {
  .reviews-carousel__track .rev-card { min-width: 280px; }
}

.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.reviews-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reviews-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

.reviews-carousel__footer {
  text-align: center;
}

/* ── BESTSELLERS SECTION ── */
.bestsellers--cream { background: var(--bg-cream); }

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

.bestsellers__eyebrow { margin-bottom: 0.4rem; }

.bestsellers__heading {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink-darkest);
  font-weight: 500;
}

.bestsellers__nav {
  display: flex;
  gap: 0.5rem;
}

.bestsellers__track-wrap {
  position: relative;
  overflow: hidden;
}

.bestsellers__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bestsellers__track::-webkit-scrollbar { display: none; }

.bestsellers__track .pcard {
  width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.bestsellers__footer {
  margin-top: 1.75rem;
  text-align: center;
}

@media (max-width: 880px) {
  .bestsellers__track .pcard { width: 220px; }
}
@media (max-width: 640px) {
  .bestsellers__track .pcard { width: 180px; }
}

/* ── REEL CAROUSEL SECTION ── */
.reel-carousel--dark {
  background: var(--ink-darkest);
}

.reel-carousel__motifs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.reel-carousel { position: relative; }

.reel-motif { position: absolute; }

.reel-motif--elephant {
  right: -2%;
  bottom: -5%;
  width: clamp(100px, 15vw, 220px);
  opacity: 0.7;
}

.reel-motif--floral-corner {
  left: 0;
  top: 0;
  width: clamp(80px, 10vw, 150px);
}

.reel-carousel__header {
  margin-bottom: 1.75rem;
}

.reel-carousel__eyebrow {
  color: rgba(217,182,115,.7);
  margin-bottom: 0.4rem;
}

.reel-carousel__heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--top-bar-gold);
  font-weight: 500;
  margin: 0;
}

.reel-carousel__track-wrap {
  position: relative;
  overflow: hidden;
}

.reel-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.reel-carousel__track::-webkit-scrollbar { display: none; }

.reel-carousel__track .reel-card {
  width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.reel-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  cursor: pointer;
}

.reel-card__media {
  aspect-ratio: 9/16;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-card__play {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
  z-index: 2;
}
.reel-card:hover .reel-card__play { transform: scale(1.1); }

.reel-card__duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(31,19,10,.7);
  color: rgba(247,240,225,.8);
  padding: 0.15rem 0.4rem;
  font-size: 0.6rem;
}

.reel-card__body {
  padding: 0.875rem;
}

.reel-card__tag {
  color: var(--accent);
  font-size: 0.6rem;
  display: block;
  margin-bottom: 0.3rem;
}

.reel-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--top-bar-gold);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.reel-card__views {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: rgba(217,182,115,.5);
}
.reel-card__views svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .reel-carousel__track .reel-card { width: 160px; }
}

/* ── NEWSLETTER SECTION ── */
.newsletter {
  background: var(--ink-darkest);
  color: #e9d9b7;
  position: relative;
  overflow: hidden;
}

.newsletter__motifs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.newsletter-motif {
  position: absolute;
}

.newsletter-motif--paisley {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(60px, 8vw, 120px);
}

.newsletter-motif--ambi {
  right: -15px;
  bottom: 10%;
  width: clamp(50px, 6vw, 100px);
}

.newsletter__watermark {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  font-family: var(--font-hindi);
  font-size: clamp(5rem, 10vw, 12rem);
  color: rgba(217,182,115,.05);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) {
  .newsletter__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

.newsletter__heading-group { margin-bottom: 0; }

.newsletter__eyebrow {
  color: rgba(217,182,115,.6);
  margin-bottom: 0.75rem;
}

.newsletter__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--top-bar-gold);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.newsletter__sub {
  font-size: 0.9375rem;
  color: rgba(233,217,183,.65);
  line-height: 1.7;
  margin: 0;
  max-width: 44ch;
}

.newsletter__success {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(217,182,115,.2);
}
.newsletter__success svg { margin: 0 auto 1rem; }
.newsletter__success-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--top-bar-gold);
  margin: 0 0 0.5rem;
}

.newsletter__error {
  color: #e07070;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.newsletter__email-row {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.newsletter__input-wrap { flex: 1; }

.newsletter__label {
  display: block;
  color: rgba(217,182,115,.6);
  margin-bottom: 0.35rem;
}

.newsletter__input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-right: none;
  color: #fff;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--dur) var(--ease);
}
.newsletter__input:focus { border-color: var(--top-bar-gold); outline: none; }
.newsletter__input::placeholder { color: rgba(255,255,255,.3); }

.newsletter__submit {
  flex-shrink: 0;
  border-radius: 0;
  align-self: flex-end;
}

.newsletter__birthday-row {
  margin-bottom: 0.875rem;
}

.newsletter__birthday-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(217,182,115,.6);
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.newsletter__birthday-label svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.newsletter__select {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  padding: 0.65rem 0.875rem;
  width: 100%;
  cursor: pointer;
}
.newsletter__select:focus { outline: none; border-color: var(--top-bar-gold); }
.newsletter__select option { background: #2a1a0e; }

.newsletter__privacy {
  color: rgba(217,182,115,.4);
}

.newsletter__social-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter__avatars {
  display: flex;
}

.newsletter__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink-darkest);
  margin-left: -8px;
  letter-spacing: 0.02em;
}
.newsletter__avatar:first-child { margin-left: 0; }

.newsletter__proof-text {
  color: rgba(217,182,115,.5);
}

/* ── UGC STRIP: missing header/footer ── */
.ugc-strip__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.ugc-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.ugc-strip__eyebrow svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.ugc-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--ink-darkest);
  margin: 0 0 0.5rem;
}
.ugc-strip__desc {
  font-size: 0.875rem;
  color: var(--ink-mute);
  margin: 0;
}
.ugc-strip__footer {
  margin-top: 1.5rem;
  text-align: center;
}

/* ── REV-CARD: fixes for initials avatar + meta wrapper ── */
.rev-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.rev-card__meta {
  flex: 1;
  min-width: 0;
}

/* ── PRODUCT CARD BADGES: need absolute position when direct children of pcard-media ── */
.pcard-media > .pcard-badge {
  position: absolute;
  left: 0.75rem;
  z-index: 5;
}
.pcard-media > .pcard-badge:first-of-type { top: 0.75rem; }
.pcard-media > .pcard-badge:nth-of-type(2) { top: calc(0.75rem + 1.5rem + 0.25rem); }
.pcard-media > .pcard-badge--low-stock {
  top: auto;
  bottom: 2.5rem; /* above pcard-fabric label */
  left: 0.75rem;
}

/* ── MOBILE LOGO: also constrain custom logo in mobile header ── */
.mobile-logo .custom-logo,
.mobile-logo img {
  display: block !important;
  max-height: 40px !important;
  max-width: 140px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* ── END AUDIT FIXES v5 ── */

/* ============================================================
   UX POLISH v6 — Full audit fixes
   ============================================================ */

/* ─── 1. GLOBAL FOCUS RING ─────────────────────────────────
   Every interactive element must have a visible focus state.
   The base reset sets outline:none — we restore it selectively.
   ─────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Clear the blanket outline:none from the reset for buttons/inputs */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Special: icon buttons get a circular ring */
.icon-btn:focus-visible,
.hamburger:focus-visible,
.drawer__close:focus-visible,
.search-overlay__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 50%;
}

/* ─── 2. MOBILE TAP TARGETS — minimum 44×44px ──────────────
   WCAG 2.5.5: pointer targets must be at least 44×44 CSS px.
   ─────────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .btn {
    min-height: 44px;
    padding-block: 0.75rem;
  }

  .icon-btn {
    width: 44px;
    height: 44px;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  .pcard-quick-add {
    min-height: 44px !important;
  }

  .hero-carousel__dot {
    min-width: 28px;
    min-height: 28px;
    /* visually still small, but the touch target is larger */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .drawer__nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-col__link {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
}

/* ─── 3. PRODUCT IMAGE SKELETON / PLACEHOLDER ───────────────
   When images haven't loaded or are missing, show a branded
   placeholder rather than a broken layout.
   ─────────────────────────────────────────────────────────── */
.pcard-media {
  background: var(--bg-tint);
}

/* Skeleton shimmer animation for images loading */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.pcard-media__img {
  background: linear-gradient(
    90deg,
    var(--bg-tint) 25%,
    var(--line-soft) 37%,
    var(--bg-tint) 63%
  );
  background-size: 800px 100%;
}

/* Once the image actually loads, remove the shimmer */
.pcard-media__img[src]:not([src=""]) {
  background: none;
}

/* Lazy loading fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 300ms ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][data-loaded] {
  opacity: 1;
}
/* Ensure eager images are always visible */
img[loading="eager"],
img:not([loading]) {
  opacity: 1;
}

/* ─── 4. ADD TO CART / QUICK ADD — more prominent accent ────
   The quick-add bar and single product add-to-cart must read
   clearly as the primary purchase action.
   ─────────────────────────────────────────────────────────── */

/* Quick add on card hover bar — accent background */
.pcard-quick-add {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

.pcard-quick-add:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  transform: none !important; /* don't lift inside the bar */
}

/* Single product "Add to bag" — keep primary but ensure it's wide */
.product-info__add-to-bag {
  flex: 1;
  justify-content: center;
  min-height: 52px;
  font-size: 0.875rem !important;
  letter-spacing: 0.1em;
}

/* WooCommerce default add-to-cart button */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button.alt {
  background: var(--accent) !important;
  color: #fff !important;
  min-height: 52px !important;
  font-size: 0.875rem !important;
}
.woocommerce .single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover {
  background: var(--accent-dark) !important;
}

/* ─── 5. WOOCOMMERCE NOTICE / MESSAGE STYLING ───────────────
   Make WC notices match the brand instead of default blue/green.
   ─────────────────────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--accent) !important;
  background: var(--bg-cream) !important;
  color: var(--ink-dark) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  padding: 1rem 1.5rem !important;
  border-radius: 0 !important;
  list-style: none !important;
}

.woocommerce-message::before {
  color: var(--accent) !important;
}

.woocommerce-error {
  border-top-color: #c0392b !important;
}

.woocommerce-error::before {
  color: #c0392b !important;
}

/* Empty state — no products found */
.woocommerce-info {
  border-top-color: var(--gold) !important;
}

/* ─── 6. WOOCOMMERCE CHECKOUT FORM INPUTS ───────────────────
   Override WC defaults to match brand style.
   ─────────────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-input-wrapper input[type="text"],
.woocommerce-checkout .woocommerce-input-wrapper input[type="email"],
.woocommerce-checkout .woocommerce-input-wrapper input[type="tel"],
.woocommerce-checkout .woocommerce-input-wrapper input[type="number"],
.woocommerce-checkout .woocommerce-input-wrapper input[type="password"],
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  border: 1px solid var(--line) !important;
  background: var(--bg-paper) !important;
  padding: 0.65rem 0.875rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  color: var(--ink-dark) !important;
  width: 100% !important;
  border-radius: 0 !important;
  transition: border-color var(--dur) var(--ease) !important;
}

.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper select:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus,
.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--accent) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ─── 7. NEWSLETTER INPUT — validation feedback states ──────  */
.newsletter__input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.newsletter__input:valid:not(:placeholder-shown) {
  border-color: var(--top-bar-gold);
}

.footer-newsletter__input:invalid:not(:placeholder-shown) {
  border-color: rgba(192, 57, 43, 0.6);
}

/* ─── 8. SECTION SPACING RHYTHM ────────────────────────────
   Consistent visual cadence between sections.
   Adjacent sections with same bg get a subtle border separator.
   ─────────────────────────────────────────────────────────── */
.section-pad {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

/* Prevent sections from collapsing margin — explicit flow */
.section-pad + .section-pad {
  border-top: 1px solid var(--line-soft);
}

/* Dark/cream alternating sections don't need border */
.section-pad.newsletter--dark + .section-pad,
.section-pad + .section-pad.newsletter--dark,
.section-pad.gifting-banner--dark + .section-pad,
.section-pad + .section-pad.gifting-banner--dark {
  border-top: none;
}

/* ─── 9. MARQUEE PAUSE ON HOVER ─────────────────────────── */
.marquee-inner {
  animation: marquee-scroll 30s linear infinite;
}

.marquee-band:hover .marquee-inner,
.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

/* ─── 10. WHATSAPP FLOAT BUTTON ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998; /* below sticky-cart (90) but above page (99) */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 50%;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  display: block;
}

/* On mobile, move up to avoid overlapping sticky-cart */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 88px; /* above sticky-cart */
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ─── 11. HERO OVERLAY CONTRAST IMPROVEMENT ─────────────────
   Ensure text is always readable over hero images.
   ─────────────────────────────────────────────────────────── */
.hero-carousel__overlay {
  background: linear-gradient(
    150deg,
    rgba(31, 13, 5, .78) 0%,
    rgba(31, 13, 5, .42) 55%,
    rgba(31, 13, 5, .62) 100%
  ) !important;
}

/* ─── 12. PRODUCT CARD QUICK-ADD BAR — ensure z-index ───────
   The pcard-qa bar is inside pcard-media, so it must stack
   correctly above the image but below page modals.
   ─────────────────────────────────────────────────────────── */
.pcard-qa {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10; /* above image z-index: 1/2 */
}

/* ─── 13. HEADER ICON MIN SIZE (desktop) ────────────────────
   Desktop icon buttons are 40px — bump to 44px on all sizes
   for better usability without affecting layout.
   ─────────────────────────────────────────────────────────── */
.icon-btn {
  min-width: 40px;
  min-height: 40px;
}

/* ─── 14. SMOOTH SCROLL ─────────────────────────────────────
   Already set on html{} but also ensure no override.
   ─────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

/* ─── 15. PCARD SWATCHES — visible focus for keyboard nav ─── */
.pcard-swatch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 50%;
}

/* ─── 16. FILTER CHECKBOXES — custom visible mark ───────────
   Improve checkbox contrast in the filter sidebar.
   ─────────────────────────────────────────────────────────── */
.filter-checkbox input[type="checkbox"]:focus-visible + .filter-checkbox__mark {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── 17. SHOP PAGE — "no products" state styling ───────────  */
.shop-no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-cream);
  border: 1px solid var(--line-soft);
}

.shop-no-results .serif {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}

/* ─── 18. PRODUCT INFO — CTA ROW LAYOUT FIX ────────────────
   Make "add to bag" + wishlist row responsive.
   ─────────────────────────────────────────────────────────── */
.product-info__cta-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-block: 1.25rem;
}

@media (max-width: 480px) {
  .product-info__cta-row {
    flex-wrap: wrap;
  }
  .product-info__add-to-bag {
    flex: 1 1 100%;
  }
  .product-info__qty {
    flex: 1;
  }
}

/* ─── 19. BUY IT NOW BUTTON ─────────────────────────────── */
.product-info__buy-now {
  display: flex;
  width: 100%;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

/* ─── 20. OCCASION TILES — ensure link contrast ─────────── */
.occasion-tiles__tile {
  color: rgba(251, 246, 236, .9);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.occasion-tiles__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.occasion-tiles__tile:focus-visible {
  outline: 2px solid var(--top-bar-gold);
  outline-offset: 3px;
}

/* ─── 21. COLLECTIONS GRID CARD HOVER ───────────────────── */
.collections-grid__card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.collections-grid__card:hover .collections-grid__cta {
  color: var(--top-bar-gold);
}

/* ─── 22. FOOTER SOCIAL LINKS (if rendered by WP nav menus) */
.footer-col__link:focus-visible {
  outline: 2px solid var(--top-bar-gold);
  outline-offset: 3px;
}

/* ─── 23. STICKY CART — ensure it doesn't overlap WhatsApp float */
@media (max-width: 480px) {
  .sticky-cart.visible {
    bottom: 1rem; /* WhatsApp moved up to 88px, this stays at 1rem */
  }
}

/* ─── 24. ANNOUNCEMENT BAR LINKS — underline decoration ─── */
.ann-bar a:focus-visible {
  outline: 1px solid var(--top-bar-gold);
  outline-offset: 2px;
}

/* ─── 25. SKIP TO CONTENT — make it visible on focus ────── */
.sr-only:focus,
.sr-only:focus-visible {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  margin: 0;
  clip: auto;
  white-space: normal;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
}

/* ─── 26. DRAWER ACTION LINKS — tap target ──────────────── */
.drawer__action-link {
  min-height: 44px;
}

/* ─── END UX POLISH v6 ─── */

/* --- 27. FOOTER SOCIAL LINKS --- */
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217, 182, 115, .25);
  color: #a09080;
  text-decoration: none;
  transition: color 220ms cubic-bezier(.4,0,.2,1),
              border-color 220ms cubic-bezier(.4,0,.2,1),
              background 220ms cubic-bezier(.4,0,.2,1);
}

.footer-social__link:hover {
  color: #d9b673;
  border-color: #d9b673;
  background: rgba(217, 182, 115, .08);
}

.footer-social__link:focus-visible {
  outline: 2px solid #d9b673;
  outline-offset: 3px;
}

.footer-social__link svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* --- 28. PRODUCT INFO PANEL - QTY STEPPER (info-panel.php classes) --- */
.product-info__qty {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--ink-dark);
  flex-shrink: 0;
}

.product-info__qty-btn {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink-dark);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.product-info__qty-btn:hover {
  background: var(--bg-tint);
  color: var(--accent);
}

.product-info__qty-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.product-info__qty-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
}

.product-info__qty-input {
  width: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-dark);
  background: transparent;
  border: none;
  border-left: 1.5px solid var(--ink-dark);
  border-right: 1.5px solid var(--ink-dark);
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
}

.product-info__qty-input::-webkit-outer-spin-button,
.product-info__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Wishlist button beside Add to Bag */
.product-info__wishlist {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  color: var(--ink-mute);
  background: transparent;
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.product-info__wishlist:hover,
.product-info__wishlist.is-wished {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.product-info__wishlist svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.product-info__wishlist.is-wished svg {
  fill: var(--accent);
}

/* Pincode checker */
.product-info__pincode-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.product-info__pincode-input {
  flex: 1;
  padding: 0.6rem 0.875rem;
  border: 1px solid var(--line);
  background: var(--bg-paper);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink-dark);
  transition: border-color var(--dur) var(--ease);
}

.product-info__pincode-input:focus {
  border-color: var(--accent);
  outline: none;
}

.product-info__pincode-result {
  margin-top: 0.4rem;
  font-size: 0.75rem;
}

/* Trust row */
.product-info__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.product-info__trust-row li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-info__trust-row svg {
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

/* Share links */
.product-info__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.product-info__share-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-info__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-mute);
  text-decoration: none;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  background: transparent;
  cursor: pointer;
}

.product-info__share-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.product-info__share-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Section label in info panel */
.product-info__section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}

.product-info__selected-value {
  font-weight: 400;
  color: var(--ink-dark);
}

.product-info__selected-value--empty {
  color: var(--ink-mute);
  font-style: italic;
}

/* Color swatch picker */
.product-info__color-swatches {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.product-info__color-swatch-label {
  cursor: pointer;
  position: relative;
}

.product-info__color-tile {
  display: block;
  width: 54px;
  height: 64px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color var(--dur) var(--ease);
}

.product-info__color-tile--plain {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  display: block;
}

.product-info__color-swatch-label.is-selected .product-info__color-tile,
.product-info__color-swatch-label.is-selected .product-info__color-tile--plain {
  border-color: var(--ink-dark);
}

.product-info__color-swatch-label:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Size pills */
.product-info__size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.product-info__size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--line);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--ink-dark);
  position: relative;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  user-select: none;
}

.product-info__size-pill:hover {
  border-color: var(--ink-mid);
}

.product-info__size-pill input:checked + * {
  font-weight: 700;
}

.product-info__size-pill:has(input:checked) {
  border-color: var(--ink-darkest);
  background: var(--ink-darkest);
  color: var(--bg-cream);
}

.product-info__size-pill--low {
  border-color: var(--accent);
}

.product-info__size-pill:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-info__size-low-hint {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  position: absolute;
  top: -6px;
  right: -4px;
  background: var(--bg-paper);
  padding: 0 2px;
  line-height: 1;
}

.product-info__size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.product-info__size-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-info__size-guide svg {
  stroke: currentColor;
  fill: none;
}

.product-info__fit-hint {
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-info__fit-hint svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* Offers box */
.product-info__offers {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
}

.product-info__offers-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
}

.product-info__offers-title svg {
  stroke: currentColor;
  fill: none;
}

.product-info__offers-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-info__offer {
  font-size: 0.8125rem;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-info__coupon {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0.15rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px dashed var(--accent);
  font-style: normal;
}

/* Savings pill */
.product-info__savings-pill {
  display: inline-flex;
  align-items: center;
  background: var(--sale);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  margin-left: 0.25rem;
}

/* Meta row */
.product-info__meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.product-info__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.product-info__stars .star-rating {
  font-size: 0.85rem !important;
  color: var(--star) !important;
}

.product-info__review-count {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-info__meta-sep {
  color: var(--line);
}

.product-info__qa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-info__qa-link svg {
  stroke: currentColor;
  fill: none;
}

.product-info__sold {
  font-size: 0.75rem;
  color: var(--ink-mute);
}

/* Price block */
.product-info__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.product-info__sale-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink-darkest);
}

.product-info__regular-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink-darkest);
}

.product-info__mrp {
  font-size: 1rem;
  color: var(--ink-mute);
}

.product-info__incl-tax {
  font-size: 0.65rem;
  color: var(--ink-mute);
  align-self: flex-end;
  margin-bottom: 0.15rem;
}

/* Badges */
.product-info__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.product-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info__badge--bestseller {
  background: var(--gold);
  color: var(--ink-darkest);
}

.product-info__badge--low-stock {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

/* Delivery title */
.product-info__delivery {
  margin-bottom: 1.25rem;
}

.product-info__delivery-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink-mid);
}

.product-info__delivery-title svg {
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* Fabric eyebrow */
.product-info__fabric-eyebrow {
  margin-bottom: 0.25rem;
  color: var(--accent-dark);
}

/* Product title */
.product-info__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  color: var(--ink-darkest);
  margin-bottom: 0.75rem;
}

/* SKU */
.product-info__sku {
  font-size: 0.7rem;
  color: var(--ink-mute);
}

/* Footer newsletter social proof */
.footer-newsletter__social-proof {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #a09080;  /* improved contrast over original #6a5a4a on dark bg */
}
