@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --burgundy: #7C0832;
  --burgundy-dark: #5a0624;
  --burgundy-light: #9a1a4a;
  --gold: #C5A355;
  --gold-light: #D4B96A;
  --gold-dark: #A8893E;
  --champagne: #FDF8F0;
  --champagne-dark: #F5EDE0;
  --cream: #FFFBF5;
  --white: #ffffff;
  --black: #1A1A1A;
  --gray-900: #2D2D2D;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #CCCCCC;
  --gray-100: #F5F5F5;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.curtain-active {
  overflow: hidden;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #1a0510 0%, #3a0618 40%, #5a0624 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
  animation: curtainFallback 0.6s 2s forwards;
}

.page-curtain.lifted {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes curtainFallback {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.curtain-logo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  animation: curtainLogoIn 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  text-shadow: 0 0 40px rgba(197, 163, 85, 0.3);
}

@keyframes curtainLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--gray-500);
}

.topbar {
  background: linear-gradient(90deg, #5a0624, var(--burgundy), #5a0624);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(197, 163, 85, 0.25);
  position: relative;
}

.topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 163, 85, 0.4), transparent);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--burgundy);
}

.brand:hover { color: var(--burgundy-dark); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-700);
  position: relative;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: var(--transition);
}

.nav a:not(.btn):hover::after { width: 100%; }
.nav a:not(.btn):hover { color: var(--burgundy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  min-height: 48px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
}

.btn-solid {
  background: var(--burgundy);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 8, 50, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 4px;
  border-radius: 2px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 24px 24px;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a.btn {
  margin-top: 8px;
  text-align: center;
  justify-content: center;
}

.hero-cinematic {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0510 0%, #3a0618 15%, #7C0832 35%, #9a1a4a 50%, #C5A355 80%, #D4B96A 100%);
}

.hero-cinematic-bg {
  position: absolute;
  inset: -10px;
  background: linear-gradient(160deg, #1a0510 0%, #3a0618 15%, #7C0832 35%, #9a1a4a 50%, #C5A355 80%, #D4B96A 100%);
  animation: heroZoom 20s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-cinematic-gold {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 35%, rgba(197, 163, 85, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 20% 75%, rgba(197, 163, 85, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 80%, rgba(253, 248, 240, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: goldPulse 6s ease-in-out infinite alternate;
}

@keyframes goldPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 680px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(197, 163, 85, 0.5);
  animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) { left: 15%; top: 80%; animation-duration: 8s; animation-delay: 0s; width: 2px; height: 2px; }
.hero-particles span:nth-child(2) { left: 35%; top: 90%; animation-duration: 10s; animation-delay: 1s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { left: 55%; top: 85%; animation-duration: 7s; animation-delay: 2s; width: 2px; height: 2px; }
.hero-particles span:nth-child(4) { left: 75%; top: 95%; animation-duration: 9s; animation-delay: 0.5s; width: 4px; height: 4px; opacity: 0.3; }
.hero-particles span:nth-child(5) { left: 25%; top: 88%; animation-duration: 11s; animation-delay: 3s; width: 2px; height: 2px; }
.hero-particles span:nth-child(6) { left: 65%; top: 92%; animation-duration: 8s; animation-delay: 1.5s; width: 3px; height: 3px; }

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-90vh) translateX(20px); opacity: 0; }
}

.hero-cinematic h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-shimmer {
  display: inline;
  color: var(--white);
  position: relative;
}

.hero-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 185, 106, 0.35), transparent);
  animation: shimmerSweep 3s 1.5s ease-in-out forwards;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { left: -60%; }
  100% { left: 110%; }
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.hero-cinematic .eyebrow {
  color: var(--gold-light);
  margin-bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-shadow: 0 0 20px rgba(197, 163, 85, 0.3);
}

.hero-cinematic-cta {
  margin-bottom: 36px;
}

.btn-hero {
  padding: 18px 52px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, rgba(197, 163, 85, 0.15) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(197, 163, 85, 0.15) 100%);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(197, 163, 85, 0.5), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1.5px solid rgba(197, 163, 85, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.6s ease;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  background: linear-gradient(135deg, rgba(197, 163, 85, 0.3) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(197, 163, 85, 0.3) 100%);
  color: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--gold-light), 0 12px 40px rgba(197, 163, 85, 0.35), 0 0 80px rgba(197, 163, 85, 0.12);
}

.hero-secondary-link {
  display: inline-block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.hero-secondary-link:hover {
  color: var(--gold-light);
}

.hero-arrow-bounce {
  display: inline-block;
  animation: arrowBounce 2s ease-in-out infinite;
  margin-right: 4px;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(197, 163, 85, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-delay-1 { animation-delay: 0.15s; }
.hero-delay-2 { animation-delay: 0.3s; }
.hero-delay-3 { animation-delay: 0.45s; }
.hero-delay-4 { animation-delay: 0.6s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quick-product {
  padding: 64px 0 72px;
  background: var(--champagne);
  position: relative;
}

.quick-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 163, 85, 0.2), transparent);
}

.quick-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.quick-product-visual {
  aspect-ratio: 4/4.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, #F5EDE0 40%, rgba(197, 163, 85, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 163, 85, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 0 60px rgba(197, 163, 85, 0.04);
}

.quick-product-visual::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(197, 163, 85, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.quick-product-label {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-align: center;
  padding: 20px;
  opacity: 0.6;
}

.quick-product-info .eyebrow {
  margin-bottom: 12px;
}

.quick-product-info h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
  color: var(--burgundy);
}

.quick-product-spec {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.quick-product-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick-product-row .price {
  margin: 0;
  flex-shrink: 0;
}

.quick-product-row .btn {
  min-width: 160px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 20px;
  font-weight: 500;
}

.img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--champagne-dark) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-text {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 20px;
}


.link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

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

.statement {
  background: var(--white);
}

.statement-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.statement-inner h2 {
  margin-bottom: 16px;
}

.statement-inner p {
  margin-bottom: 24px;
}

.statement-inner .mini-points {
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-2 h2 { margin-bottom: 16px; }
.grid-2 p { margin-bottom: 24px; }

.mini-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini {
  padding: 8px 16px;
  background: var(--champagne);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  color: var(--burgundy);
}

.img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrap .img-placeholder {
  aspect-ratio: 1/1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card .img-placeholder {
  aspect-ratio: 1/1;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.product-bullets {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
}

.experience {
  background: var(--champagne);
}

.packaging-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  perspective: 800px;
}

.packaging-gallery .img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124, 8, 50, 0.12), 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.packaging-gallery .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(197, 163, 85, 0.2);
  pointer-events: none;
  transition: border-color 0.5s ease;
}

.packaging-gallery .img-wrap:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(124, 8, 50, 0.18), 0 8px 24px rgba(0,0,0,0.1);
}

.packaging-gallery .img-wrap:hover::after {
  border-color: rgba(197, 163, 85, 0.5);
}

.packaging-gallery .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--burgundy);
}

