/* ============================================
   ML Studio - Premium Light Theme
   Inspired by: Superhuman, Mercury, Raycast
   ============================================ */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors - Light Premium Palette */
  --cream: #FAF8F5;
  --ivory: #F5F1EC;
  --white: #FFFFFF;

  --rose-gold: #E8B4A8;
  --soft-pink: #F7DED6;
  --peach: #FFEEE8;
  --coral: #FF9B85;

  --charcoal: #3A3A3A;
  --gray: #7A7A7A;
  --light-gray: #C4C4C4;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

h4 {
  font-size: clamp(20px, 2.5vw, 24px);
}

p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
}

/* ============================================
   Container
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--charcoal);
}

/* CTA button in nav — specificity override */
.nav-menu .btn-primary,
.nav-menu .btn-primary:hover {
  color: var(--white);
  font-weight: 600;
  padding: 10px 22px;
  box-shadow: 0 4px 14px rgba(232, 180, 168, 0.4);
}

.nav-menu .btn-primary:hover {
  box-shadow: 0 6px 18px rgba(232, 180, 168, 0.55);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  border-radius: var(--radius-full);
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(232, 180, 168, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(232, 180, 168, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-full);
  transition: border-color var(--transition-base), color var(--transition-base);
}

.btn-secondary:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rose-gold);
  background: var(--white);
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--gray);
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 14px;
  color: var(--gray);
}

.stars {
  color: #FFD700;
  font-size: 16px;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  width: 260px;
  height: 360px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 20px;
  left: 0;
  animation-delay: 0s;
}

.card-2 {
  top: 70px;
  left: 110px;
  z-index: 3;
  animation-delay: 2s;
  transform: rotate(-4deg);
}

.card-3 {
  top: 160px;
  left: 40px;
  z-index: 2;
  animation-delay: 4s;
  width: 220px;
  height: 140px;
  transform: rotate(5deg);
}

/* Floating card — photo tile */
.fc-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-photo__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 55%);
}

.fc-photo__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

/* Floating card — vogue-style cover */
.fc-cover {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.fc-cover__brand {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1;
}

.fc-cover__issue {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fc-cover__photo {
  width: calc(100% + 32px);
  flex: 1;
  margin: 8px -16px;
  object-fit: cover;
  min-height: 0;
}

.fc-cover__title {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-top: 8px;
}

.fc-cover__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.fc-cover__tags span {
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
  padding: 3px 6px;
  border-radius: var(--radius-full);
}

/* Floating card — note/sticker */
.fc-note {
  position: relative;
  width: 100%;
  height: 100%;
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--peach) 0%, var(--soft-pink) 100%);
  color: var(--charcoal);
}

.fc-note__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}

.fc-note__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.fc-note__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.75;
}

.fc-note__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--card-rotate, 0deg)); }
  50%      { transform: translateY(-16px) rotate(calc(var(--card-rotate, 0deg) + 1.5deg)); }
}

.card-1 { --card-rotate: 0deg; }
.card-2 { --card-rotate: -4deg; }
.card-3 { --card-rotate: 5deg; }

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }

  .hero-visual {
    height: 420px;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .floating-card {
    width: 220px;
    height: 300px;
  }

  .card-3 {
    width: 190px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(72px + var(--spacing-xl));
    padding-bottom: var(--spacing-2xl);
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  /* Keep hero-visual visible on mobile — just smaller & simpler */
  .hero-visual {
    height: 320px;
    max-width: 340px;
  }

  .floating-card {
    width: 180px;
    height: 240px;
  }

  .card-1 { top: 10px; left: 0; }
  .card-2 { top: 40px; left: 100px; }
  .card-3 {
    top: 200px;
    left: 40px;
    width: 160px;
    height: 90px;
  }

  /* Cover card details are too dense on small cards — simplify */
  .fc-cover { padding: 10px 12px; }
  .fc-cover__brand { font-size: 22px; }
  .fc-cover__issue { font-size: 9px; padding-bottom: 5px; }
  .fc-cover__photo { margin: 6px -12px; width: calc(100% + 24px); }
  .fc-cover__title { font-size: 14px; margin-top: 5px; }
  .fc-cover__tags { display: none; }
  .fc-note__title { font-size: 13px; }
}

@media (max-width: 380px) {
  .hero-visual {
    height: 280px;
    max-width: 300px;
  }

  .floating-card { width: 160px; height: 210px; }
  .card-2 { left: 90px; }
  .card-3 { top: 180px; width: 140px; height: 80px; }
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: var(--spacing-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
}

/* ============================================
   Products Section
   ============================================ */
.products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-2xl);
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: calc(100% + var(--spacing-2xl) * 2);
  height: 380px;
  margin: calc(var(--spacing-2xl) * -1) calc(var(--spacing-2xl) * -1) var(--spacing-xl);
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--ivory);
  cursor: pointer;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.product-icon {
  font-size: 48px;
  margin-bottom: var(--spacing-lg);
}

