:root {
  --container-max: 1320px;
  --container-pad: 1.25rem;
  --section-pad-y: 4rem;
  --section-pad-y-sm: 2.5rem;
  --grid-gap: 1.15rem;
  --brand: #6B1D1D;
  --brand-dark: #4A1212;
  --brand-light: #8B2E2E;
  --accent: #B85C38;
  --accent-light: #D4845F;
  --gold: #C4A35A;
  --gold-light: #E8D4A8;
  --gold-dark: #9A7B3C;
  --cream: #FAF8F3;
  --cream-light: #FDFCF8;
  --bg: #FAF8F3;
  --surface: #FFFFFF;
  --footer: #1A1210;
  --text: #1C1C1C;
  --text-brown: #3D2B1F;
  --text-muted: #6B5B4F;
  --border: #E8E0D4;
  --search-bg: #F5F0E8;
  --shadow-sm: 0 2px 12px rgba(107, 29, 29, 0.06);
  --shadow: 0 8px 32px rgba(107, 29, 29, 0.1);
  --shadow-lg: 0 20px 56px rgba(107, 29, 29, 0.14);
  --shadow-card: 0 4px 24px rgba(61, 43, 31, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Poppins", system-ui, -apple-system, sans-serif;
  --header-h: 140px;
  --header-top-h: 68px;
  --header-nav-h: 48px;
  --header-sticky-offset: calc(var(--header-h) + 12px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --float-stack-h: 7.5rem;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}
body {
  font-family: var(--font-sans);
  color: var(--text-brown);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  min-width: 0;
  padding-bottom: calc(var(--float-stack-h) + var(--safe-bottom));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  min-width: 0;
}

/* Announcement */
.announcement-bar {
  background: var(--brand-dark);
  color: var(--gold-light);
  text-align: center;
  padding: 0.55rem clamp(1rem, 4vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}
.announce-close {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--gold-light); font-size: 1.1rem; opacity: 0.7;
  transition: opacity var(--transition);
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem;
}
.announce-close:hover { opacity: 1; }

/* Header — unified sticky block (announcement + top bar + category nav) */
#site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 9998;
  width: 100%;
  background: #ffffff;
  transition: box-shadow 0.25s ease;
}
#site-header-wrap.is-stuck {
  box-shadow: 0 4px 20px rgba(107, 29, 29, 0.12);
}

.contact-section {
  scroll-margin-top: var(--header-h);
}

.site-header {
  position: relative;
  z-index: 1;
  background: #ffffff;
  width: 100%;
}
.site-header.scrolled .header-top {
  box-shadow: none;
}
.top-header,
.header-top {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.main-navigation,
.header-nav,
.category-navigation {
  display: block;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  overflow: visible;
}
.header-nav.is-stuck,
.category-navigation.is-stuck {
  box-shadow: none;
  border-bottom-color: var(--border);
}
.header-top-inner {
  display: flex; align-items: center; gap: clamp(0.45rem, 2vw, 1.25rem);
  padding: 0.65rem 0; min-height: 60px;
  min-width: 0;
}
.brand {
  display: flex; align-items: center; gap: clamp(0.45rem, 2vw, 0.75rem);
  flex: 1 1 auto; min-width: 0; max-width: calc(100% - 9.5rem);
}
.brand img, .brand svg {
  width: clamp(38px, 10vw, 46px);
  height: clamp(38px, 10vw, 46px);
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.brand > span { min-width: 0; }
.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 3.8vw, 1.35rem);
  font-weight: 600; color: var(--brand);
  letter-spacing: 0.01em; line-height: 1.15;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-tagline {
  display: block; font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px;
}
.header-search {
  flex: 1; max-width: 480px; display: flex;
  background: var(--search-bg); border: 1px solid transparent;
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.header-search input {
  flex: 1; border: none; background: transparent; padding: 0.7rem 1rem;
  font-size: 0.875rem; outline: none;
}
.header-search button {
  background: none; border: none; padding: 0 1rem; color: var(--text-muted);
  display: flex; align-items: center; transition: color var(--transition);
}
.header-search button:hover { color: var(--brand); }
.header-utils {
  display: flex; align-items: center; gap: clamp(0.2rem, 1vw, 0.35rem);
  margin-left: auto; flex-shrink: 0;
}
.lang-switcher {
  display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 0.4rem 0.45rem; font-size: clamp(0.58rem, 2.4vw, 0.65rem); font-weight: 700;
  border: none; background: transparent; color: var(--text-muted);
  transition: all var(--transition);
  min-width: 2rem;
  min-height: 44px;
}
.lang-btn.active, .lang-btn:hover { background: var(--brand); color: #fff; }
.util-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: clamp(44px, 11vw, 48px);
  height: clamp(44px, 11vw, 48px);
  min-width: 44px;
  min-height: 44px;
  color: var(--text); transition: color var(--transition);
  border-radius: 50%;
  flex-shrink: 0;
}
.util-btn:hover { color: var(--brand); background: var(--cream); }
.util-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--brand); color: #fff; font-size: 0.58rem; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 0.5rem;
  border-radius: var(--radius);
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}
.menu-toggle:hover { background: var(--cream); }

/* Mobile search toggle — hidden on desktop */
.mobile-search-toggle {
  display: none;
}

/* Search overlay (mobile) */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease, opacity 0.25s ease;
}
.search-overlay.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 15, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.search-overlay.open .search-overlay-backdrop {
  opacity: 1;
}
.search-overlay-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem var(--container-pad);
  padding-top: calc(1rem + var(--safe-top));
  box-shadow: 0 8px 32px rgba(107, 29, 29, 0.15);
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-overlay.open .search-overlay-panel {
  transform: translateY(0);
}
.search-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.search-overlay-header h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0;
}
.search-overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.search-overlay-close:hover,
.search-overlay-close:focus-visible {
  background: var(--cream);
  color: var(--brand);
  outline: none;
}
.search-overlay-form {
  display: flex;
  align-items: stretch;
  background: var(--search-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-overlay-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.search-overlay-form input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: 16px;
  outline: none;
}
.search-overlay-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  background: none;
  border: none;
  color: var(--text-muted);
  transition: color var(--transition);
}
.search-overlay-form button:hover {
  color: var(--brand);
}

main,
.main-content {
  padding-top: 0;
}
.nav-inner {
  max-width: 100%;
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
  padding: 0.85rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  color: var(--text);
  text-align: center;
  text-decoration: none;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  border-bottom-color: var(--gold);
  outline: none;
}
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--brand);
  border-bottom-color: var(--gold);
  background: rgba(107, 29, 29, 0.04);
}
.nav-item-view-all .nav-view-all {
  color: var(--brand);
  font-weight: 700;
}
.nav-item-view-all .nav-view-all:hover,
.nav-item-view-all .nav-view-all.active,
.nav-item-view-all .nav-view-all[aria-current="page"] {
  background: rgba(201, 162, 39, 0.12);
  border-bottom-color: var(--gold);
}
/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px; max-width: 88vw;
  background: #fff; z-index: 2000; transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: var(--shadow-lg);
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(20, 20, 20, 0.5); z-index: 1999;
  opacity: 0; visibility: hidden; transition: all 0.35s;
  backdrop-filter: blur(2px);
}
.drawer-overlay.visible { opacity: 1; visibility: visible; }
.mobile-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem; border-bottom: 1px solid var(--border);
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--brand);
}
.mobile-drawer-header button { background: none; border: none; }
.mobile-search { display: flex; margin: 1rem; background: var(--search-bg); border-radius: var(--radius); }
.mobile-search input { flex: 1; border: none; background: transparent; padding: 0.7rem; outline: none; }
.mobile-search button { background: none; border: none; padding: 0 0.85rem; }
.mobile-nav > a,
.mobile-nav .mobile-nav-link,
.mobile-nav .mobile-nav-home {
  display: flex; align-items: center;
  padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  color: var(--text);
}
.mobile-nav > a[aria-current="page"] {
  color: var(--brand);
  background: rgba(107, 29, 29, 0.04);
  font-weight: 600;
}
.mobile-nav-view-all {
  font-weight: 700 !important; color: var(--brand) !important;
  background: rgba(201, 162, 39, 0.08);
}
.mobile-nav-divider {
  height: 1px; background: var(--border); margin: 0.25rem 0;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem; font-size: clamp(0.68rem, 2.8vw, 0.78rem); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; border: none;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff; box-shadow: 0 4px 18px rgba(107, 29, 29, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107, 29, 29, 0.32);
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--brand); color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 16px rgba(107, 29, 29, 0.2);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brand-dark);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}
.btn-whatsapp { background: #25D366; color: #fff; letter-spacing: 0.05em; }
.btn-whatsapp:hover { background: #1da851; }
.btn-razorpay {
  background: linear-gradient(135deg, #3395ff 0%, #2563eb 100%);
  color: #fff; letter-spacing: 0.05em;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.28);
}
.btn-razorpay:hover {
  background: linear-gradient(135deg, #4da3ff 0%, #3395ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.32);
}
.btn-block { width: 100%; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.75rem; }

/* Hero carousel */
.hero-carousel {
  position: relative; overflow: hidden; background: var(--brand-dark);
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}
.hero-slides {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.hero-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: clamp(340px, 72vh, 520px);
  max-height: 85vh;
  overflow: hidden;
}
.hero-slide picture { position: absolute; inset: 0; display: block; }
.hero-slide img,
.hero-slide-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  transform: scale(1.02); transition: transform 8s ease;
}
.hero-slide.active img,
.hero-slide.active .hero-slide-img { transform: scale(1.08); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, rgba(26,6,6,0.82) 0%, rgba(45,12,12,0.55) 38%, rgba(0,0,0,0.2) 68%, transparent 100%);
}
.hero-focal-center img,
.hero-focal-center .hero-slide-img { object-position: center center; }
.hero-focal-right img,
.hero-focal-right .hero-slide-img { object-position: 62% center; }
.hero-focal-left img,
.hero-focal-left .hero-slide-img { object-position: 38% center; }
.hero-slide-content {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 4rem) 0 clamp(2.75rem, 6vw, 3.5rem);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: clamp(0.62rem, 2.5vw, 0.72rem); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.65rem;
}
.hero-slide-content h1 {
  font-family: var(--font-serif); font-size: clamp(1.45rem, 6.5vw, 3.25rem);
  font-weight: 600; max-width: 100%; line-height: 1.15; margin-bottom: 0.75rem;
  color: #fff;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.hero-slide-content p {
  font-size: clamp(0.82rem, 3.2vw, 1.05rem); max-width: 100%;
  opacity: 0.92; margin-bottom: 1.25rem; color: rgba(255,255,255,0.9);
  line-height: 1.65;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}
.hero-actions .btn {
  flex: 1 1 calc(50% - 0.35rem);
  min-width: 0;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.hero-actions .btn-consultation {
  flex: 1 1 100%;
  width: 100%;
}
.hero-actions .btn-consultation .btn-consultation-label {
  white-space: normal;
  text-align: center;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.75); color: #fff;
  background: rgba(255,255,255,0.08);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.2); color: #fff; border-color: #fff;
}
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; display: flex; align-items: center; justify-content: center;
  z-index: 5; backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.hero-nav:hover { background: rgba(255,255,255,0.3); border-color: var(--gold); }