.why-card p {
  font-size: 0.9rem;
}

.why-card .why-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
  color: var(--gold);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review {
  padding: 32px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
  text-align: center;
}

.review .stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review p:not(.stars) {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 16px;
  line-height: 1.7;
}

.review span {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.waitlist-teaser {
  background: var(--burgundy);
  padding: 80px 0;
  text-align: center;
}

.waitlist-teaser h2 {
  color: var(--gold-light);
  margin-bottom: 12px;
}

.waitlist-teaser p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1rem;
}

.shade-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.shade-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  min-height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.shade-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.shade-btn .shade-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer .brand {
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.footer .muted {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.mobile-shop-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mobile-shop-btn .btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  min-height: 52px;
}

.page-hero {
  background: var(--champagne);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  color: var(--burgundy);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.product-detail {
  padding: 40px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery .img-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-gallery-thumbs .thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--champagne-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-gallery-thumbs .thumb.active,
.product-gallery-thumbs .thumb:hover {
  border-color: var(--burgundy);
}

.product-details h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.product-details .product-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.product-details .price {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: block;
}

.product-specs {
  margin-bottom: 32px;
}

.product-specs h3,
.product-section-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gray-500);
  font-family: var(--font-sans);
  font-weight: 600;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.included-list {
  margin-bottom: 32px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-700);
}

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

.included-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.specs-table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.specs-table td {
  padding: 12px 0;
  font-size: 0.85rem;
  vertical-align: top;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--black);
  width: 45%;
  padding-right: 16px;
}