.product-title {
  font-size: 28px;
  margin-bottom: var(--spacing-md);
}

.product-description {
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
}

.product-features {
  margin-bottom: var(--spacing-lg);
}

.product-features li {
  padding: var(--spacing-sm) 0;
  color: var(--gray);
  position: relative;
  padding-left: 24px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose-gold);
  font-weight: 700;
}

.product-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.occasion-tag {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  border-radius: var(--radius-full);
  border: 1px solid var(--light-gray);
}

.occasion-tag--price {
  color: var(--charcoal);
  border-color: var(--rose-gold);
  background: var(--peach);
  font-weight: 600;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  background: var(--ivory);
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 720px;
  margin: 0 auto;
}

/* Vertical connector line behind the numbers */
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-gold), rgba(232, 180, 168, 0.2));
  border-radius: 2px;
  z-index: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) var(--spacing-xl);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  z-index: 1;
}

.timeline-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}

.timeline-number {
  width: 48px;
  height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ivory);
  flex-shrink: 0;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-title {
  font-size: 18px;
  margin-bottom: 0;
  color: var(--charcoal);
}

.timeline-description {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

@media (max-width: 480px) {
  .timeline {
    gap: var(--spacing-md);
  }

  .timeline::before {
    left: 27px;
  }

  .timeline-item {
    padding: var(--spacing-md) var(--spacing-lg);
    gap: var(--spacing-md);
  }

  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .timeline-title {
    font-size: 16px;
  }
}

/* ============================================
   Holidays Marquee
   ============================================ */
.holidays {
  background: var(--white);
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--spacing-xl);
  width: 100%;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--spacing-xl);
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.holiday-item {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--cream);
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--spacing-xl)));
  }
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  background: var(--white);
  margin: 0; /* figure reset */
  will-change: transform;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item--real {
  cursor: pointer;
}

.gallery-item--real picture,
.gallery-item--real img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item--real img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item--real:hover img {
  transform: scale(1.05);
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--white);
  pointer-events: none;
}

.gallery-item__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.gallery-item__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Coming-soon tiles */
.gallery-item--coming {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
  border: 1px dashed rgba(232, 180, 168, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item--coming:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}

.gallery-coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  text-align: center;
  padding: var(--spacing-lg);
  color: var(--gray);
}

.gallery-coming__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--rose-gold);
  background: var(--peach);
  margin-bottom: var(--spacing-sm);
}

.gallery-coming__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose-gold);
  padding: 4px 10px;
  background: var(--peach);
  border-radius: var(--radius-full);
}

.gallery-coming__text {
  font-size: 14px;
  color: var(--gray);
  max-width: 180px;
  line-height: 1.4;
}

/* Gallery CTA footer */
.gallery-cta {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.gallery-cta__content {
  flex: 1;
  min-width: 260px;
}

.gallery-cta__title {
  font-size: 22px;
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal);
}

.gallery-cta__text {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.5;
  max-width: 520px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .gallery-item__title {
    font-size: 15px;
  }

  .gallery-item__caption {
    padding: var(--spacing-md);
  }

  .gallery-cta {
    padding: var(--spacing-xl);
    text-align: center;
    flex-direction: column;
  }

  .gallery-cta .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Order Section
   ============================================ */
.order {
  background: var(--white);
}

.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4xl);
  max-width: 1000px;
  margin: 0 auto;
}

.order-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-2xl);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.contact-link:hover {
  background: var(--white);
  border-color: var(--rose-gold);
  transform: translateX(4px);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--rose-gold);
  background: var(--white);
  flex-shrink: 0;
  transition: color var(--transition-base), background-color var(--transition-base);
}