.hero-prev { left: 1.25rem; }
.hero-next { right: 1.25rem; }
.hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Brand story */
.brand-story {
  padding: 4rem 0; background: var(--cream-light);
  border-bottom: 1px solid var(--border);
}
.brand-story-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
.brand-story-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow);
}
.brand-story-image img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-image::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(201, 169, 98, 0.3); border-radius: var(--radius-lg);
  margin: 12px; pointer-events: none;
}
.brand-story-content .section-eyebrow { text-align: left; }
.brand-story-content h2 {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600; color: var(--brand); margin-bottom: 1rem; line-height: 1.2;
}
.brand-story-content p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem;
}
.brand-stats {
  display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.brand-stat strong {
  display: block; font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700; color: var(--brand); line-height: 1;
}
.brand-stat span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Visit CTA banner */
.visit-cta {
  padding: 3.5rem 0; background: var(--brand);
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.visit-cta::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.visit-cta .container { position: relative; z-index: 1; }
.visit-cta h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem; font-weight: 600;
}
.visit-cta p { opacity: 0.88; margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.visit-cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; width: 100%; }
.visit-cta-actions .btn { flex: 1 1 auto; min-width: min(100%, 10rem); max-width: 100%; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Section */
.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-eyebrow {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; letter-spacing: 0.02em; color: var(--brand);
  position: relative; display: inline-block;
}
.section-title::after {
  content: ""; display: block; width: 48px; height: 2px;
  background: var(--gold); margin: 0.75rem auto 0;
}
.section-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-top: 0.85rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.category-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-tile:hover img { transform: scale(1.08); }
.category-tile span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem; background: linear-gradient(transparent, rgba(26,26,26,0.75));
  color: #fff; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Occasion section */
.occasion-section { background: var(--cream); }
.occasion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.occasion-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
}
.occasion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.occasion-card:hover img { transform: scale(1.06); }
.occasion-card h3 {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  background: linear-gradient(transparent, rgba(92,26,26,0.85));
  color: #fff; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
}

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; grid-auto-rows: 1fr; }
.product-card {
  position: relative; background: var(--surface);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card-image {
  position: relative; overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--search-bg); border-radius: var(--radius) var(--radius) 0 0;
}
.product-card-image > a {
  position: absolute; inset: 0;
  display: block; z-index: 0;
}
.product-card-image::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(26, 16, 12, 0);
  transition: background var(--transition);
  pointer-events: none; z-index: 1;
}
.product-card:hover .product-card-image::after {
  background: rgba(26, 16, 12, 0.28);
}
.product-card-image img {
  width: 100%; height: 100%; max-height: none;
  object-fit: cover; object-position: center top;
  transition: opacity 0.55s ease, transform 0.5s ease;
}
.product-card-img-primary,
.product-card-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.product-card-img-hover {
  opacity: 0;
  z-index: 1;
}
.product-card.has-hover-image:hover .product-card-img-primary {
  opacity: 0;
}
.product-card.has-hover-image:hover .product-card-img-hover {
  opacity: 1;
}
.product-card:hover .product-card-image .product-card-img-primary:only-child { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 0.65rem; left: 0.65rem;
  background: var(--brand); color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 0.25rem 0.55rem; border-radius: var(--radius);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.product-badge.trending { background: var(--gold); color: var(--brand-dark); }
.product-badge.ready { background: #2e7d32; }
.wishlist-btn {
  position: absolute; top: 0.65rem; right: 0.65rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn.active { opacity: 1; color: var(--brand); }
.wishlist-btn.active svg { fill: var(--brand); }
.quick-add-btn {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--brand); color: #fff; border: none; padding: 0.75rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  transform: translateY(100%); transition: transform var(--transition);
}
.product-card:hover .quick-add-btn { transform: translateY(0); }
.product-card-body { padding: 1rem 1rem 1.15rem; flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }
.product-card-actions {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  display: flex; gap: 0.5rem; opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 3; pointer-events: none;
}
.product-card:hover .product-card-actions {
  opacity: 1; transform: translate(-50%, -50%); pointer-events: auto;
}
.product-action-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.product-action-btn:hover { background: var(--brand); color: #fff; transform: scale(1.08); }
.product-action-btn.whatsapp:hover { background: #25D366; color: #fff; }
.product-name {
  font-size: 0.82rem; font-weight: 500; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--transition);
}
.product-name:hover { color: var(--brand); }
.product-brand {
  display: block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.2rem;
}
.product-rating {
  display: flex; align-items: center; gap: 0.35rem; margin: 0.25rem 0 0.35rem;
  font-size: 0.78rem; color: var(--text-muted);
}
.product-stars { color: var(--gold); letter-spacing: 0.02em; }
.product-rating-value { font-weight: 700; color: var(--brand); }
.product-review-count { font-size: 0.72rem; }
.pdp-brand {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-dark); margin-bottom: 0.5rem;
}
.pdp-rating {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.85rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.pdp-rating strong { color: var(--brand); }
.product-price { font-size: 0.9rem; font-weight: 700; margin-top: auto; padding-top: 0.35rem; color: var(--brand); }
.product-mrp { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-left: 0.4rem; }
.out-of-stock { font-size: 0.72rem; color: var(--accent); font-weight: 600; margin-top: 0.2rem; display: block; }

/* Carousel */
.carousel-wrap { position: relative; overflow: hidden; padding: 0 0.5rem; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.carousel-track .product-card { min-width: calc(50% - 0.5rem); margin-right: 1rem; flex-shrink: 0; }
.carousel-nav {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: var(--shadow); font-size: 1.25rem; color: var(--brand);
  transition: all var(--transition);
}
.carousel-nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Collection grids */
.collection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.collection-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-sm);
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.collection-card:hover img { transform: scale(1.07); }
.collection-card h3 {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  background: linear-gradient(transparent, rgba(92,26,26,0.88));
  color: #fff; font-family: var(--font-serif); font-size: 1rem; text-align: center; font-weight: 600;
}
.wedding-section { background: var(--cream-light); }

/* Trending stories */
.stories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.story-card {
  display: block; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); background: #fff;
}
.story-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.story-card img { aspect-ratio: 2/3; object-fit: cover; width: 100%; }
.story-card-body { padding: 0.9rem; }
.story-card h4 {
  font-size: 0.82rem; font-weight: 500; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.story-price { font-size: 0.95rem; font-weight: 700; color: var(--brand); margin-top: 0.4rem; display: block; }

/* Legacy section */
.legacy-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.legacy-section::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,98,0.12) 0%, transparent 70%);
}
.legacy-grid { display: grid; gap: 2.5rem; text-align: center; position: relative; z-index: 1; }
.legacy-number {
  font-family: var(--font-serif); font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 700; display: block; line-height: 1; color: var(--gold);
}
.legacy-stat h3 {
  font-family: var(--font-serif); font-size: 1.15rem; margin: 0.6rem 0;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.legacy-stat p { font-size: 0.88rem; opacity: 0.85; max-width: 360px; margin: 0 auto; line-height: 1.7; }
.legacy-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }
.legacy-feature {
  padding: 0.6rem 1.5rem; border: 1px solid rgba(201,169,98,0.4);
  border-radius: 30px; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-light);
}

/* SEO content */
.seo-content { background: var(--cream-light); }
.seo-content-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.seo-content h2 { font-family: var(--font-serif); font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: 1.25rem; color: var(--brand); font-weight: 600; }
.seo-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.seo-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.75rem; }
.seo-categories a {
  padding: 0.45rem 1.1rem; border: 1px solid var(--border); border-radius: 30px;
  font-size: 0.78rem; font-weight: 500; background: #fff;
  transition: all var(--transition);
}
.seo-categories a:hover { border-color: var(--brand); color: var(--brand); background: var(--cream); }

/* Budget cards */
.budget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.budget-card {
  display: block; overflow: hidden; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); text-align: center;
  transition: all var(--transition);
}
.budget-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s ease;
}
.budget-card:hover img { transform: scale(1.05); }
.budget-card h4 {
  padding: 1rem 0.75rem; font-size: 0.82rem; font-weight: 600; color: var(--brand);
}
.budget-card:hover { border-color: var(--gold); background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Trust strip */
.trust-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  padding: 2.5rem 1rem; background: var(--cream-light);
  border-radius: var(--radius-lg);
}
.trust-item { text-align: center; padding: 0.75rem; }
.trust-item svg { color: var(--brand); margin-bottom: 0.65rem; }
.trust-item h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text); }

/* Testimonials */
.testimonials { background: #fff; }
.testimonial-grid { display: grid; gap: 1.25rem; }
.testimonial-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); transition: box-shadow var(--transition), transform var(--transition);
  position: relative; box-shadow: var(--shadow-card);
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card::before {
  content: "\201C"; position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--font-serif); font-size: 3rem; color: var(--gold); opacity: 0.4; line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); margin-bottom: 0.85rem; letter-spacing: 3px; font-size: 0.85rem; }
.testimonial-card blockquote { font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; color: var(--text); }
.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--brand); }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* Shop page */
.shop-layout { display: grid; gap: 1.5rem; padding: 1.5rem 0 3rem; }
.shop-sidebar { display: none; }
.shop-main .product-grid:not(.list-view) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.shop-main .product-grid:not(.list-view) .product-card-image {
  width: 100%;
  aspect-ratio: unset;
  height: clamp(200px, 24vw, 280px);
}
.shop-toolbar {
  display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center;
  justify-content: space-between; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.shop-toolbar h1 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--brand); font-weight: 600; }