.specs-table td:last-child {
  color: var(--gray-700);
}

.shade-selector {
  margin-bottom: 32px;
}

.shade-selector h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--gray-500);
  font-family: var(--font-sans);
  font-weight: 600;
}

.shade-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shade-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.shade-swatch:hover,
.shade-swatch.active {
  border-color: var(--burgundy);
  transform: scale(1.1);
}

.shade-swatch:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.shade-swatch.active::after {
  content: '\2713';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.product-actions .btn {
  flex: 1;
  padding: 16px 24px;
  min-height: 52px;
}

.product-promise {
  padding: 24px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.product-promise h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--burgundy);
}

.promise-list li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--gray-700);
  padding-left: 24px;
  position: relative;
}

.promise-list li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.shipping-info {
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.shipping-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--burgundy);
}

.shipping-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-100);
}

.shipping-detail:last-child {
  border-bottom: none;
}

.shipping-detail span:first-child {
  color: var(--gray-700);
}

.shipping-detail span:last-child {
  font-weight: 600;
  color: var(--black);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 16px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--burgundy);
}

.trust-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-700);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.collection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collection-card .img-placeholder {
  aspect-ratio: 1/1;
}

.collection-card-info {
  padding: 20px;
}

.collection-card-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.collection-card-info .shade-name {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.collection-card-info .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collection-card-info .price {
  font-size: 1.1rem;
}

.badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-stock {
  background: rgba(124, 8, 50, 0.08);
  color: var(--burgundy);
}

.badge-waitlist {
  background: rgba(197, 163, 85, 0.15);
  color: var(--gold-dark);
}

.badge-sold {
  background: rgba(0,0,0,0.06);
  color: #888;
}

.form-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  min-height: 48px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(124, 8, 50, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  min-height: 52px;
}

.care-card-visual {
  max-width: 480px;
  margin: 0 auto 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.care-card-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.care-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.care-block {
  margin-bottom: 48px;
}

.care-block h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--burgundy);
}

.care-block h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  margin-top: 24px;
}

.care-block p {
  margin-bottom: 12px;
}

.care-block ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}

.care-block ol li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.care-tip {
  background: var(--champagne);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0;
}

.care-tip p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin: 0;
}

.care-schedule {
  margin-top: 48px;
  padding: 32px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
}

.care-schedule h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--burgundy);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.85rem;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row span:first-child {
  font-weight: 600;
  color: var(--black);
}

.schedule-row span:last-child {
  color: var(--gray-700);
}

.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  background: var(--champagne);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 32px;
}

.print-btn:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.about-block {
  margin-bottom: 48px;
}

.about-block h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--burgundy);
}

.about-block p {
  margin-bottom: 16px;
}

.about-packaging {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-packaging .img-placeholder {
  aspect-ratio: 16/9;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-value {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
}

.about-value .value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.about-value h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--burgundy);
}

.about-value p {
  font-size: 0.85rem;
}

.success-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.success-content {
  max-width: 480px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--burgundy);
}

.success-content p {
  margin-bottom: 32px;
  font-size: 1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--gold);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.faq-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}

.faq-section h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--burgundy);
  text-align: center;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  padding: 0;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--burgundy);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 12px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.contact-info-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray-700);
}

.cart-toggle:hover { color: var(--burgundy); }

.cart-toggle svg {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-500);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close:hover { color: var(--black); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 20px;
}

.cart-empty-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

.cart-empty p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gray-500);
}

.cart-empty .btn {
  margin-top: 8px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item:first-child { padding-top: 0; }
.cart-item:last-child { border-bottom: none; }

.cart-item-info h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.cart-item-shade {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--gray-700);
  transition: var(--transition);
  font-family: var(--font-sans);
}

.qty-btn:hover {
  background: var(--champagne);
  color: var(--burgundy);
}

.qty-value {
  width: 36px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  border-left: 1px solid var(--gray-300);
  border-right: 1px solid var(--gray-300);
  line-height: 36px;
}

.cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--gray-500);
  transition: var(--transition);
}

.cart-remove:hover { color: var(--burgundy); }

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--gray-100);
  background: var(--champagne);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-subtotal span:first-child {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-700);
}

.cart-subtotal span:last-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
}

.cart-shipping-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.cart-checkout-btn {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  min-height: 52px;
  margin-bottom: 12px;
}

