/* ============================================
   SLAYGLOW — Brand Stylesheet
   Korean Beauty Editorial Aesthetic
   ============================================ */

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

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
  --pink: #FADADD;
  --nude: #F5E6E0;
  --blush: #F0C8CC;
  --rose-gold: #C9828A;
  --rose-dark: #A0565E;
  --cream: #FBF5F3;
  --white: #FFFFFF;
  --ink: #2C1A1D;
  --ink-soft: #6B4548;
  --ink-muted: #9E7275;
  --border: rgba(201, 130, 138, 0.18);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 12px rgba(201, 130, 138, 0.10);
  --shadow-md: 0 8px 32px rgba(201, 130, 138, 0.16);
  --shadow-lg: 0 20px 60px rgba(201, 130, 138, 0.20);

  --glow: 0 0 40px rgba(250, 218, 221, 0.6);
  --glow-rose: 0 0 60px rgba(201, 130, 138, 0.25);

  --transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   Grain Overlay (texture)
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
}

.nav-logo span {
  font-style: italic;
  color: var(--rose-gold);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--rose-dark); }

.nav-cta {
  background: var(--rose-gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--rose-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Hamburger menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--rose-gold); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink-soft);
}

/* ============================================
   Fade-in Animation
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--nude) 50%, var(--pink) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(250, 218, 221, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201, 130, 138, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  padding: 120px 40px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(201, 130, 138, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(201, 130, 138, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(160, 86, 94, 0.3);
}

.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(160, 86, 94, 0.4);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink-soft);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(201, 130, 138, 0.35);
  box-shadow: var(--shadow-sm);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item {}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rose-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hero-visual {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at 40% 40%, rgba(250, 218, 221, 0.9) 0%, rgba(245, 230, 224, 0.6) 50%, transparent 70%);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  animation: blobFloat 8s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; transform: scale(1); }
  33% { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; transform: scale(1.03); }
  66% { border-radius: 55% 45% 65% 35% / 40% 60% 45% 55%; transform: scale(0.98); }
}

.hero-product-frame {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 420px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), var(--glow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
  animation: frameFloat 6s ease-in-out infinite;
}

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

/* Product illustration SVG inside hero */
.hero-product-svg {
  width: 220px;
  height: 280px;
}

.hero-badge {
  position: absolute;
  bottom: 20%;
  right: 8%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgePop 6s ease-in-out 1s infinite;
  border: 1px solid var(--border);
}

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

.badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink), var(--blush));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.badge-text .badge-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.badge-text .badge-label {
  font-size: 0.7rem;
  color: var(--ink-muted);
}

/* ============================================
   Section Common
   ============================================ */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--rose-dark);
}

.section-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================
   Values Section
   ============================================ */
.values {
  padding: 100px 80px;
  background: var(--white);
}

.values-header {
  text-align: center;
  margin-bottom: 64px;
}

.values-header .section-sub {
  margin: 16px auto 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: linear-gradient(145deg, var(--cream), var(--nude));
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--rose-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.value-card:hover::before { opacity: 1; }

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pink), var(--blush));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(250, 218, 221, 0.5);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--rose-dark);
  fill: none;
  stroke-width: 1.5;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ============================================
   Products Section
   ============================================ */
.products {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.view-all {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  border-color: var(--rose-dark);
}

.view-all:hover { gap: 12px; }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.product-image {
  height: 260px;
  background: linear-gradient(145deg, var(--nude), var(--pink));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(160, 86, 94, 0.08) 100%);
}