.shop-count { font-size: 0.85rem; color: var(--text-muted); }
.filter-toggle {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem; border: 1px solid var(--border); background: #fff;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  border-radius: var(--radius); transition: all var(--transition);
}
.filter-toggle:hover { border-color: var(--brand); color: var(--brand); }
.sort-select {
  padding: 0.55rem 0.85rem; border: 1px solid var(--border); font-size: 0.85rem;
  background: #fff; border-radius: var(--radius);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.85rem; border: 1px solid var(--border); border-radius: 30px;
  font-size: 0.75rem; background: var(--cream);
}
.filter-chip button { background: none; border: none; font-size: 1rem; line-height: 1; color: var(--text-muted); }
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.75rem; color: var(--brand); letter-spacing: 0.05em; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0; font-size: 0.85rem; cursor: pointer; }
.filter-option input { accent-color: var(--brand); }
.price-range { display: flex; gap: 0.5rem; align-items: center; }
.price-range input { width: 100%; padding: 0.45rem; border: 1px solid var(--border); font-size: 0.85rem; border-radius: var(--radius); }
.filter-modal {
  position: fixed; inset: 0; z-index: 3000; background: rgba(20,20,20,0.5);
  opacity: 0; visibility: hidden; transition: all 0.35s; backdrop-filter: blur(2px);
}
.filter-modal.open { opacity: 1; visibility: visible; }
.filter-panel {
  position: absolute; bottom: 0; left: 0; right: 0; max-height: 85vh;
  background: #fff; border-radius: 12px 12px 0 0; padding: 1.5rem; overflow-y: auto;
  transform: translateY(100%); transition: transform 0.35s;
}
.filter-modal.open .filter-panel { transform: translateY(0); }
.filter-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.filter-panel-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