.cart-checkout-btn.cart-checkout-multi {
  display: none;
}

.cart-multi-checkout {
  margin-bottom: 12px;
}

.cart-multi-note {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  margin-bottom: 8px;
  text-align: center;
}

.cart-item-checkout,
.cart-item-checkout-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.cart-item-checkout:hover {
  background: var(--black);
  color: var(--white);
}

.cart-continue {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.5px;
  padding: 8px;
  transition: var(--transition);
}

.cart-continue:hover { color: var(--gold); }

.cart-toast {
  position: fixed;
  top: 90px;
  right: 24px;
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(124, 8, 50, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-toast span {
  color: var(--gold-light);
}

.cart-toast.show {
  transform: translateX(0);
}

.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  height: 48px;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 163, 85, 0.35), transparent);
}

.luxury-divider span {
  padding: 0 16px;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--burgundy);
}

.breadcrumb span[aria-current] {
  color: var(--black);
  font-weight: 500;
}

.product-emotion {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.product-price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-price-block .price {
  margin-bottom: 0;
}

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.product-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.product-badge-pill.best-seller {
  background: var(--burgundy);
  color: var(--white);
}

.product-badge-pill.new-arrival {
  background: linear-gradient(135deg, #1e3a5f, #2a5298);
  color: var(--white);
}

.product-badge-pill.on-sale {
  background: #d97706;
  color: var(--white);
}

.product-badge-pill.custom {
  background: var(--gold);
  color: var(--white);
}

.compare-at-price {
  font-size: 0.88rem;
  color: var(--gray-500);
  text-decoration: line-through;
  font-weight: 400;
  font-family: var(--font-sans);
  display: none;
  margin-bottom: 4px;
}

.compare-at-price.visible {
  display: block;
}

.stock-low {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  background: rgba(124, 8, 50, 0.06);
  border-radius: 20px;
  animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.stock-sold-out {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 20px;
}

.stock-in {
  font-size: 0.78rem;
  font-weight: 600;
  color: #065f46;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  background: #d1fae5;
  border-radius: 20px;
}

.sold-out-option {
  opacity: 0.38;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}

.shade-swatch.sold-out-swatch {
  opacity: 0.3;
  cursor: not-allowed;
  filter: grayscale(0.6);
  position: relative;
}
.shade-swatch.sold-out-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

.btn.btn-disabled,
button.btn-disabled {
  background: var(--gray-300) !important;
  color: var(--gray-500) !important;
  cursor: not-allowed !important;
  border-color: var(--gray-300) !important;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.product-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-700);
  font-weight: 500;
}

.trust-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.length-selector {
  margin-bottom: 24px;
}

.length-selector h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--black);
}

.length-selector h3 span {
  font-weight: 700;
  color: var(--burgundy);
}

.length-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.length-btn {
  min-width: 56px;
  height: 44px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.length-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.length-btn.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  font-weight: 600;
}

.social-proof-live {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: opacity 0.5s ease;
}

.proof-viewing {
  background: rgba(124,8,50,0.06);
  color: var(--burgundy);
}

.proof-sold {
  background: rgba(197,163,85,0.10);
  color: var(--gold-dark);
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  animation: proofPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.proof-check {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.proof-text {
  transition: opacity 0.5s ease;
}

@keyframes proofPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 600px) {
  .social-proof-live {
    gap: 8px;
  }
  .proof-pill {
    font-size: 0.74rem;
    padding: 5px 12px;
  }
}

.social-proof {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--gold);
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.review-snippets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.review-card {
  padding: 16px 20px;
  background: var(--champagne);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 163, 85, 0.12);
}

.review-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--black);
  font-style: italic;
  margin-bottom: 8px;
}

.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}

.review-location {
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 4px;
}

.trust-badges {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 6px;
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--burgundy);
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid rgba(197, 163, 85, 0.2);
}

.trust-badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  line-height: 1.3;
}

@media (max-width: 480px) {
  .trust-badges {
    gap: 8px;
  }
  .trust-badge-label {
    font-size: 0.65rem;
  }
}

.product-quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 163, 85, 0.15);
}

.quick-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.product-main-img {
  aspect-ratio: 4/5;
}