.contact-link:hover .contact-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-text {
  font-weight: 600;
  flex: 1;
}

.contact-arrow {
  font-size: 18px;
  color: var(--light-gray);
  transition: color var(--transition-base), transform var(--transition-base);
}

.contact-link:hover .contact-arrow {
  color: var(--rose-gold);
  transform: translateX(2px);
}

.order-form {
  background: var(--cream);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-xl);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: var(--spacing-md);
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

@media (max-width: 1024px) {
  .order-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  background: var(--ivory);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--cream);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--gray);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  align-items: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.footer-brand {
  max-width: 260px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  color: var(--light-gray);
  font-size: 15px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-column a {
  color: var(--light-gray);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--light-gray);
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */
@media (max-width: 1440px) {
  :root {
    --spacing-4xl: 80px;
  }
}

@media (max-width: 1024px) {
  :root {
    --spacing-4xl: 64px;
    --spacing-3xl: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-4xl: 48px;
    --spacing-3xl: 32px;
    --spacing-2xl: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-4xl: 32px;
    --spacing-3xl: 24px;
    --spacing-2xl: 24px;
  }
}


/* ============================================
   What's Included Section
   ============================================ */
.included {
  background: var(--cream);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.included-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  will-change: transform;
}

.included-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.included-card--featured {
  background: linear-gradient(180deg, var(--peach) 0%, var(--white) 60%);
  border-color: var(--rose-gold);
  box-shadow: 0 4px 24px rgba(232, 180, 168, 0.25);
}

.included-card__badge {
  position: absolute;
  top: -12px;
  right: var(--spacing-xl);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(232, 180, 168, 0.4);
}

.included-card__head {
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.included-card__tag {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rose-gold);
  background: var(--peach);
  border-radius: var(--radius-full);
}

.included-card__title {
  font-size: 24px;
  margin-bottom: var(--spacing-md);
  color: var(--charcoal);
}

.included-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
}

.included-card__amount {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.included-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.included-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.5;
}

.included-list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(232, 180, 168, 0.15);
}

.included-list li::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.included-card__note {
  margin-top: auto;
  padding-top: var(--spacing-md);
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.included-footer {
  max-width: 800px;
  margin: var(--spacing-3xl) auto 0;
  padding: var(--spacing-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.included-footer__text {
  margin-bottom: var(--spacing-lg);
  color: var(--gray);
  font-size: 15px;
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-card {
    padding: var(--spacing-xl);
  }

  .included-card__amount {
    font-size: 32px;
  }
}

/* ============================================
   Accessibility Utilities
   ============================================ */
.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;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-card,
  .marquee-content {
    animation: none !important;
  }
}

/* ============================================
   Notification Modal (success / error / info)
   ============================================ */
.notify {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notify.is-open {
  opacity: 1;
  visibility: visible;
}

.notify__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 58, 58, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.notify__card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-2xl) var(--spacing-2xl);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(24px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.notify.is-open .notify__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.notify__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  background: var(--cream);
  border-radius: 50%;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.notify__close:hover {
  background: var(--peach);
  color: var(--charcoal);
}

.notify__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide all icon variants by default; show only the active one */
.notify__icon-svg {
  display: none;
  width: 80px;
  height: 80px;
}

.notify[data-type="success"] .notify__icon-svg--success,
.notify[data-type="error"]   .notify__icon-svg--error,
.notify[data-type="info"]    .notify__icon-svg--info {
  display: block;
}

/* Success: rose-gold circle + animated checkmark */
.notify[data-type="success"] .notify__circle {
  stroke: var(--rose-gold);
  stroke-dasharray: 176; /* 2 * PI * 28 */
  stroke-dashoffset: 176;
}

.notify[data-type="success"] .notify__check {
  stroke: var(--coral);
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

.notify.is-open[data-type="success"] .notify__circle {
  animation: notify-circle 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.notify.is-open[data-type="success"] .notify__check {
  animation: notify-check 0.35s cubic-bezier(0.65, 0, 0.35, 1) 0.55s forwards;
}

@keyframes notify-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes notify-check {
  to { stroke-dashoffset: 0; }
}

/* Error: coral circle + cross */
.notify[data-type="error"] .notify__icon-svg--error {
  color: #E5484D;
  animation: notify-shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.1s;
}

@keyframes notify-shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80%      { transform: translateX(4px); }
}

/* Info: gray */
.notify[data-type="info"] .notify__icon-svg--info {
  color: var(--rose-gold);
}

/* Confetti only for success */
.notify__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.notify[data-type="success"] .notify__confetti {
  display: block;
}

.notify__confetti i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--c, var(--rose-gold));
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.notify.is-open[data-type="success"] .notify__confetti i {
  animation: notify-confetti 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}

.notify.is-open[data-type="success"] .notify__confetti i:nth-child(even) {
  animation-delay: 0.7s;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

@keyframes notify-confetti {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--x)), calc(-50% + var(--y)))
      scale(1)
      rotate(360deg);
  }
}