/* Shop toolbar enhancements */
.shop-toolbar-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.view-toggle { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.view-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: #fff; border: none;
  color: var(--text-muted); transition: all var(--transition);
}
.view-btn.active, .view-btn:hover { background: var(--brand); color: #fff; }
.sort-label { display: flex; align-items: center; }
.price-presets { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.65rem; }
.price-preset {
  padding: 0.3rem 0.65rem; font-size: 0.72rem; font-weight: 600;
  border: 1px solid var(--border); background: var(--cream); border-radius: 30px;
  transition: all var(--transition);
}
.price-preset:hover { border-color: var(--brand); color: var(--brand); }
.product-sale-tag {
  display: inline-block; margin-right: 0.35rem; padding: 0.1rem 0.45rem;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--accent); color: #fff; border-radius: 3px; vertical-align: middle;
}
.subcategory-chips { margin-top: 1.25rem; margin-bottom: 0; }
.subcategory-chips-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.subcategory-chips-inner {
  display: flex; flex-wrap: nowrap; gap: 0.5rem; overflow-x: auto;
  padding-bottom: 0.35rem; -webkit-overflow-scrolling: touch;
}
.subcategory-chips-inner::-webkit-scrollbar { height: 4px; }
.subcategory-chip {
  flex: 0 0 auto; padding: 0.45rem 0.9rem; border: 1px solid var(--border);
  border-radius: 999px; background: #fff; font-size: 0.78rem; font-weight: 500;
  color: var(--text); transition: all var(--transition); white-space: nowrap;
}
.subcategory-chip:hover { border-color: var(--brand); color: var(--brand); }
.subcategory-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.shop-pagination {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.shop-pagination-info { font-size: 0.85rem; color: var(--text-muted); }
.shop-pagination-controls { display: flex; align-items: center; gap: 0.75rem; }
.shop-pagination-page { font-size: 0.82rem; color: var(--text-muted); }
.quick-view-modal {
  position: fixed; inset: 0; z-index: 4000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.quick-view-modal.open { opacity: 1; visibility: visible; }
.quick-view-backdrop { position: absolute; inset: 0; background: rgba(20,20,20,0.55); backdrop-filter: blur(2px); }
.quick-view-panel {
  position: relative; width: min(920px, 100%); max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.5rem;
}
.quick-view-close {
  position: absolute; top: 0.75rem; right: 0.75rem; width: 36px; height: 36px;
  border: none; background: var(--cream); border-radius: 50%; font-size: 1.35rem; line-height: 1;
  color: var(--text-muted); cursor: pointer; z-index: 1;
}
.quick-view-close:hover { background: var(--brand); color: #fff; }
.quick-view-grid { display: grid; gap: 1.5rem; }
.quick-view-image { display: block; border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.quick-view-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.quick-view-info h2 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--brand); margin: 0.5rem 0; }
.quick-view-info h2 a { color: inherit; text-decoration: none; }
.quick-view-desc { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted); margin: 0.75rem 0 1rem; }
.quick-view-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.color-swatches { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.color-swatch { cursor: pointer; }
.color-swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch-dot {
  display: block; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--border); transition: all var(--transition);
}
.color-swatch input:checked + .swatch-dot { border-color: var(--brand); box-shadow: 0 0 0 2px var(--gold-light); transform: scale(1.1); }
.swatch-dot[data-color="red"] { background: #8B1A1A; }
.swatch-dot[data-color="green"] { background: #2D5A3D; }
.swatch-dot[data-color="blue"] { background: #1E3A5F; }
.swatch-dot[data-color="pink"] { background: #C4657A; }
.swatch-dot[data-color="maroon"] { background: #5C1A1A; }
.swatch-dot[data-color="gold"] { background: #B8944F; }
.swatch-dot[data-color="beige"] { background: #D4C4A8; }
.swatch-dot[data-color="black"] { background: #2A2A2A; }
.swatch-dot[data-color="orange"] { background: #C45A20; }
.swatch-dot[data-color="purple"] { background: #5A3D6E; }
.swatch-dot[data-color="yellow"] { background: #D4A820; }
.swatch-dot[data-color="white"] { background: #F5F0E8; }
.swatch-dot[data-color="sea green"] { background: #3A7A6E; }
.swatch-dot[data-color="wine"] { background: #6B2030; }
.filter-chip.clear-all {
  background: transparent; border-style: dashed; cursor: pointer;
  font-weight: 600; color: var(--brand);
}
.filter-chip.clear-all:hover { background: var(--cream); }

/* List view */
.product-grid.list-view { grid-template-columns: 1fr; gap: 1rem; }
.product-grid.list-view .product-card {
  display: grid; grid-template-columns: 120px 1fr; gap: 1rem; align-items: center;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 0.75rem;
  transition: box-shadow var(--transition);
}
.product-grid.list-view .product-card:hover { box-shadow: var(--shadow-sm); }
.product-grid.list-view .product-card-image {
  position: relative; aspect-ratio: 3 / 4; max-height: 180px; width: 120px;
}
.product-grid.list-view .product-card-image > a { position: absolute; inset: 0; }
.product-grid.list-view .wishlist-btn { opacity: 1; }
.product-grid.list-view .quick-add-btn { position: static; transform: none; margin-top: 0.5rem; border-radius: var(--radius); }

/* Accessibility */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  padding: 0.65rem 1.25rem; background: var(--brand); color: #fff;
  font-weight: 600; font-size: 0.85rem; border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--gold); outline-offset: 2px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Product detail */
.pdp-layout { display: grid; gap: 2.5rem; padding: 1.5rem 0 3rem; }
.pdp-thumbs { display: flex; gap: 0.6rem; margin-top: 0.85rem; overflow-x: auto; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main-image img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info h1 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.85rem; color: var(--brand); font-weight: 600; }
.pdp-price { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--brand); }
.pdp-price .mrp { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-left: 0.5rem; }
.pdp-discount { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem; }
.pdp-attrs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1.5rem; font-size: 0.85rem; }
.pdp-attr { padding: 0.65rem; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--border); }
.pdp-attr label { display: block; font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 1.25rem; width: fit-content; border: 1px solid var(--border); border-radius: var(--radius); }
.qty-selector button { width: 42px; height: 42px; background: none; border: none; font-size: 1.1rem; transition: background var(--transition); }
.qty-selector button:hover { background: var(--cream); }
.qty-selector input { width: 50px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 0.9rem; }
.pdp-actions { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.75rem; }
.pdp-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1.75rem; }
.pdp-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }
.pdp-tabs { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.pdp-tab-btns { display: flex; gap: 1.75rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; }
.pdp-tab-btn {
  padding: 0.7rem 0; background: none; border: none; font-size: 0.85rem; font-weight: 600;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--transition);
}
.pdp-tab-btn.active { border-bottom-color: var(--brand); color: var(--brand); }
.pdp-tab-content { font-size: 0.92rem; line-height: 1.75; color: var(--text-muted); }

/* Cart */
.cart-layout { padding: 1.5rem 0 3rem; }
.cart-checkout-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
.cart-items-wrap { min-width: 0; }
.cart-checkout-aside {
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 1rem 0.65rem; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.85rem; }
.cart-product { display: flex; gap: 1rem; align-items: center; }
.cart-product img { width: 80px; aspect-ratio: 2/3; object-fit: cover; border-radius: var(--radius); }
.cart-promo-card {
  padding: 1.25rem; background: var(--surface);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.cart-promo-title {
  font-size: 0.95rem; font-weight: 600; color: var(--brand);
  margin-bottom: 0.75rem;
}
.cart-promo-form {
  display: flex; gap: 0.5rem;
}
.cart-promo-input {
  flex: 1; padding: 0.65rem 0.85rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cart-promo-input:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 29, 29, 0.1);
}
.cart-promo-hint {
  font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.5;
}
.cart-promo-hint.success { color: #16a34a; }
.cart-promo-hint.error { color: var(--accent); }
.cart-coupon-applied {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 0.65rem; padding: 0.55rem 0.75rem;
  background: rgba(22, 163, 74, 0.08); border-radius: var(--radius-sm);
  font-size: 0.82rem; color: #166534;
}
.cart-coupon-badge {
  background: #16a34a; color: #fff; padding: 0.15rem 0.5rem;
  border-radius: 999px; font-weight: 600; font-size: 0.75rem;
}
.cart-coupon-remove {
  margin-left: auto; background: none; border: none;
  color: var(--accent); font-size: 0.78rem; cursor: pointer; text-decoration: underline;
}
.cart-summary {
  padding: 1.25rem; background: var(--cream-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.cart-summary-title {
  font-size: 0.95rem; font-weight: 600; color: var(--brand);
  margin-bottom: 0.75rem;
}
.cart-summary-row { display: flex; justify-content: space-between; padding: 0.55rem 0; font-size: 0.9rem; }
.cart-summary-row.discount { color: #16a34a; }
.cart-summary-row.total { font-weight: 700; font-size: 1.15rem; border-top: 1px solid var(--border); margin-top: 0.75rem; padding-top: 1rem; color: var(--brand); }
.cart-checkout-actions {
  padding: 1.25rem; background: var(--surface);
  border-radius: var(--radius-lg); border: 2px solid var(--brand);
  box-shadow: 0 8px 28px rgba(107, 29, 29, 0.1);
}
.btn-checkout-primary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 1.25rem !important; font-size: 1rem !important; font-weight: 600 !important;
}
.cart-payment-note {
  font-size: 0.75rem; color: var(--text-muted); text-align: center;
  margin: 0.5rem 0 0.75rem; line-height: 1.4;
}
.cart-checkout-actions .btn + .btn,
.cart-checkout-actions .btn + a { margin-top: 0.5rem; }
.empty-state { text-align: center; padding: 5rem 1rem; }
.empty-state h3 { font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 0.65rem; color: var(--brand); }
.empty-state p { color: var(--text-muted); margin-bottom: 1.75rem; }

/* Contact & map */
.contact-section { background: var(--cream-light); }
.contact-grid { display: grid; gap: 2.5rem; }
.contact-info { display: grid; gap: 1rem; }
.contact-card {
  display: flex; gap: 1.15rem; padding: 1.25rem; background: #fff;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand); margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--text-muted); }
.contact-card a:hover { color: var(--brand); }
.contact-form .form-group { margin-bottom: 1.15rem; }
.contact-form label { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.form-message { margin-top: 0.85rem; font-size: 0.85rem; padding: 0.75rem; border-radius: var(--radius); }
.form-message.success { background: #e8f5e9; color: #2e7d32; }
.form-message.error { background: #ffebee; color: #c62828; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/7;
  margin-top: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { background: var(--footer); color: #fff; padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.footer-brand img, .footer-brand svg { border-radius: 50%; }
.footer-brand span { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0.85rem; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.15rem; color: var(--gold); }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 0.3rem 0; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1.35rem 0;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); text-align: center;
}

/* Floats */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.back-to-top {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,26,26,0.8); color: #fff; border: none;
  opacity: 0; visibility: hidden; transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--brand); }

/* Toast */
#toast-container {
  position: fixed; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  z-index: 5000; display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  background: var(--brand-dark); color: #fff; padding: 0.85rem 1.5rem;
  border-radius: var(--radius); font-size: 0.85rem; box-shadow: var(--shadow-lg);
  animation: slideUp 0.35s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Photo Gallery */
.gallery-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--cream-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(66, 18, 15, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(20, 10, 12, 0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.8rem; color: var(--text-muted); padding: 1rem 0; }
.breadcrumbs a:hover { color: var(--brand); }

/* Featured collections banners */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.featured-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  min-height: 280px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.featured-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.featured-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.featured-banner:hover img { transform: scale(1.06); }
.featured-banner-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(74,18,18,0.92) 0%, rgba(74,18,18,0.35) 45%, rgba(74,18,18,0.08) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem 1.25rem;
  color: #fff;
  pointer-events: none;
}
.featured-banner-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.featured-banner-content > span:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.featured-banner-content .btn {
  align-self: flex-start;
  padding: 0.55rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  margin-top: 0.35rem;
}
.featured-banner-content .btn:hover { background: var(--gold); color: var(--brand-dark); border-color: var(--gold); }

/* Promo strip */
.promo-strip {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 50%, var(--accent) 100%);
  padding: 1rem 0; overflow: hidden;
}
.promo-strip-inner {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap; text-align: center; color: #fff;
}
.promo-strip p {
  font-family: var(--font-serif); font-size: clamp(0.82rem, 3.5vw, 1.25rem);
  font-weight: 500; letter-spacing: 0.01em; line-height: 1.5;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.promo-strip .btn-outline {
  border-color: var(--gold-light); color: var(--gold-light);
}
.promo-strip .btn-outline:hover { background: var(--gold); color: var(--brand-dark); border-color: var(--gold); }

/* Craftsmanship section */
.craftsmanship-section {
  padding: 5rem 0; background: var(--surface);
  position: relative; overflow: hidden;
}
.craftsmanship-section::before {
  content: ""; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(196,163,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.craftsmanship-grid {
  display: grid; gap: 3rem; align-items: center;
}
.craftsmanship-image {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.craftsmanship-image img { width: 100%; height: 100%; object-fit: cover; }
.craftsmanship-image::after {
  content: ""; position: absolute; inset: 16px;
  border: 1px solid rgba(196,163,90,0.35); border-radius: var(--radius);
  pointer-events: none;
}
.craftsmanship-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--brand); color: var(--gold-light);
  padding: 0.65rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.craftsmanship-content h2 {
  font-family: var(--font-serif); font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600; color: var(--brand); line-height: 1.2; margin-bottom: 1.25rem;
}
.craftsmanship-content p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem;
}
.craftsmanship-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem;
}
.craftsmanship-feature {
  padding: 1.15rem; background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--border); transition: all var(--transition);
}
.craftsmanship-feature:hover {
  border-color: var(--gold); box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.craftsmanship-feature strong {
  display: block; font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--brand); margin-bottom: 0.25rem;
}
.craftsmanship-feature span { font-size: 0.8rem; color: var(--text-muted); }

/* WhatsApp CTA banner */
.whatsapp-cta {
  padding: 4rem 0; background: var(--cream);
  position: relative; overflow: hidden;
}
.whatsapp-cta::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C4A35A' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.whatsapp-cta-card {
  position: relative; z-index: 1;
  display: grid; gap: 2rem; align-items: center;
  background: var(--surface); border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.whatsapp-cta-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.whatsapp-cta-content h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--brand); margin-bottom: 0.75rem; font-weight: 600;
}
.whatsapp-cta-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.25rem; }
.whatsapp-cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; width: 100%; }
.whatsapp-cta-actions .btn { flex: 1 1 auto; min-width: min(100%, 10rem); }

/* Newsletter */
.newsletter-section {
  padding: 4rem 0; background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.newsletter-section::after {
  content: ""; position: absolute; top: -30%; right: -10%; width: 50%; height: 160%;
  background: radial-gradient(ellipse, rgba(196,163,90,0.15) 0%, transparent 65%);
}
.newsletter-inner {
  position: relative; z-index: 1; text-align: center; max-width: 560px; margin: 0 auto;
}
.newsletter-inner h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem; font-weight: 600;
}
.newsletter-inner p { opacity: 0.88; font-size: 0.92rem; margin-bottom: 1.75rem; line-height: 1.7; }
.newsletter-form {
  display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1); color: #fff; font-size: 0.9rem;
  font-family: inherit; backdrop-filter: blur(4px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.2);
}
.newsletter-form .btn-gold { flex-shrink: 0; }

/* Instagram gallery header */
.instagram-header { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.instagram-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem;
}

/* PDP enhancements */
.pdp-gallery { position: sticky; top: var(--header-sticky-offset); }
.pdp-gallery-pro { display: flex; flex-direction: column; gap: 0.85rem; }
.pdp-main-wrap { position: relative; }
.pdp-main-image {
  aspect-ratio: 3/4; background: var(--search-bg); overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  position: relative;
}
.pdp-main-trigger {
  display: block; width: 100%; height: 100%; border: none; padding: 0;
  background: none; cursor: zoom-in; position: relative;
}
.pdp-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.pdp-main-img.is-loading { opacity: 0.15; }
.pdp-main-img.is-fading { opacity: 0.4; }
.pdp-image-skeleton {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(110deg, var(--cream) 8%, #fff 18%, var(--cream) 33%);
  background-size: 200% 100%;
  animation: pdp-shimmer 1.2s linear infinite;
  opacity: 0;
  pointer-events: none;
}
.pdp-image-skeleton.visible { opacity: 1; }
@keyframes pdp-shimmer {
  to { background-position-x: -200%; }
}
.pdp-zoom-lens {
  position: absolute; width: 120px; height: 120px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%; pointer-events: none; opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  background-repeat: no-repeat;
  transition: opacity 0.2s ease;
  z-index: 3;
}
.pdp-zoom-host.is-zooming .pdp-zoom-lens { opacity: 1; }
.pdp-zoom-host.is-zooming .pdp-main-img { transform: scale(1.02); }
.pdp-expand-hint {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--brand);
  display: grid; place-items: center; pointer-events: none;
  box-shadow: var(--shadow-sm); z-index: 2;
}
.pdp-thumbs-wrap {
  display: flex; align-items: center; gap: 0.35rem;
}
.pdp-thumbs-wrap.has-carousel .pdp-thumbs-track {
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; flex: 1;
}
.pdp-thumbs-wrap.has-carousel .pdp-thumbs-track::-webkit-scrollbar { display: none; }
.pdp-thumbs-nav {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--brand); display: grid; place-items: center; cursor: pointer;
  transition: all var(--transition-fast);
}
.pdp-thumbs-nav:hover { border-color: var(--brand); background: var(--cream); }
.pdp-thumbs { display: flex; gap: 0.6rem; }
.pdp-thumb {
  width: 76px; height: 114px; flex-shrink: 0; border: 2px solid transparent;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  transition: all var(--transition-fast); padding: 0; background: none;
}
.pdp-thumb:hover { border-color: var(--gold-light); transform: scale(1.03); }
.pdp-thumb.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--gold-light);
  transform: scale(1.04);
}
.pdp-thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-lightbox {
  position: fixed; inset: 0; z-index: 7000;
  background: rgba(12, 8, 10, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: pdp-lb-in 0.25s ease;
}
.pdp-lightbox[hidden] { display: none !important; }
.pdp-lightbox.open { display: flex; }
@keyframes pdp-lb-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pdp-lightbox-stage {
  max-width: min(94vw, 1200px); max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  touch-action: pinch-zoom;
}
.pdp-lightbox-zoom-wrap { transition: transform 0.15s ease; }
.pdp-lightbox-img {
  max-width: min(94vw, 1200px); max-height: 88vh;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.pdp-lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 1.75rem; line-height: 1; cursor: pointer; z-index: 2;
}
.pdp-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.pdp-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.12); color: #fff;
  display: grid; place-items: center; cursor: pointer; z-index: 2;
  transition: background 0.2s ease;
}
.pdp-lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.pdp-lightbox-prev { left: 1rem; }
.pdp-lightbox-next { right: 1rem; }
.pdp-lightbox-counter {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 0.85rem; font-weight: 600;
  background: rgba(0,0,0,0.45); padding: 0.4rem 0.85rem; border-radius: 999px;
}
body.pdp-lightbox-open { overflow: hidden; }
.pdp-preview-banner {
  position: sticky; top: 0; z-index: 960;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(90deg, #6b1d1d, #8b2a2a);
  color: #fff; font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 2px 12px rgba(107, 29, 29, 0.25);
}
.pdp-preview-banner-close {
  background: rgba(255, 255, 255, 0.15); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; line-height: 1; flex-shrink: 0;
}
.pdp-preview-banner-close:hover { background: rgba(255, 255, 255, 0.25); }
.pdp-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: rgba(253,252,248,0.98); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 0.85rem 1.25rem;
  display: none; align-items: center; gap: 1rem;
  box-shadow: 0 -4px 24px rgba(61,43,31,0.1);
  transform: translateY(100%); transition: transform var(--transition);
}
.pdp-sticky-bar.visible { display: flex; transform: translateY(0); }
.pdp-sticky-info { flex: 1; min-width: 0; }
.pdp-sticky-info h4 {
  font-size: 0.82rem; font-weight: 500; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; color: var(--text-brown);
}
.pdp-sticky-price { font-size: 1rem; font-weight: 700; color: var(--brand); }
.pdp-sticky-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.pdp-sticky-actions .btn { padding: 0.7rem 1rem; font-size: 0.7rem; }
.color-variants { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.color-variants-section { margin-bottom: 1.25rem; }
.color-variants-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.65rem;
}
.color-variants-label strong { color: var(--brand); font-weight: 600; }
.variant-chip {
  padding: 0.45rem 1rem; border: 1.5px solid var(--border);
  border-radius: 30px; font-size: 0.78rem; font-weight: 500;
  background: var(--surface); cursor: pointer;
  transition: all var(--transition-fast); color: var(--text-brown);
}
.variant-chip:hover { border-color: var(--gold); }
.variant-chip.active {
  border-color: var(--brand); background: var(--brand); color: #fff;
}
.variant-swatch {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  border: 1.5px solid var(--border); border-radius: 30px;
  background: var(--surface); cursor: pointer;
  transition: all var(--transition-fast); font-size: 0.78rem;
}
.variant-swatch-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--swatch-color, #8B7355);
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}
.variant-swatch:hover { border-color: var(--gold); transform: translateY(-1px); }
.variant-swatch.active {
  border-color: var(--brand); background: var(--cream);
  box-shadow: 0 0 0 2px rgba(107,29,29,0.15);
}
.variant-swatch.out-of-stock { opacity: 0.55; }
.variant-swatch-label { font-weight: 500; color: var(--text-brown); }

.size-variants-section { margin-bottom: 1.25rem; }
.size-variants-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.size-variants-heading {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.size-variants-selected {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  padding: 0.35rem 0.75rem;
  background: rgba(107, 29, 29, 0.07);
  border: 1px solid rgba(107, 29, 29, 0.14);
  border-radius: 8px;
  line-height: 1.2;
}
.size-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.size-chip {
  min-width: 2.75rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-brown);
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.size-chip:hover { border-color: var(--gold); transform: translateY(-1px); }
.size-chip.active {
  border-color: var(--brand);
  background: rgba(107, 29, 29, 0.1);
  color: var(--brand);
  box-shadow: 0 0 0 2px rgba(107, 29, 29, 0.12);
}
.size-chip:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.pdp-info-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin-bottom: 0.5rem;
}
.pdp-share { position: relative; }
.pdp-share-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.85rem; border: 1px solid var(--border);
  border-radius: 30px; background: var(--surface);
  font-size: 0.78rem; font-weight: 500; color: var(--text-brown);
  cursor: pointer; transition: all var(--transition-fast);
}
.pdp-share-toggle:hover { border-color: var(--gold); color: var(--brand); }
.pdp-share-menu {
  position: absolute; top: calc(100% + 0.5rem); right: 0; z-index: 100;
  min-width: 180px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 0.5rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.pdp-share-menu[hidden] { display: none; }
.share-btn {
  display: block; padding: 0.55rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500; text-align: left;
  color: var(--text-brown); background: none; border: none;
  cursor: pointer; text-decoration: none;
  transition: background var(--transition-fast);
}
.share-btn:hover { background: var(--cream); color: var(--brand); }
.pdp-actions-wa .btn-lg { padding: 1rem 1.5rem; font-size: 0.95rem; }
.pdp-wa-note {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.6;
  padding: 0.75rem 1rem; background: rgba(37,211,102,0.08);
  border-radius: var(--radius-sm); border-left: 3px solid #25D366;
}
.pdp-accordions { border-top: 1px solid var(--border); margin-top: 1.5rem; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 0; background: none; border: none;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600;
  color: var(--brand); cursor: pointer; text-align: left;
  transition: color var(--transition-fast);
}
.accordion-trigger:hover { color: var(--accent); }
.accordion-trigger .icon {
  font-size: 1.25rem; transition: transform var(--transition-fast); color: var(--gold);
}
.accordion-item.open .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.open .accordion-panel { max-height: 400px; padding-bottom: 1.25rem; }
.accordion-panel p, .accordion-panel ul {
  font-size: 0.9rem; line-height: 1.8; color: var(--text-muted);
}
.accordion-panel ul { padding-left: 1.25rem; list-style: disc; }
.pdp-trust-badges {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
  margin: 1.5rem 0; padding: 1.25rem; background: var(--cream);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.pdp-trust-badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 500; color: var(--text-brown);
}
.pdp-trust-badge svg { color: var(--gold-dark); flex-shrink: 0; }
.pdp-info-panel {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}

/* Section alternates */
.section-alt { background: var(--surface); }
.section-cream { background: var(--cream); }

/* Responsive */
@media (min-width: 640px) {
  .brand-name { display: block; }
  .featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .craftsmanship-features { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  .shop-main .product-grid:not(.list-view) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .product-grid.list-view .product-card { grid-template-columns: 160px 1fr; }
  .product-grid.list-view .product-card-image { width: 160px; max-height: 200px; }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .occasion-grid { grid-template-columns: repeat(4, 1fr); }
  .budget-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: repeat(4, 1fr); }
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(5, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel-track .product-card { min-width: calc(33.333% - 0.67rem); }
  .brand-story-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}

@media (min-width: 769px) {
  .mobile-search-toggle {
    display: none !important;
  }

  .search-overlay {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .menu-toggle { display: none; }
  .category-navigation { display: block; }
  .nav-list {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.05rem;
  }
  .nav-item {
    flex: none;
    min-width: 0;
  }
  .nav-link {
    padding: 0.9rem 0.2rem;
    font-size: clamp(0.58rem, 0.62vw, 0.72rem);
    letter-spacing: 0.02em;
    white-space: normal;
    line-height: 1.25;
    overflow: visible;
    text-overflow: clip;
    hyphens: auto;
  }
  .craftsmanship-grid { grid-template-columns: 1fr 1fr; }
  .whatsapp-cta-card { grid-template-columns: auto 1fr auto; }
  .featured-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .shop-layout { grid-template-columns: 280px 1fr; align-items: start; }
  .shop-sidebar {
    display: block;
    position: sticky;
    top: var(--header-sticky-offset);
    align-self: start;
    z-index: 20;
    max-height: calc(100vh - var(--header-sticky-offset) - 1.25rem);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.25rem 0.75rem 1.25rem 0;
    background: var(--bg);
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }
  .shop-sidebar::-webkit-scrollbar { width: 5px; }
  .shop-sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
  }
  .filter-toggle { display: none; }
  .quick-view-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-main .product-grid:not(.list-view) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pdp-layout { grid-template-columns: 42% 1fr; align-items: start; }
  .pdp-actions { flex-direction: row; }
  .pdp-actions .btn-primary { flex: 1; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr; }
  .cart-table .cart-product img { width: 100px; }
  .hero-slide { aspect-ratio: 21/8; }
}

@media (min-width: 1200px) {
  .nav-link {
    padding: 0.9rem 0.5rem;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .shop-main .product-grid:not(.list-view) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .carousel-track .product-card { min-width: calc(25% - 0.75rem); }
  .budget-grid { grid-template-columns: repeat(6, 1fr); }
  .stories-grid { grid-template-columns: repeat(6, 1fr); }
  .legacy-grid { grid-template-columns: 1fr 1fr 1fr; align-items: center; text-align: left; }
  .legacy-stat p { margin: 0; }
}

@media (max-width: 991px) {
  .header-search { display: none; }
  .header-social { display: none; }
  .brand-tagline { display: none; }
  .hero-nav { display: none; }
  .category-navigation { display: none; }
  .hero-focal-right img,
  .hero-focal-right .hero-slide-img { object-position: 58% 30%; }
  .hero-focal-left img,
  .hero-focal-left .hero-slide-img { object-position: 42% 30%; }
  .hero-slide img,
  .hero-slide-img { object-position: center 28%; }
  .pdp-gallery { position: relative; top: auto; }
  .pdp-sticky-bar { display: flex; }
  body.pdp-page { padding-bottom: 72px; }
  .size-variants-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .size-variants-heading {
    font-size: 0.88rem;
    color: var(--brand);
  }
  .size-variants-selected {
    font-size: 1.05rem;
    padding: 0.45rem 0.85rem;
    width: 100%;
    text-align: center;
  }
  .size-variants {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
    gap: 0.55rem;
  }
  .size-chip {
    min-height: 46px;
    width: 100%;
    padding: 0.65rem 0.5rem;
    font-size: 0.92rem;
    border-radius: 10px;
  }
  .size-chip.active {
    transform: none;
    box-shadow: 0 0 0 3px rgba(107, 29, 29, 0.14);
  }
  .product-card-actions { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
  .cart-table thead { display: none; }
  .cart-table tr { display: block; margin-bottom: 1rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 0.65rem; }
  .cart-table td { display: block; border: none; padding: 0.4rem 0.65rem; }
}

/* ── Enterprise Engagement System ── */
.header-social { display: flex; align-items: center; }
.header-social-icons, .social-icons, .footer-social {
  display: flex; gap: 0.45rem; align-items: center;
}
.social-icon-link {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--brand);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}
.social-icon-link:hover {
  background: var(--brand); color: #fff; transform: translateY(-2px);
}
.social-instagram:hover { background: linear-gradient(135deg, #833AB4, #FD1D1D); border-color: transparent; }
.social-facebook:hover { background: #1877F2; border-color: transparent; }
.social-youtube:hover { background: #FF0000; border-color: transparent; }
.social-whatsapp:hover { background: #25D366; border-color: transparent; }

.footer-follow { margin-top: 1rem; }
.footer-follow h4 {
  font-size: 0.85rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 0.35rem;
}
.footer-follow-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin-bottom: 0.75rem;
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  box-shadow: 0 4px 14px rgba(107,29,29,0.25);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-consultation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.btn-consultation-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.btn-consultation-label {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.engagement-banner-eyebrow .btn-consultation-icon {
  vertical-align: middle; margin-right: 0.15rem;
}
.nh-video-call-icon {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.btn-consultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,29,29,0.35);
  color: #fff;
}

.pdp-help-section {
  margin: 1.5rem 0; padding: 1.25rem;
  background: linear-gradient(135deg, rgba(107,29,29,0.04) 0%, rgba(196,163,90,0.08) 100%);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.pdp-help-section h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--brand); margin-bottom: 0.35rem;
}
.pdp-help-section p {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 1rem; line-height: 1.6;
}
.pdp-help-actions { display: flex; flex-direction: column; gap: 0.6rem; }

.engagement-banner {
  margin: 1.25rem 0 1.75rem;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-radius: var(--radius-lg); overflow: hidden;
}
#shop-engagement-banner:empty { display: none; }
#shop-engagement-banner .engagement-banner {
  margin-top: 1.75rem;
  margin-bottom: 0;
}
.engagement-banner-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.25rem;
  padding: 1.5rem 1.75rem; color: #fff;
}
.engagement-banner-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light); display: block; margin-bottom: 0.35rem;
}
.engagement-banner-text h3 {
  font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.35rem;
}
.engagement-banner-text p { font-size: 0.85rem; opacity: 0.88; line-height: 1.6; }
.engagement-banner-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.engagement-banner .btn-outline {
  border-color: rgba(255,255,255,0.5); color: #fff;
}
.engagement-banner .btn-outline:hover { background: #fff; color: var(--brand); }

.social-connect-section { background: var(--cream); }
.social-connect-grid {
  display: grid; gap: 1.5rem;
}
.social-connect-feed {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 1.25rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.social-feed-header {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem; font-weight: 600; color: var(--brand);
}
.social-feed-preview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
  margin-bottom: 1rem;
}
.social-feed-item {
  aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
}
.social-feed-item img { width: 100%; height: 100%; object-fit: cover; }
.social-connect-cards { display: grid; gap: 0.85rem; }
.social-connect-card {
  display: block; padding: 1.15rem 1.25rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition);
  color: var(--text-brown); text-decoration: none;
}
.social-connect-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.social-connect-card h4 { font-size: 0.95rem; margin: 0.5rem 0 0.25rem; color: var(--brand); }
.social-connect-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.social-connect-cta {
  display: inline-block; margin-top: 0.65rem;
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
}

.product-carousel-wrap {
  position: relative; overflow: hidden; padding: 0 2.5rem;
}
.product-carousel-track {
  display: flex; gap: 0.85rem; transition: transform 0.45s ease;
}
.product-carousel-wrap .carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.product-carousel-wrap .carousel-nav:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.product-carousel-wrap .carousel-prev { left: 0; }
.product-carousel-wrap .carousel-next { right: 0; }

/* ── Floating Social Bar (Homepage) ── */
.nh-social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 940;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding-right: 0.65rem;
  pointer-events: none;
}
.nh-social-float > * { pointer-events: auto; }

.nh-social-float-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 52px;
  padding: 0.65rem 0.4rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: -4px 4px 20px rgba(107,29,29,0.35);
  transition: all var(--transition);
}
.nh-social-float-toggle:hover {
  transform: translateX(-3px);
  box-shadow: -6px 6px 24px rgba(107,29,29,0.45);
}
.nh-social-float-toggle .nh-social-float-toggle-close { display: none; font-size: 1.4rem; line-height: 1; }
.nh-social-float.open .nh-social-float-toggle .nh-social-float-toggle-icon { display: none; }
.nh-social-float.open .nh-social-float-toggle .nh-social-float-toggle-close { display: block; }
.nh-social-float-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
  margin-top: 0.15rem;
}

.nh-social-float-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nh-social-float.open .nh-social-float-icons {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nh-social-float-icon {
  width: 44px;
  height: 44px;
  opacity: 0;
  transform: scale(0.3) translateX(30px);
  box-shadow: 0 4px 14px rgba(20,10,12,0.15);
}
.nh-social-float.open .nh-social-float-icon {
  animation: socialPopUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--pop-delay, 0s);
}
.nh-social-float-icon:hover {
  transform: scale(1.12) translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(20,10,12,0.22);
}

@keyframes socialPopUp {
  0% {
    opacity: 0;
    transform: scale(0.3) translateX(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) translateX(-4px);
  }
  80% {
    transform: scale(0.95) translateX(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@media (max-width: 991px) {
  .nh-social-float {
    top: auto;
    bottom: calc(var(--float-stack-h) + 0.75rem + var(--safe-bottom));
    left: 0;
    right: auto;
    transform: none;
    padding-left: 0;
    padding-right: 0;
    align-items: flex-start;
  }
  .nh-social-float-toggle {
    width: 44px;
    padding: 0.5rem 0.35rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 4px 4px 20px rgba(107,29,29,0.3);
  }
  .nh-social-float-icon {
    width: 40px;
    height: 40px;
  }
  .nh-social-float-label { font-size: 0.5rem; }
}

.nh-engagement-widget {
  position: fixed;
  bottom: calc(1rem + var(--safe-bottom));
  right: calc(0.85rem + var(--safe-right));
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
  max-width: calc(100vw - 5rem);
}
.nh-engagement-widget > * {
  pointer-events: auto;
}
.nh-engagement-wa-secondary {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.nh-engagement-wa-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.nh-engagement-wa-secondary svg {
  width: 20px;
  height: 20px;
}
.nh-engagement-toggle {
  min-height: 52px;
  min-width: 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(107,29,29,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nh-engagement-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,29,29,0.45);
}
.nh-engagement-toggle .btn-consultation-icon {
  width: 1.35rem;
  height: 1.35rem;
}
.nh-engagement-toggle-label {
  display: none;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .nh-engagement-toggle {
    padding: 0 1.15rem 0 0.95rem;
  }
  .nh-engagement-toggle-label {
    display: inline;
  }
}
@media (max-width: 767px) {
  .nh-engagement-toggle-label {
    display: none;
  }
  .nh-engagement-toggle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
  }
}
body:has(#product-grid) main,
body:has(.shop-layout) main {
  padding-bottom: calc(var(--float-stack-h) + 1rem);
}

.nh-consultation-product {
  margin-bottom: 1rem;
}

.cart-rec-section { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }

.nh-payment-modal {
  position: fixed; inset: 0; z-index: 7000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.nh-payment-modal.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nh-payment-modal.closing {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.nh-payment-backdrop {
  position: absolute; inset: 0; background: rgba(20,10,12,0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.nh-payment-modal.open .nh-payment-backdrop,
.nh-payment-modal.closing .nh-payment-backdrop { opacity: 1; }
.nh-payment-panel {
  position: relative; z-index: 1; width: min(100%, 520px);
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232, 224, 212, 0.85);
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.nh-consultation-panel { width: min(100%, 560px); }
.nh-payment-modal.open .nh-payment-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.nh-payment-modal.closing .nh-payment-panel {
  transform: scale(0.96) translateY(10px);
  opacity: 0;
}
.nh-payment-close {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: var(--cream); font-size: 1.35rem; cursor: pointer;
  color: var(--text-muted); line-height: 1;
}
.nh-payment-header { text-align: center; margin-bottom: 1.5rem; }
.nh-payment-icon {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 0.5rem;
}
.nh-payment-header h2 {
  font-family: var(--font-serif); font-size: 1.35rem;
  color: var(--brand); margin-bottom: 0.5rem;
}
.nh-payment-header p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.nh-payment-total {
  margin-top: 0.75rem; padding: 0.65rem 1rem;
  background: var(--cream); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text-brown);
}
.nh-payment-total strong { color: var(--brand); font-size: 1.05rem; }
.nh-payment-form {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.nh-payment-form .form-group {
  margin-bottom: 0.85rem; min-width: 0;
}
.nh-payment-form .form-row .form-group {
  margin-bottom: 0.85rem;
}
.nh-payment-form label {
  display: block; font-size: 0.8125rem; font-weight: 500;
  margin-bottom: 0.45rem; color: var(--text-brown); letter-spacing: 0.01em;
}
.nh-payment-form label .req {
  color: #c0392b; margin-left: 0.15rem; font-weight: 600;
}
.nh-payment-form input[type="text"],
.nh-payment-form input[type="tel"],
.nh-payment-form input[type="email"],
.nh-payment-form input[type="date"],
.nh-payment-form input[type="time"],
.nh-payment-form textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  color: var(--text-brown); background: var(--surface);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.nh-payment-form input::placeholder,
.nh-payment-form textarea::placeholder { color: #9A8B7E; }
.nh-payment-form input:hover,
.nh-payment-form textarea:hover { border-color: #D4C9BC; }
.nh-payment-form input:focus,
.nh-payment-form textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 29, 29, 0.08); background: #fff;
}
.nh-payment-form textarea {
  resize: vertical; min-height: 88px; line-height: 1.55;
}
.nh-payment-form input[type="date"],
.nh-payment-form input[type="time"] {
  color-scheme: light;
  min-height: 46px;
}
.nh-payment-form #delivery-continue-btn,
.nh-payment-form #consultation-submit-btn {
  margin-top: 0; padding: 0.85rem 1.25rem;
  font-size: 0.82rem; letter-spacing: 0.04em;
}
.nh-consultation-actions {
  display: flex; gap: 0.75rem; margin-top: 0.85rem;
}
.nh-consultation-actions .btn {
  flex: 1; min-height: 46px;
}
.nh-consultation-actions .btn-outline {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-brown);
}
.nh-consultation-actions .btn-outline:hover {
  border-color: var(--brand); color: var(--brand); background: var(--cream);
}
.nh-consultation-form .nh-optional {
  font-size: 0.75rem; font-weight: 400; color: var(--text-muted);
}
.nh-field-error {
  display: block; margin-top: 0.35rem;
  font-size: 0.75rem; color: #c0392b; line-height: 1.4;
}
.nh-payment-form input.nh-field-invalid,
.nh-payment-form textarea.nh-field-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.nh-btn-spinner {
  display: inline-block; width: 14px; height: 14px;
  margin-right: 0.45rem; vertical-align: -2px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff; border-radius: 50%;
  animation: nh-spin 0.7s linear infinite;
}
@keyframes nh-spin { to { transform: rotate(360deg); } }
#consultation-submit-btn.is-loading {
  pointer-events: none; opacity: 0.92;
}
.nh-consultation-success {
  text-align: center; padding: 1.5rem 0.5rem 1rem;
}
.nh-consultation-success-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff; font-size: 1.5rem; font-weight: 700;
  margin-bottom: 1rem;
  animation: nh-success-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes nh-success-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.nh-consultation-success h2 {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--brand); margin-bottom: 0.5rem;
}
.nh-consultation-success p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
}
.nh-consultation-success-loader {
  width: 28px; height: 28px; margin: 1.25rem auto 0;
  border: 3px solid var(--border);
  border-top-color: var(--brand); border-radius: 50%;
  animation: nh-spin 0.8s linear infinite;
}
.nh-payment-note {
  font-size: 0.78rem; color: var(--text-muted);
  text-align: center; margin-top: 0.75rem; line-height: 1.5;
}
.nh-payment-total-breakdown {
  margin-top: 0.85rem; padding: 0.85rem 1.1rem;
  background: var(--cream); border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 224, 212, 0.95); text-align: left;
}
.nh-payment-line {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; font-size: 0.85rem; padding: 0.3rem 0; color: var(--text-brown);
}
.nh-payment-line.total {
  border-top: 1px solid var(--border); margin-top: 0.4rem; padding-top: 0.55rem;
  font-weight: 600; color: var(--brand);
}
.nh-payment-line.total strong { font-size: 1rem; color: var(--brand); }
.nh-checkout-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.5rem;
}
.nh-checkout-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  opacity: 0.45; transition: opacity var(--transition);
}
.nh-checkout-step.active, .nh-checkout-step.done { opacity: 1; }
.nh-checkout-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}
.nh-checkout-step.active .nh-checkout-step-num {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.nh-checkout-step.done .nh-checkout-step-num {
  background: #16a34a; border-color: #16a34a; color: #fff;
}
.nh-checkout-step-label {
  font-size: 0.68rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-muted); text-align: center;
  max-width: 90px; line-height: 1.3;
}
.nh-checkout-step.active .nh-checkout-step-label { color: var(--brand); font-weight: 600; }
.nh-checkout-step-line {
  width: 48px; height: 2px; background: var(--border); margin-bottom: 1.1rem;
  transition: background var(--transition);
}
.nh-checkout-step-line.done { background: #16a34a; }
.nh-payment-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 1rem;
  margin-bottom: 0.1rem;
}
.nh-delivery-review {
  padding: 1rem; background: var(--cream); border-radius: var(--radius-sm);
  margin-bottom: 1rem; border: 1px solid var(--border);
}
.nh-delivery-review-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.5rem;
}
.nh-delivery-review-head h3 {
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--brand); margin: 0;
}
.nh-delivery-edit {
  background: none; border: none; color: var(--accent);
  font-size: 0.78rem; cursor: pointer; text-decoration: underline;
}
.nh-delivery-review-name {
  font-size: 0.88rem; font-weight: 500; color: var(--text-brown); margin: 0 0 0.25rem;
}
.nh-delivery-review-address {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0;
}
@media (max-width: 480px) {
  .nh-payment-panel { padding: 1.65rem 1.15rem 1.35rem; }
  .nh-payment-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .nh-consultation-actions { flex-direction: column-reverse; }
  .nh-consultation-actions .btn { width: 100%; }
  .nh-checkout-step-label { font-size: 0.62rem; max-width: 72px; }
  .nh-checkout-step-line { width: 28px; }
}