.sold-out-notice {
  text-align: center;
  padding: 32px 24px;
  background: var(--champagne);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sold-out-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.sold-out-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.sold-out-notice .btn {
  width: 100%;
  max-width: 300px;
}

@media print {
  .topbar, .header, .footer, .mobile-shop-btn, .print-btn { display: none !important; }
  body { padding: 0; }
  .care-content { padding: 20px 0; max-width: 100%; }
}

@media (max-width: 1024px) {
  .quick-product-card { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .about-values { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-shop-btn { display: block; }

  body { padding-bottom: 90px; }

  .section { padding: 56px 0; }

  .hero-cinematic { min-height: 90vh; }
  .hero-cinematic-content { padding: 60px 20px; }
  .hero-sub { margin-bottom: 40px; }
  .hero-cinematic-cta { margin-bottom: 32px; }
  .quick-product { padding: 48px 0 56px; }
  .quick-product-card { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }
  .quick-product-visual { aspect-ratio: 1/1; }
  .quick-product-info { text-align: left; }
  .quick-product-info .eyebrow { margin-bottom: 8px; }
  .quick-product-row { justify-content: space-between; }
  .quick-product-row .btn { min-width: 140px; flex-shrink: 0; }

  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .product-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .spec-list { grid-template-columns: 1fr; }
  .product-quick-specs { grid-template-columns: 1fr; }
  .product-trust-row { gap: 10px; }
  .product-trust-item { font-size: 0.75rem; }
  .breadcrumb { margin-bottom: 16px; font-size: 0.75rem; }

  .about-values { grid-template-columns: 1fr; }

  .page-hero { padding: 100px 0 40px; }

  .btn-hero { width: 100%; max-width: 320px; margin: 0 auto; }

  .trust-badges { gap: 20px; }

  .shade-buttons { gap: 8px; }

  .waitlist-teaser { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .collection-grid { grid-template-columns: 1fr; }
  .header-inner { height: 60px; }
  .topbar { font-size: 0.65rem; padding: 8px 12px; }
  .trust-badges { gap: 16px; }
}
.trust-badges {
  margin-top: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

#aaChatWidget {
  --chat-burgundy: #7C0832;
  --chat-burgundy-dark: #5e0625;
  --chat-gold: #C5A355;
  --chat-champagne: #FDF8F0;
  --chat-cream: #FFFBF5;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--chat-burgundy);
  border: 3px solid var(--chat-gold);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(124,8,50,0.4), 0 0 0 0 rgba(197,163,85,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 10001;
  padding: 0;
  overflow: hidden;
  animation: chatFabGlow 3s ease-in-out infinite;
}
@keyframes chatFabGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(124,8,50,0.4), 0 0 0 0 rgba(197,163,85,0.3); }
  50% { box-shadow: 0 4px 24px rgba(124,8,50,0.4), 0 0 0 8px rgba(197,163,85,0); }
}
.chat-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(124,8,50,0.5);
  animation: none;
}
.chat-fab-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-fab-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #fff;
}
.chat-open .chat-fab-logo { opacity: 0; transform: scale(0.6); }
.chat-open .chat-fab-close { opacity: 1; transform: rotate(0) scale(1); }
.chat-open .chat-fab { animation: none; }
.chat-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: var(--chat-gold);
  color: var(--chat-burgundy);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: chatBadgePop 0.4s ease;
}
@keyframes chatBadgePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.chat-window {
  position: fixed;
  bottom: 104px;
  right: 24px;
  width: 400px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 130px);
  background: var(--chat-cream);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(124,8,50,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1);
}
.chat-open .chat-window {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: linear-gradient(135deg, var(--chat-burgundy) 0%, #600828 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 2px solid var(--chat-gold);
}
.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-back-btn {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
.chat-back-btn:hover { color: #fff; }
.chat-header-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--chat-gold);
  flex-shrink: 0;
}
.chat-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-header-name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
}
.chat-header-status {
  color: rgba(255,255,255,0.7);
  font-size: 11.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34c759;
  display: inline-block;
  animation: chatStatusPulse 2s ease-in-out infinite;
}
@keyframes chatStatusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.chat-close-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  line-height: 0;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

.chat-welcome {
  text-align: center;
  padding: 24px 16px 8px;
}
.chat-welcome-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--chat-gold);
  margin-bottom: 10px;
}
.chat-welcome-title {
  font-family: 'Playfair Display', serif;
  color: var(--chat-burgundy);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}
