/* ============================================
   MANE SCRUNCHIES – Magical Stylesheet 🦄
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* Pastel Magical Palette */
  --pink:        #ff8fab;
  --pink-light:  #ffb3c6;
  --pink-pale:   #fff0f5;
  --purple:      #c77dff;
  --purple-light:#e0aaff;
  --purple-pale: #f5eeff;
  --lavender:    #d8b4fe;
  --blue-light:  #a5f3fc;
  --mint:        #86efac;
  --yellow:      #fde68a;
  --peach:       #fed7aa;
  --coral:       #fca5a5;
  --white:       #ffffff;
  --off-white:   #fffbfe;

  /* Gradient */
  --gradient-rainbow: linear-gradient(135deg, #ff8fab, #c77dff, #a5f3fc, #86efac);
  --gradient-hero:    linear-gradient(160deg, #ffe4f0 0%, #f3e8ff 40%, #e0f2fe 100%);
  --gradient-card:    linear-gradient(145deg, #fff0f5, #f5eeff);
  --gradient-button:  linear-gradient(135deg, #ff8fab 0%, #c77dff 100%);
  --gradient-button2: linear-gradient(135deg, #c77dff 0%, #a5f3fc 100%);

  /* Text */
  --text-dark:   #2d1b4e;
  --text-mid:    #6b4fa0;
  --text-light:  #9d7fc3;
  --text-muted:  #b899d4;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(199, 125, 255, 0.15);
  --shadow-card: 0 8px 32px rgba(199, 125, 255, 0.18);
  --shadow-hover:0 16px 48px rgba(199, 125, 255, 0.3);

  /* Typography */
  --font-heading: 'Baloo 2', cursive;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --section-gap: 5rem;
  --container-max: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 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(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Sparkles Background ---- */
.sparkles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: 1rem;
  animation: sparkleDrift linear infinite;
  opacity: 0;
}

@keyframes sparkleDrift {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

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

ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

[class*="section-"] { text-align: center; }

/* ---- Gradient Text ---- */
.gradient-text {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.5s ease;
}

.btn:hover::before { transform: translateX(200%) skewX(-20deg); }

.btn-primary {
  background: var(--gradient-button);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 143, 171, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 143, 171, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-mid);
  border: 2px solid var(--purple-light);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: var(--gradient-button2);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  background: var(--gradient-button);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 143, 171, 0.35);
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 143, 171, 0.45);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(199, 125, 255, 0.12);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(199, 125, 255, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.75rem;
  animation: logoWiggle 3s ease-in-out infinite;
}

@keyframes logoWiggle {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%       { transform: rotate(5deg) scale(1.1); }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.logo-accent {
  background: var(--gradient-button);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.nav-links a:hover {
  background: var(--purple-pale);
  color: var(--purple);
}

.nav-cta {
  background: var(--gradient-button) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(255,143,171,0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,143,171,0.45) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--purple);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fff0f5, #f5eeff);
  border: 1.5px solid var(--purple-light);
  color: var(--text-mid);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199,125,255,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(199,125,255,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(199,125,255,0.1);
  width: fit-content;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  font-size: 1.4rem;
  animation: dividerBounce 2s ease-in-out infinite;
}

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

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-unicorn-scene {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unicorn-emoji {
  font-size: 9rem;
  animation: unicornFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(199,125,255,0.4));
  z-index: 2;
  position: relative;
}

@keyframes unicornFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-20px) rotate(3deg); }
}

.floating-scrunchies {
  position: absolute;
  inset: 0;
}

.fs {
  position: absolute;
  font-size: 2.5rem;
  animation: fsFloat linear infinite;
}

.fs-1 { top: 5%;  left: 10%; animation-duration: 6s; animation-delay: 0s; }
.fs-2 { top: 5%;  right: 10%; animation-duration: 7s; animation-delay: -1s; }
.fs-3 { top: 40%; left: 0%;  animation-duration: 5.5s; animation-delay: -2s; }
.fs-4 { top: 40%; right: 0%; animation-duration: 6.5s; animation-delay: -3s; }
.fs-5 { bottom: 10%; left: 15%; animation-duration: 7.5s; animation-delay: -0.5s; }
.fs-6 { bottom: 5%; right: 15%; animation-duration: 5s; animation-delay: -1.5s; }

@keyframes fsFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33%       { transform: translateY(-15px) scale(1.1) rotate(10deg); }
  66%       { transform: translateY(8px) scale(0.95) rotate(-5deg); }
}

.cloud {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.5;
  animation: cloudDrift linear infinite;
}

.cloud-1 { top: 10%; left: 5%;  animation-duration: 12s; animation-delay: 0s; }
.cloud-2 { bottom: 15%; right: 5%; animation-duration: 15s; animation-delay: -5s; }

@keyframes cloudDrift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(20px); }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--gradient-button);
  color: var(--white);
  overflow: hidden;
  padding: 0.65rem 0;
  position: relative;
  z-index: 1;
}

.announcement-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}

.announcement-track span { flex-shrink: 0; }

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

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.our-story {
  background: linear-gradient(160deg, var(--pink-pale) 0%, var(--purple-pale) 100%);
  position: relative;
  overflow: hidden;
}

.our-story::before {
  content: '🌈';
  position: absolute;
  font-size: 12rem;
  top: -3rem;
  right: -3rem;
  opacity: 0.06;
  transform: rotate(20deg);
}

.makers-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.maker-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(199,125,255,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.maker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-button);
}

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