/* Invoice success modal */
.nh-invoice-modal {
  position: fixed; inset: 0; z-index: 7500;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.nh-invoice-modal.open { display: flex; }
.nh-invoice-backdrop {
  position: absolute; inset: 0; background: rgba(20,10,12,0.65);
  backdrop-filter: blur(4px);
}
.nh-invoice-panel {
  position: relative; z-index: 1; width: min(100%, 440px);
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-lg); text-align: center;
}
.nh-invoice-success-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: #16a34a; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700;
}
.nh-invoice-panel h2 {
  font-family: var(--font-serif); font-size: 1.35rem;
  color: var(--brand); margin-bottom: 0.5rem;
}
.nh-invoice-panel p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.nh-invoice-meta {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 1rem; margin-bottom: 1.25rem; text-align: left;
}
.nh-invoice-meta div {
  display: flex; justify-content: space-between;
  padding: 0.35rem 0; font-size: 0.85rem;
}
.nh-invoice-meta span { color: var(--text-muted); }
.nh-invoice-close-text {
  display: block; width: 100%; margin-top: 0.75rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 0.82rem; cursor: pointer; text-decoration: underline;
}

@media (min-width: 768px) {
  .cart-checkout-grid { grid-template-columns: 1fr min(380px, 36%); align-items: start; }
  .cart-checkout-aside { position: sticky; top: var(--header-sticky-offset); }
  .social-connect-grid { grid-template-columns: 1fr 1fr; }
  .pdp-help-actions { flex-direction: row; }
  .pdp-help-actions .btn { flex: 1; }
}