.chat-welcome-sub {
  color: var(--chat-gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: var(--chat-cream);
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.chat-body::-webkit-scrollbar { width: 3px; }
.chat-body::-webkit-scrollbar-track { background: transparent; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(124,8,50,0.12); border-radius: 3px; }

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
  animation: chatMsgSlide 0.35s cubic-bezier(.4,0,.2,1);
}
.chat-msg-user { align-self: flex-end; align-items: flex-end; }
.chat-msg-bot { align-self: flex-start; align-items: flex-start; }
@keyframes chatMsgSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.chat-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--chat-gold);
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.chat-bubble-user {
  background: var(--chat-burgundy);
  color: #fff;
  border-bottom-right-radius: 6px;
  box-shadow: 0 2px 8px rgba(124,8,50,0.15);
}
.chat-bubble-bot {
  background: #fff;
  color: #3a3a3a;
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.chat-bubble-bot strong { color: var(--chat-burgundy); }
.chat-bubble-bot a {
  color: var(--chat-burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 500;
}
.chat-bubble-bot a:hover { color: var(--chat-gold); }

.chat-cta-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--chat-burgundy), var(--chat-burgundy-dark));
  color: #fff !important;
  text-decoration: none !important;
  padding: 10px 22px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(124,8,50,0.2);
  margin-top: 4px;
}
.chat-cta-link:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(124,8,50,0.3); color: #fff !important; }

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding-left: 38px;
}
.chat-quick-btn {
  background: var(--chat-cream);
  border: 1.5px solid rgba(124,8,50,0.2);
  color: var(--chat-burgundy);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', -apple-system, sans-serif;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.chat-quick-btn:hover,
.chat-quick-btn:active {
  background: var(--chat-burgundy);
  color: #fff;
  border-color: var(--chat-burgundy);
  transform: translateY(-1px);
}

.chat-footer {
  flex-shrink: 0;
  background: #fff;
  border-top: 1px solid #f0ece5;
}
.chat-input-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px 8px;
}
.chat-input {
  flex: 1;
  border: 1.5px solid #e8e2d9;
  border-radius: 24px;
  padding: 12px 20px;
  font-size: 15px;
  font-family: 'Inter', -apple-system, sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--chat-champagne);
  color: #333;
  -webkit-appearance: none;
  min-height: 46px;
}
.chat-input::placeholder { color: #aaa; }
.chat-input:focus { border-color: var(--chat-burgundy); box-shadow: 0 0 0 3px rgba(124,8,50,0.08); }
.chat-send {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--chat-burgundy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.chat-send svg { color: #fff; }
.chat-send:hover { background: var(--chat-burgundy-dark); }
.chat-send:active { transform: scale(0.94); }
.chat-powered {
  text-align: center;
  font-size: 10.5px;
  color: #bbb;
  padding: 4px 0 10px;
  letter-spacing: 0.3px;
}

.chat-typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
}
.chat-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb;
  display: block;
  animation: chatDotBounce 1.3s ease-in-out infinite;
}
.chat-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatDotBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.recent-purchase {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: var(--white);
  border: 1px solid rgba(124,8,50,0.10);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  max-width: 340px;
  padding: 14px 38px 14px 16px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.recent-purchase.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.recent-purchase-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--gray-500);
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
}
.recent-purchase-close:hover {
  color: var(--burgundy);
}
.recent-purchase-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.recent-purchase-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.recent-purchase-msg {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.45;
  margin: 0;
}
.recent-purchase-time {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--gray-500);
  margin: 4px 0 0;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  .recent-purchase {
    left: 12px;
    right: 72px;
    bottom: 16px;
    max-width: none;
  }
}

.chat-body-lock { }

@media (max-width: 768px) {
  .chat-fab {
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
  }
  .chat-window {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .chat-open .chat-fab { display: none; }
  .chat-back-btn { display: flex; }
  .chat-header { padding: 12px 14px; padding-top: max(12px, env(safe-area-inset-top)); }
  .chat-body { padding: 14px; }
  .chat-footer { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
  .chat-input { font-size: 16px; }
  .chat-quick-btn { padding: 8px 16px; font-size: 13px; }
  .chat-body-lock { overflow: hidden; }
}