.notify__title {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal);
}

.notify__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray);
  margin-bottom: var(--spacing-xl);
}

.notify__action {
  min-width: 160px;
}

@media (max-width: 480px) {
  .notify__card {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }

  .notify__title { font-size: 20px; }
  .notify__action { width: 100%; }
}

/* ============================================
   Toast (small corner notification)
   ============================================ */
.toasts {
  position: fixed;
  right: var(--spacing-lg);
  bottom: var(--spacing-lg);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  pointer-events: none;
  max-width: calc(100vw - var(--spacing-lg) * 2);
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: 14px 18px;
  min-width: 280px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  border-left: 3px solid var(--rose-gold);
  pointer-events: auto;
  opacity: 0;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.toast.is-leaving {
  opacity: 0;
  transform: translateX(120%);
}

.toast--error { border-left-color: #E5484D; }
.toast--success { border-left-color: var(--coral); }
.toast--info { border-left-color: var(--rose-gold); }

.toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
}

.toast--error .toast__icon { color: #E5484D; }
.toast--success .toast__icon { color: var(--coral); }

.toast__body {
  flex: 1;
  min-width: 0;
}

.toast__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.toast__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

.toast__close {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: color var(--transition-fast);
}

.toast__close:hover { color: var(--charcoal); }

@media (max-width: 480px) {
  .toasts {
    right: var(--spacing-md);
    left: var(--spacing-md);
    bottom: var(--spacing-md);
  }

  .toast {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
  background: var(--ivory);
}

.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.reviews-summary__score {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.reviews-summary__number {
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.reviews-summary__stars {
  display: inline-flex;
  gap: 2px;
  color: #FFB800;
}

.reviews-summary__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  padding-left: var(--spacing-lg);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.reviews-summary__meta strong {
  font-size: 15px;
  color: var(--charcoal);
}

.reviews-summary__meta span {
  font-size: 13px;
  color: var(--gray);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
}.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--peach);
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 180, 168, 0.4);
}

.review-card--featured {
  background: linear-gradient(160deg, var(--peach) 0%, var(--white) 40%);
  border-color: var(--rose-gold);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.review-card__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.review-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}

.review-card__stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: var(--spacing-lg);
  flex: 1;
  position: relative;
  z-index: 1;
}

.review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
  color: var(--gray);
}

.review-card__product {
  font-weight: 600;
  color: var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

.reviews-cta {
  text-align: center;
  padding: var(--spacing-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-cta p {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--spacing-lg);
}

.hero-social-proof a {
  color: var(--gray);
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.hero-social-proof a:hover {
  color: var(--rose-gold);
  border-bottom-color: var(--rose-gold);
}

@media (max-width: 768px) {
  .reviews-summary {
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .reviews-summary__meta {
    padding-left: 0;
    border-left: none;
    align-items: center;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: var(--spacing-lg);
  }

  .reviews-cta {
    padding: var(--spacing-xl);
  }

  .reviews-cta .btn-primary {
    width: 100%;
  }
}


/* ============================================
   Reviews Slider
   ============================================ */
.reviews-slider {
  position: relative;
  margin-bottom: var(--spacing-3xl);
}

.reviews-slider__viewport {
  overflow: hidden;
  margin: 0 calc(var(--spacing-lg) * -1);
  padding: 8px var(--spacing-lg);
  /* Fade edges so cards bleed off */
  mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: var(--spacing-lg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  cursor: grab;
}

.reviews-track:active {
  cursor: grabbing;
  transition: none;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - var(--spacing-lg) * 2) / 3);
  min-width: 0;
  user-select: none;
}

.reviews-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.reviews-slider__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), opacity var(--transition-base);
}

.reviews-slider__btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
}