@media (min-width: 992px) {
  .header-social { display: flex; }
}

/* Legal & Policy Pages */
.legal-page { padding: 2rem 0 4rem; background: var(--cream); min-height: 60vh; }
.legal-breadcrumb {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.legal-breadcrumb a { color: var(--brand); }
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-header {
  max-width: 820px; margin-bottom: 2.5rem;
}
.legal-header h1 {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand); margin-bottom: 0.75rem; line-height: 1.2;
}
.legal-meta {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem;
}
.legal-intro {
  font-size: 1rem; line-height: 1.75; color: var(--text);
}
.legal-layout {
  display: grid; gap: 2.5rem;
}
@media (min-width: 992px) {
  .legal-layout { grid-template-columns: 220px 1fr; align-items: start; }
}
.legal-toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  position: sticky; top: var(--header-sticky-offset);
}
.legal-toc h2 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.85rem;
}
.legal-toc ol {
  list-style: none; counter-reset: legal-toc;
  font-size: 0.82rem; line-height: 1.5;
}
.legal-toc li { margin-bottom: 0.45rem; }
.legal-toc a {
  color: var(--text-muted); display: block; padding: 0.2rem 0;
  transition: color var(--transition);
}
.legal-toc a:hover { color: var(--brand); }
.legal-content {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .legal-content { padding: 2.5rem 3rem; }
}
.legal-content section {
  margin-bottom: 2.25rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-content section:last-child {
  margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.legal-content h2 {
  font-family: var(--font-serif); font-size: 1.25rem;
  color: var(--brand); margin-bottom: 0.85rem; scroll-margin-top: var(--header-h);
}
.legal-content h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  margin: 1.15rem 0 0.5rem;
}
.legal-content p {
  font-size: 0.92rem; line-height: 1.75; color: var(--text);
  margin-bottom: 0.85rem;
}
.legal-content ul, .legal-content ol {
  font-size: 0.92rem; line-height: 1.75; color: var(--text);
  margin: 0.75rem 0 0.85rem 1.25rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--brand); text-decoration: underline; }