.maker-emoji-wrap {
  margin-bottom: 1rem;
}

.maker-emoji {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.maker-stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.maker-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.maker-age {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  background: var(--purple-pale);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.maker-bio {
  color: var(--text-mid);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.maker-faves {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.maker-faves span {
  background: var(--gradient-card);
  border: 1px solid var(--purple-light);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Story Heart Center */
.story-heart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.big-heart {
  font-size: 3.5rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.heart-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

/* Story Quote */
.story-quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(199,125,255,0.1);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--purple-light);
  line-height: 0.5;
  height: 2rem;
  margin-bottom: 1rem;
}

.story-quote blockquote {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-quote cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  color: var(--purple);
  font-size: 0.95rem;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.scrunchies-section {
  background: var(--white);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.product-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  border: 1px solid rgba(199,125,255,0.15);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.product-card.featured {
  background: linear-gradient(145deg, #fff0f5, #f5eeff, #e8f5ff);
  border-color: rgba(199,125,255,0.3);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
  color: #7c4e00;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

.featured-badge {
  background: var(--gradient-button) !important;
  color: var(--white) !important;
}

.new-badge {
  background: linear-gradient(135deg, #a5f3fc, #86efac) !important;
  color: #065f46 !important;
}

.custom-badge {
  background: linear-gradient(135deg, var(--purple-light), var(--lavender)) !important;
  color: #3b0764 !important;
}

.product-emoji-display {
  background: rgba(255,255,255,0.6);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.5rem;
  border-bottom: 1px solid rgba(199,125,255,0.1);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}

.set-badge {
  display: inline-block;
  background: var(--gradient-button);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  vertical-align: middle;
  margin-left: 0.35rem;
}

.product-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-details span {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-details i {
  color: var(--purple);
  width: 14px;
  text-align: center;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(199,125,255,0.12);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-save {
  font-size: 0.75rem;
  background: linear-gradient(135deg, #86efac, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.products-note {
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
  border: 1px dashed var(--purple-light);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ============================================
   HOW THEY'RE MADE SECTION
   ============================================ */
.how-made {
  background: linear-gradient(160deg, #fff0f5 0%, #f5eeff 50%, #e0f2fe 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(199,125,255,0.12);
  transition: var(--transition);
  position: relative;
}

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

.step-num {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-button);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.75rem;
  color: var(--purple-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.why-us {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--gradient-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(199,125,255,0.12);
  transition: var(--transition);
}

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

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: linear-gradient(160deg, var(--purple-pale) 0%, var(--pink-pale) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(199,125,255,0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.review-stars { font-size: 1.1rem; letter-spacing: 0.1em; }

.review-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

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

.reviewer-avatar { font-size: 2.25rem; }

.reviewer div { display: flex; flex-direction: column; }

.reviewer strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   CONTACT / ORDER SECTION
   ============================================ */
.contact-section {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.order-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.975rem;
  color: var(--text-mid);
  font-weight: 600;
}

.order-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--gradient-button);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
}

.contact-extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-extra-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(199,125,255,0.12);
}

.contact-extra-item i {
  font-size: 1.25rem;
  color: var(--purple);
  width: 24px;
  text-align: center;
}

.contact-extra-item div {
  display: flex;
  flex-direction: column;
}

.contact-extra-item strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-extra-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Order Form */
.order-form {
  background: var(--gradient-card);
  border: 1px solid rgba(199,125,255,0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(199,125,255,0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(199,125,255,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,143,171,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
  border-radius: var(--radius);
  border: 1px solid rgba(199,125,255,0.2);
  max-width: 600px;
  margin: 2rem auto 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: successBounce 0.6s cubic-bezier(0.68,-0.55,0.27,1.55);
}

@keyframes successBounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1b4e 100%);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-icon { display: inline-block; margin-right: 0.25rem; }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--gradient-button);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gradient-button);
  border-radius: 2px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--pink-light); padding-left: 4px; }

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.footer-contact i { color: var(--purple-light); width: 16px; }

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

.footer-tags span {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-seo-text a {
  color: rgba(199,125,255,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-seo-text a:hover { color: var(--purple-light); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: var(--gradient-button);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(199,125,255,0.4);
  transition: var(--transition);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(199,125,255,0.5);
}

/* ============================================
   RESPONSIVE – TABLET
   ============================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 3rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; }

  .hero-unicorn-scene {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .unicorn-emoji { font-size: 7rem; }

  .makers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 3rem;
  }

  .story-heart { flex-direction: row; padding: 1rem; }

  .products-grid { grid-template-columns: 1fr; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .step-arrow { transform: rotate(90deg); }

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

  .reviews-grid { grid-template-columns: 1fr; }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE – MOBILE
   ============================================ */
@media (max-width: 640px) {
  :root { --section-gap: 3.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(199,125,255,0.15);
    border-top: 1px solid rgba(199,125,255,0.1);
    gap: 0.25rem;
    align-items: stretch;
  }

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

  .nav-links a {
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .site-header { position: sticky; top: 0; }
  .navbar { position: relative; }

  .hero { padding: 2.5rem 1.25rem 2rem; gap: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-visual { display: none; }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem;
    text-align: center;
  }

  .hero-stats .stat-divider { display: none; }

  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 1rem; }

  .products-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .order-form { padding: 1.5rem; }

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

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

  .story-quote { padding: 2rem 1.5rem; }

  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 46px;
    height: 46px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