.product-img-visual {
  width: 160px;
  height: 200px;
  position: relative;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-visual {
  transform: scale(1.06) translateY(-8px);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.product-tag.new { background: var(--ink); }
.product-tag.sale { background: var(--rose-dark); }

.product-info {
  padding: 24px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--rose-dark);
}

.price-original {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-decoration: line-through;
}

.btn-cart {
  width: 40px;
  height: 40px;
  background: var(--pink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: var(--rose-dark);
}

.btn-cart:hover {
  background: var(--rose-dark);
  color: var(--white);
  transform: scale(1.1);
}

.btn-cart svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: 100px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 32rem;
  line-height: 0.7;
  color: rgba(201, 130, 138, 0.06);
  position: absolute;
  top: -20px;
  left: -20px;
  pointer-events: none;
  user-select: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-sub {
  margin: 16px auto 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  background: linear-gradient(145deg, var(--ink), var(--rose-dark));
  border-color: transparent;
  color: var(--white);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  width: 14px;
  height: 14px;
  fill: #F5C842;
}

.testimonial-card.featured .star {
  fill: rgba(245, 200, 66, 0.9);
}

.testimonial-text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--rose-dark);
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.testimonial-card.featured .author-name { color: var(--white); }

.author-detail {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.testimonial-card.featured .author-detail { color: rgba(255, 255, 255, 0.5); }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--rose-gold);
  background: rgba(201, 130, 138, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
}

.testimonial-card.featured .verified-badge {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose {
  padding: 100px 80px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-main-card {
  background: linear-gradient(145deg, var(--pink), var(--blush));
  border-radius: 40px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-main-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  top: -50px;
  right: -50px;
}

.why-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-float-card.card-1 {
  bottom: -20px;
  right: -30px;
  animation: floatCard1 4s ease-in-out infinite;
}

.why-float-card.card-2 {
  top: 40px;
  left: -40px;
  animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

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

.float-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink), var(--blush));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rose-dark);
  fill: none;
  stroke-width: 1.5;
}

.float-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}

.float-text span {
  font-size: 0.72rem;
  color: var(--ink-muted);
}

.why-content {}

.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}

.why-item:hover {
  background: var(--cream);
  transform: translateX(6px);
}

.why-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.why-item-text h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================
   Promo Section
   ============================================ */
.promo {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--rose-dark) 50%, var(--ink) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promo::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 218, 221, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.promo::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 130, 138, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-badge {
  display: inline-block;
  background: rgba(250, 218, 221, 0.15);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 218, 221, 0.2);
  margin-bottom: 24px;
}

.promo h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.promo h2 em {
  font-style: italic;
  color: var(--pink);
}

.promo-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.promo-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blush);
  background: rgba(250, 218, 221, 0.1);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
  border: 1px solid rgba(250, 218, 221, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--rose-dark);
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.btn-promo:hover {
  background: var(--pink);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: 100px 80px;
  background: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-sub {
  margin: 16px auto 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 130, 138, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--cream);
}

.faq-item.open .faq-question {
  background: linear-gradient(135deg, var(--cream), var(--nude));
}

.faq-q-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--rose-dark);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--rose-dark);
  fill: none;
  stroke-width: 2.5;
  transition: stroke var(--transition);
}

.faq-item.open .faq-icon svg { stroke: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s ease;
}

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

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  padding: 64px 80px 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand .footer-logo span {
  font-style: italic;
  color: var(--blush);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: var(--rose-gold);
  transform: translateY(-3px);
  border-color: transparent;
}

.social-link svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.social-link:hover svg { stroke: var(--white); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--blush); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; }

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--blush); }

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ============================================
   Cart Toast (visual only)
   ============================================ */
.cart-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 400;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-toast-icon {
  width: 28px;
  height: 28px;
  background: rgba(201, 130, 138, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-toast-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--blush);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   Scroll to top button
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(16px);
  z-index: 50;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--rose-dark);
  border-color: transparent;
}

.scroll-top:hover svg { stroke: var(--white); }

.scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--rose-dark);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .nav { padding: 20px 32px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 120px 40px 60px; text-align: center; }
  .hero-sub, .section-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 400px; }

  .values { padding: 80px 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .products { padding: 80px 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials { padding: 80px 40px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .why-choose { padding: 80px 40px; grid-template-columns: 1fr; gap: 48px; }
  .why-main-card { height: 320px; }

  .promo { padding: 80px 40px; }

  .faq { padding: 80px 40px; }

  .footer { padding: 48px 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 640px) {
  .nav { padding: 16px 24px; }

  .hero-content { padding: 100px 24px 48px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-visual { height: 280px; }
  .hero-blob { width: 280px; height: 280px; }
  .hero-product-frame { width: 200px; height: 250px; }
  .hero-product-svg { width: 130px; height: 170px; }
  .hero-badge { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .values { padding: 64px 24px; }
  .values-grid { grid-template-columns: 1fr; }

  .products { padding: 64px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; }

  .testimonials { padding: 64px 24px; }

  .why-choose { padding: 64px 24px; }
  .why-float-card.card-2 { left: 0; }
  .why-float-card.card-1 { right: 0; }

  .promo { padding: 64px 24px; }

  .faq { padding: 64px 24px; }

  .footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cart-toast { left: 16px; right: 16px; bottom: 16px; }
  .scroll-top { bottom: 80px; left: 16px; }
}