.legal-content a:hover { color: var(--brand-light); }
.legal-contact-strip {
  margin-top: 2.5rem; padding: 1.75rem;
  background: linear-gradient(135deg, var(--brand) 0%, #4a1212 100%);
  border-radius: var(--radius-lg); color: #fff;
}
.legal-contact-strip h2 {
  font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.75rem;
}
.legal-contact-strip p, .legal-contact-strip li {
  font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.88);
}
.legal-contact-strip ul { margin: 0.5rem 0 0 1.1rem; }
.legal-contact-strip a { color: var(--gold-light, #e8d5a8); }
.legal-related {
  margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.65rem;
}
.legal-related a {
  font-size: 0.82rem; padding: 0.45rem 0.85rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--brand);
  transition: background var(--transition), border-color var(--transition);
}
.legal-related a:hover {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.legal-related a.current {
  background: var(--brand); color: #fff; border-color: var(--brand);
  pointer-events: none;
}

/* ══════════════════════════════════════════
   LAYOUT SYSTEM — UI/UX ALIGNMENT AUDIT
   ══════════════════════════════════════════ */

main,
.site-header,
.site-footer,
.section,
.hero-carousel,
.promo-strip,
.mobile-cats {
  max-width: 100%;
  min-width: 0;
}

.product-grid,
.category-grid,
.featured-grid,
.collection-grid,
.stories-grid,
.budget-grid,
.occasion-grid,
.craftsmanship-grid,
.brand-story-grid,
.contact-grid,
.shop-layout,
.pdp-layout,
.cart-checkout-grid,
.footer-grid,
.testimonial-grid,
.trust-strip,
.gallery-grid,
.social-connect-grid,
.whatsapp-cta-card,
.newsletter-form,
.shop-toolbar,
.shop-toolbar-actions {
  min-width: 0;
}

.product-grid > *,
.category-grid > *,
.featured-grid > *,
.cart-checkout-grid > *,
.footer-grid > * {
  min-width: 0;
}

.shop-toolbar {
  align-items: center;
  gap: 0.75rem;
}

.shop-toolbar h1 {
  min-width: 0;
  flex: 1 1 auto;
}

.shop-toolbar-actions {
  flex: 0 1 auto;
  justify-content: flex-end;
}

.filter-modal,
.filter-panel,
.mobile-drawer,
.nh-payment-panel {
  max-width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.cart-promo-input,
.newsletter-form input,
.sort-select,
.price-range input {
  max-width: 100%;
  min-width: 0;
}

.cart-table-wrap,
.cart-items-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.pdp-info-panel,
.pdp-info,
.pdp-gallery {
  min-width: 0;
  max-width: 100%;
}

.pdp-tab-btns {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
}

.pdp-tab-btns::-webkit-scrollbar { display: none; }

.pdp-tab-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 991px) {
  :root {
    --container-pad: 1rem;
    --section-pad-y: 2.75rem;
  }

  .section { padding: var(--section-pad-y) 0; }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .filter-toggle,
  .sort-select {
    flex: 1;
    min-width: 0;
  }

  .nh-social-float {
    max-width: calc(100vw - 1rem);
  }
}

@media (max-width: 640px) {
  :root { --container-pad: 0.85rem; }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero-slide-content h1,
  .hero-slide-content p {
    max-width: 100%;
  }

  .cart-promo-form {
    flex-direction: column;
  }

  .cart-promo-form .btn {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container { padding: 0 clamp(1.25rem, 2.5vw, 2rem); }
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — 320px → 768px
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --container-pad: clamp(1rem, 4.5vw, 1.25rem);
    --section-pad-y: clamp(2rem, 6vw, 2.75rem);
    --float-stack-h: 7.75rem;
  }

  body {
    padding-bottom: calc(var(--float-stack-h) + 0.75rem + var(--safe-bottom));
  }

  .section {
    padding: var(--section-pad-y) 0;
  }

  .section-header {
    margin-bottom: clamp(1.5rem, 5vw, 2rem);
  }

  .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .section-subtitle {
    font-size: clamp(0.82rem, 3.2vw, 0.92rem);
    padding: 0 0.15rem;
  }

  .carousel-wrap {
    padding: 0;
    margin: 0 calc(var(--container-pad) * -0.15);
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .product-carousel-wrap {
    padding: 0 1.75rem;
  }

  .craftsmanship-section {
    padding: var(--section-pad-y) 0;
  }

  .craftsmanship-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .testimonial-card {
    padding: 1.35rem;
  }

  .whatsapp-cta-card {
    padding: clamp(1.25rem, 4vw, 2rem);
    gap: 1.25rem;
  }

  .whatsapp-cta-actions,
  .visit-cta-actions,
  .newsletter-form,
  .contact-form .btn,
  .contact-form .btn-consultation {
    flex-direction: column;
    align-items: stretch;
  }

  .whatsapp-cta-actions .btn,
  .visit-cta-actions .btn,
  .newsletter-form .btn,
  .newsletter-form input {
    width: 100%;
    min-width: 0;
  }

  .newsletter-form input {
    min-width: 0;
  }

  .map-wrap iframe {
    width: 100%;
    min-height: 220px;
    border: 0;
  }

  .back-to-top {
    bottom: calc(var(--float-stack-h) + 0.5rem + var(--safe-bottom));
    left: calc(0.85rem + var(--safe-left));
  }

  #toast-container {
    bottom: calc(var(--float-stack-h) + 1rem + var(--safe-bottom));
    max-width: calc(100vw - 2rem);
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 1rem;
    --float-stack-h: 7.5rem;
  }

  .announcement-bar {
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
    padding: 0.5rem 2.25rem 0.5rem 1rem;
  }

  .brand {
    max-width: calc(100% - 8rem);
  }

  .hero-slide {
    aspect-ratio: 3 / 4;
    min-height: clamp(320px, 68vh, 480px);
  }

  .hero-slide-content {
    padding-bottom: clamp(2.5rem, 8vw, 3rem);
  }

  .hero-dots {
    bottom: 1rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .hero-actions .btn {
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    padding: 0.7rem 0.65rem;
    letter-spacing: 0.04em;
  }

  .promo-strip-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .promo-strip .btn-sm {
    width: 100%;
    max-width: 14rem;
  }

  .featured-banner {
    min-height: 220px;
  }

  .trust-strip {
    padding: 1.5rem 0.5rem;
    gap: 0.85rem;
  }

  .trust-item h4 {
    font-size: clamp(0.62rem, 2.5vw, 0.72rem);
  }

  .seo-categories {
    justify-content: center;
  }

  .nh-social-float.open .nh-social-float-icons {
    max-height: min(40vh, 220px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 414px) {
  .header-top-inner {
    min-height: 56px;
  }

  .hero-slide-content h1 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .hero-slide-content p {
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    margin-bottom: 1rem;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 0.95rem;
  }

  .lang-btn {
    padding: 0.38rem 0.4rem;
    min-width: 1.85rem;
  }
}

@media (max-width: 375px) {
  .hero-eyebrow {
    letter-spacing: 0.1em;
  }

  .util-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .brand {
    max-width: calc(100% - 8.25rem);
  }

  .brand img, .brand svg {
    width: 36px;
    height: 36px;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 320px) {
  :root {
    --container-pad: 0.875rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .menu-toggle {
    padding: 0.35rem;
  }
}

@media (min-width: 640px) {
  .hero-slide {
    aspect-ratio: 16 / 9;
    min-height: 360px;
    max-height: none;
  }

  .hero-slide-content {
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem) 0;
  }

  .hero-actions .btn {
    flex: 0 1 auto;
  }

  .hero-actions .btn-consultation {
    flex: 1 1 100%;
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .hero-slide {
    aspect-ratio: 16 / 7;
    min-height: 340px;
  }

  .nh-engagement-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .nh-engagement-toggle {
    min-height: 58px;
    min-width: 58px;
    width: auto;
    height: auto;
    padding: 0 1rem;
  }

  .nh-engagement-wa-secondary {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }

  body:has(#product-grid) main,
  body:has(.shop-layout) main {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .hero-slide {
    aspect-ratio: 21 / 8;
  }

  .hero-actions .btn-consultation {
    flex: 0 1 auto;
    width: auto;
  }

  .btn-consultation-label {
    white-space: nowrap;
  }
}

/* Mobile top bar — search icon + nav order (≤768px) */
@media (max-width: 768px) {
  .mobile-search-toggle {
    display: flex;
  }

  .header-top-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "menu brand utils";
    align-items: center;
    gap: 0.25rem;
  }

  .menu-toggle {
    grid-area: menu;
  }

  .brand {
    grid-area: brand;
    flex: none;
    min-width: 0;
    max-width: none;
  }

  .header-search {
    display: none;
  }

  .header-utils {
    grid-area: utils;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: 0;
    flex-shrink: 0;
  }

  .header-utils .util-wishlist {
    display: none;
  }

  .header-utils .lang-switcher,
  .header-social {
    display: none;
  }

  .util-btn,
  .mobile-search-toggle,
  .menu-toggle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
}

/* ══════════════════════════════════════════
   MOBILE UX AUDIT — v80 refinements
   ══════════════════════════════════════════ */

body.drawer-open,
body.filter-open,
body.search-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.mobile-drawer-lang {
  display: none;
  margin: 0 1rem 0.75rem;
}

.mobile-drawer-header button {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.mobile-nav > a,
.mobile-nav .mobile-nav-link,
.mobile-nav .mobile-nav-home {
  min-height: 48px;
}

.mobile-search input {
  min-height: 48px;
  font-size: 16px;
}

.mobile-search button {
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  :root {
    --header-h: 72px;
  }

  .header-top-inner {
    gap: 0.35rem;
    padding: 0.55rem 0;
    min-height: 56px;
    overflow: hidden;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    gap: 0.5rem;
  }

  .header-utils {
    gap: 0.15rem;
    flex-shrink: 0;
    margin-left: 0;
  }

  .header-utils .lang-switcher {
    display: none;
  }

  .mobile-drawer-lang {
    display: flex;
  }

  .header-social {
    display: none !important;
  }

  .shop-main .product-grid:not(.list-view) .product-card-image {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .product-card .wishlist-btn {
    opacity: 1;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .product-card-actions {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .product-action-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .map-wrap {
    aspect-ratio: 4 / 3;
  }

  .pdp-sticky-bar {
    padding: 0.75rem var(--container-pad);
    padding-bottom: calc(0.75rem + var(--safe-bottom));
    gap: 0.65rem;
    flex-wrap: nowrap;
  }

  .pdp-sticky-info h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pdp-sticky-actions {
    flex-shrink: 0;
  }

  .pdp-sticky-actions .btn {
    min-height: 48px;
    min-width: 7.5rem;
    padding: 0.75rem 1rem;
    font-size: clamp(0.62rem, 2.5vw, 0.72rem);
  }

  .pdp-actions .btn {
    min-height: 48px;
    width: 100%;
  }

  .qty-selector button {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
  }

  .qty-selector input {
    min-height: 48px;
    width: 56px;
    font-size: 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .newsletter-form input {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .cart-table td[data-label="Quantity"] .qty-selector,
  .cart-table .qty-selector {
    width: 100%;
    max-width: 9.5rem;
  }

  .engagement-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .engagement-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .engagement-banner-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .quick-view-panel {
    padding: 1.15rem;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin-top: auto;
    align-self: flex-end;
  }

  .quick-view-modal {
    align-items: flex-end;
    padding: 0;
  }

  .filter-panel {
    padding-bottom: calc(1.5rem + var(--safe-bottom));
  }

  .filter-panel-actions .btn {
    min-height: 48px;
    flex: 1;
  }

  .carousel-track .product-card {
    min-width: calc(50% - 0.5rem);
  }

  .legal-toc {
    position: static;
  }

  .legal-content {
    padding: 1.5rem 1.15rem;
  }
}

@media (max-width: 480px) {
  .btn {
    min-height: 48px;
    padding: 0.8rem 1rem;
  }

  .btn-sm {
    min-height: 44px;
    padding: 0.65rem 1rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .featured-banner {
    min-height: 200px;
    aspect-ratio: 3 / 4;
  }

  .category-grid,
  .collection-grid,
  .occasion-grid {
    gap: 0.65rem;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .product-card-body {
    padding: 0.75rem 0.75rem 0.9rem;
  }

  .product-name {
    font-size: clamp(0.75rem, 3.2vw, 0.82rem);
  }

  .shop-toolbar h1 {
    font-size: clamp(1.15rem, 5vw, 1.35rem);
  }

  .view-toggle {
    display: none;
  }

  .pdp-attrs {
    grid-template-columns: 1fr;
  }

  .pdp-trust,
  .pdp-trust-badges {
    grid-template-columns: 1fr;
  }

  .pdp-thumb {
    width: 64px;
    height: 96px;
  }

  .cart-checkout-actions .btn {
    min-height: 48px;
  }

  .visit-cta {
    padding: 2.5rem 0;
  }

  .whatsapp-cta {
    padding: 2.5rem 0;
  }

  .newsletter-section {
    padding: 2.5rem 0;
  }

  .site-footer {
    padding-top: 2.5rem;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 0.9rem;
  }

  .header-utils {
    gap: 0.1rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .mobile-drawer,
  .drawer-overlay,
  .search-overlay,
  .search-overlay-panel,
  .search-overlay-backdrop,
  .filter-panel,
  .hero-slides,
  .carousel-track {
    transition: none !important;
    animation: none !important;
  }

  .hero-slide img,
  .hero-slide.active img {
    transform: none !important;
  }
}

/* Shop loading skeleton + SEO pre-render cards */
.skeleton-card {
  background: var(--surface, #fff);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  min-height: 280px;
}

.skeleton-img,
.skeleton-line {
  background: linear-gradient(90deg, #f0ebe3 25%, #e8dfd3 50%, #f0ebe3 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

.skeleton-img { height: 220px; }
.skeleton-line { height: 14px; margin: 0.75rem 1rem 0.35rem; border-radius: 4px; }
.skeleton-line.short { width: 45%; margin-bottom: 1rem; }

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

.product-card.seo-prerender .product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card.seo-prerender .product-card-title {
  font-size: 1rem;
  margin: 0.75rem 0 0.25rem;
  font-weight: 600;
}

.product-card.seo-prerender .product-card-price {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.product-card.seo-prerender .product-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn.is-loading { opacity: 0.75; pointer-events: none; }