.reviews-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-slider__dots {
  display: inline-flex;
  gap: var(--spacing-sm);
}

.reviews-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--light-gray);
  transition: width var(--transition-base), background-color var(--transition-base);
}

.reviews-slider__dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rose-gold), var(--coral));
}

@media (max-width: 900px) {
  .reviews-track .review-card {
    flex: 0 0 calc((100% - var(--spacing-lg)) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-track .review-card {
    flex: 0 0 100%;
  }

  .reviews-slider__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ============================================
   Timeline — enhanced with icons & duration
   ============================================ */
.timeline-badge {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ivory), 0 8px 20px rgba(232, 180, 168, 0.35);
}

.timeline-badge .timeline-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose-gold);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.timeline-badge .timeline-icon {
  display: block;
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: 2px;
}

.timeline-duration {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-gold);
  background: var(--peach);
  border-radius: var(--radius-full);
}

.timeline-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

/* Override older timeline-item grid — now badge is bigger */
.timeline-item {
  grid-template-columns: auto 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg) var(--spacing-xl);
}

/* Adjust the vertical connector to pass through the center of the bigger badge */
.timeline::before {
  top: 40px;
  bottom: 40px;
  left: 55px;
  background: linear-gradient(to bottom, var(--rose-gold) 0%, rgba(232, 180, 168, 0.3) 85%, transparent 100%);
}

.timeline-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--white);
  border: 1px dashed rgba(232, 180, 168, 0.5);
  border-radius: var(--radius-full);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: var(--charcoal);
}

.timeline-footer svg {
  color: var(--coral);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .timeline::before {
    left: 47px;
  }

  .timeline-badge {
    width: 56px;
    height: 56px;
  }

  .timeline-badge .timeline-icon {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   Consent checkbox (152-ФЗ)
   ============================================ */
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.form-group--checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), background-image var(--transition-fast);
}

.form-group--checkbox input[type="checkbox"]:hover {
  border-color: var(--rose-gold);
}

.form-group--checkbox input[type="checkbox"]:checked {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round' d='M4 9.2l3.2 3.2L14 5.6'/></svg>"),
    linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  background-size: 14px 14px, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-color: transparent;
}

.form-group--checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--rose-gold);
  outline-offset: 2px;
}

.form-group--checkbox input[type="checkbox"]::after {
  content: none;
}

.form-group--checkbox label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.form-group--checkbox a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--rose-gold);
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.form-group--checkbox a:hover {
  color: var(--rose-gold);
}

/* ============================================
   Sticky mobile CTA (floating Telegram button)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 900;
  display: none;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 14px 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--coral) 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(232, 180, 168, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 180, 168, 0.55), 0 6px 16px rgba(0, 0, 0, 0.18);
}

.sticky-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.sticky-cta__text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: inline-flex;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
  }

  /* Leave room for sticky CTA so it doesn't cover order form CTA */
  body.has-sticky-cta {
    padding-bottom: calc(var(--spacing-2xl));
  }
}

/* ============================================
   Footer legal row
   ============================================ */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: var(--light-gray);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--white);
  border-bottom-color: var(--rose-gold);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   Privacy Page (standalone layout)
   ============================================ */
.privacy-page {
  padding-top: 120px;
  padding-bottom: var(--spacing-4xl);
  background: var(--cream);
  min-height: 100vh;
}

.privacy-page .container {
  max-width: 820px;
}

.privacy-page h1 {
  margin-bottom: var(--spacing-md);
}

.privacy-page .privacy-lead {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-page h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
  color: var(--charcoal);
}

.privacy-page h3 {
  font-size: 18px;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--charcoal);
}

.privacy-page p,
.privacy-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}

.privacy-page p {
  margin-bottom: var(--spacing-md);
}

.privacy-page ul,
.privacy-page ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-lg);
}

.privacy-page ul {
  list-style: disc;
}

.privacy-page ol {
  list-style: decimal;
}

.privacy-page li {
  margin-bottom: var(--spacing-sm);
}

.privacy-page a {
  color: var(--rose-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-page a:hover {
  color: var(--coral);
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.privacy-back:hover {
  color: var(--rose-gold);
}

.privacy-meta {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: var(--gray);
}
