/* ===== MeaUlife — тёплые нежные оттенки ===== */

:root {
  /* Palette — тёплые нежные тона */
  --lavender: #d4b8f0;
  --lavender-light: #f3eefa;
  --lavender-dark: #9b6ed0;
  --rose: #f5a0ab;
  --rose-light: #fce4e8;
  --rose-dark: #e05a72;
  --peach: #fcd5c5;
  --sky: #c8dff5;
  --sky-deep: #8fbfe0;
  --cream: #fff8ee;
  --warm-white: #fffdf9;
  --blush: #fde8ef;
  --mint: #daf0e3;
  --gold: #f5d98a;
  --amber: #f5c87a;
  --coral: #f0a08a;
  --sand: #f7ede2;
  --warm-lilac: #e0c8f0;

  /* Neutral — тёплые */
  --text: #3d3040;
  --text-soft: #7a6880;
  --text-muted: #a898b0;
  --bg: #fffcf8;
  --card-bg: rgba(255, 253, 248, 0.8);
  --border: rgba(212, 184, 240, 0.28);

  /* Shadows — тёплые */
  --shadow-sm: 0 2px 8px rgba(155, 110, 208, 0.07);
  --shadow-md: 0 8px 30px rgba(155, 110, 208, 0.12);
  --shadow-lg: 0 16px 50px rgba(155, 110, 208, 0.16);
  --shadow-glow: 0 0 40px rgba(212, 184, 240, 0.3);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* Background gradient mesh — тёплый */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(240, 160, 138, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(245, 160, 171, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 50% 80%, rgba(245, 200, 122, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(224, 200, 240, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 252, 251, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

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

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Marck Script', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  font-weight: 400;
  transition: transform 0.3s var(--spring);
}

.logo:hover { transform: scale(1.04); }

.logo-icon {
  font-size: 1.3rem;
  color: var(--lavender-dark);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.15); }
}

.logo-accent { color: var(--lavender-dark); }

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lavender-dark), var(--rose));
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--lavender-dark); }
.nav-link:hover::after { width: 100%; }

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

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: all 0.3s var(--ease);
  position: relative;
}

.btn-icon:hover {
  background: var(--lavender-light);
  color: var(--lavender-dark);
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background: var(--rose-dark);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--spring);
}

.badge.show {
  opacity: 1;
  transform: scale(1);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Search bar */
.search-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}

.search-bar.open {
  max-height: 70px;
  padding-bottom: 14px;
}

.search-bar input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  font-family: inherit;
  font-size: 1rem;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}

.search-bar input:focus {
  border-color: var(--lavender);
}

.search-close {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-content {
  flex: 1;
  animation: fadeUp 1s var(--ease) both;
}

.hero-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lavender-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp 1s 0.2s var(--ease) both;
}

.hero-title {
  font-family: 'Marck Script', cursive;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text);
  animation: fadeUp 1s 0.3s var(--ease) both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--lavender-dark), var(--rose-dark), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeUp 1s 0.4s var(--ease) both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.35s var(--spring);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lavender-dark), var(--coral));
  color: white;
  box-shadow: 0 4px 20px rgba(155, 110, 208, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(155, 110, 208, 0.4);
}

.btn-ghost {
  border: 2px solid var(--border);
  color: var(--text-soft);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--lavender);
  color: var(--lavender-dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* Hero visual — ромбики-звёздочки */
.hero-visual {
  flex: 0 0 400px;
  height: 400px;
  position: relative;
  animation: fadeUp 1s 0.6s var(--ease) both;
}

/* Ромбы */
.hero-diamond {
  position: absolute;
  transform: rotate(45deg);
  border-radius: 6px;
}

.diamond-1 {
  width: 220px;
  height: 220px;
  top: 60px;
  left: 60px;
  background: linear-gradient(135deg, var(--peach), var(--blush));
  box-shadow: 0 8px 40px rgba(240, 160, 138, 0.2);
  animation: floatDiamond 7s ease-in-out infinite;
}

.diamond-2 {
  width: 140px;
  height: 140px;
  top: 10px;
  right: 30px;
  background: linear-gradient(135deg, var(--warm-lilac), var(--lavender-light));
  box-shadow: 0 6px 30px rgba(224, 200, 240, 0.25);
  animation: floatDiamond 6s 1.2s ease-in-out infinite;
}

.diamond-3 {
  width: 100px;
  height: 100px;
  bottom: 40px;
  left: 100px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 6px 24px rgba(245, 200, 122, 0.25);
  animation: floatDiamond 8s 0.5s ease-in-out infinite;
}

/* Маленькие звёздочки-✦ */
.hero-star {
  position: absolute;
  font-size: 1.8rem;
  color: var(--lavender);
  opacity: 0.5;
  animation: twinkleStar 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(212, 184, 240, 0.5));
}

.star-1 {
  top: 40px;
  right: 60px;
  font-size: 2.2rem;
  animation-delay: 0s;
  color: var(--amber);
}

.star-2 {
  bottom: 80px;
  right: 20px;
  font-size: 1.5rem;
  animation-delay: 1s;
  color: var(--rose);
}

.star-3 {
  top: 180px;
  left: 20px;
  font-size: 1.3rem;
  animation-delay: 2s;
  color: var(--lavender);
}

@keyframes floatDiamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  33% { transform: rotate(45deg) translateY(-14px) scale(1.03); }
  66% { transform: rotate(45deg) translateY(8px) scale(0.98); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(3deg); }
  66% { transform: translateY(8px) rotate(-2deg); }
}

@keyframes twinkleStar {
  0%, 100% { opacity: 0.35; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.75; transform: scale(1.2) rotate(20deg); }
}

/* ===== Marquee ===== */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, var(--sand), var(--blush), var(--warm-lilac), var(--sand));
  background-size: 300% 100%;
  animation: gradientShift 8s linear infinite;
}

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

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-family: 'Marck Script', cursive;
  font-size: 1.15rem;
  color: var(--lavender-dark);
  letter-spacing: 1px;
  padding: 0 20px;
}

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

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.section-title {
  font-family: 'Marck Script', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ===== Categories ===== */
.categories {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 10px 22px;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: all 0.3s var(--spring);
}

.cat-btn:hover {
  border-color: var(--lavender);
  color: var(--lavender-dark);
  transform: translateY(-2px);
}

.cat-btn.active {
  background: linear-gradient(135deg, var(--lavender-dark), var(--coral));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(155, 110, 208, 0.25);
}

.cat-emoji { margin-right: 4px; }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s var(--spring);
  animation: cardIn 0.6s var(--ease) both;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lavender);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.8));
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--ease);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s var(--spring);
}

.product-action-btn:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-md);
}

.product-action-btn.wishlisted {
  background: var(--rose-light);
}

.product-info {
  padding: 16px 18px 20px;
}

.product-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

.product-price {
  font-family: 'Marck Script', cursive;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--lavender-dark);
}

.product-add {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--lavender-dark), var(--coral));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s var(--spring);
}

.product-add:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 16px rgba(155, 110, 208, 0.35);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.4s var(--spring);
  animation: cardIn 0.6s var(--ease) both;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Marck Script', cursive;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* ===== Promo ===== */
.promo {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.promo-card {
  background: linear-gradient(135deg, var(--sand), var(--blush), var(--warm-lilac));
  border-radius: var(--r-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.promo-content { max-width: 500px; position: relative; z-index: 2; }

.promo-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--rose-dark);
  color: white;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  animation: pulse 2s ease-in-out infinite;
}

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

.promo-card h2 {
  font-family: 'Marck Script', cursive;
  font-size: 2rem;
  margin-bottom: 12px;
}

.promo-card p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

.promo-visual {
  position: relative;
  width: 300px;
  height: 200px;
}

.promo-circle {
  position: absolute;
  border-radius: var(--r-full);
  width: 180px;
  height: 180px;
  top: 10px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(196,181,253,0.3));
  animation: float 5s ease-in-out infinite;
}

.promo-circle.c2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: 20px;
  top: auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(253,164,175,0.3));
  animation: float 6s 1s ease-in-out infinite;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Marck Script', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--lavender-dark);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-visual {
  position: relative;
  height: 350px;
}

.about-shape {
  position: absolute;
  border-radius: var(--r-xl);
}

.shape-1 {
  width: 280px;
  height: 280px;
  top: 30px;
  left: 40px;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  animation: float 6s ease-in-out infinite;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
}

.shape-2 {
  width: 160px;
  height: 160px;
  top: 10px;
  right: 20px;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  animation: float 5s 1s ease-in-out infinite;
  border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 40px;
  left: 120px;
  background: linear-gradient(135deg, var(--gold), var(--peach));
  animation: float 7s 2s ease-in-out infinite;
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

/* ===== Newsletter ===== */
.newsletter {
  position: relative;
  z-index: 1;
  padding: 40px 0 80px;
}

.newsletter-card {
  text-align: center;
  padding: 60px 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--sand), var(--blush), rgba(224,200,240,0.4));
  border: 1px solid var(--border);
}

.newsletter-card h2 {
  font-family: 'Marck Script', cursive;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.newsletter-card p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background: white;
  transition: border-color 0.3s;
}

.newsletter-form input:focus { border-color: var(--lavender); }

.newsletter-success {
  color: var(--lavender-dark);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 16px;
  animation: fadeUp 0.5s var(--ease) both;
}

/* ===== Contacts ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.contact-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  transition: all 0.3s var(--spring);
}

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

.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: 'Marck Script', cursive;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 30px;
  background: linear-gradient(to bottom, transparent, var(--sand));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  color: var(--text-soft);
  margin-top: 12px;
}

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

.footer-links h4 {
  font-family: 'Marck Script', cursive;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Cart Sidebar ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s var(--spring);
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

.cart-sidebar.open { right: 0; }

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

.cart-header h3 {
  font-family: 'Marck Script', cursive;
  font-size: 1.5rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s var(--ease) both;
}

.cart-item-emoji {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.cart-item-price {
  color: var(--lavender-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-remove {
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--rose-dark); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--lavender-dark);
  color: white;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--spring);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    animation: fadeUp 0.3s var(--ease) both;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    min-height: auto;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  .hero-visual {
    flex: none;
    width: 280px;
    height: 250px;
  }

  .circle-1 { width: 220px; height: 220px; top: 20px; left: 30px; }
  .circle-2 { width: 140px; height: 140px; }
  .circle-3 { width: 100px; height: 100px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual { height: 250px; }

  .promo-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .promo-visual { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-info { padding: 12px 14px 16px; }
  .product-desc { display: none; }
  .product-price { font-size: 1.05rem; }

  .about-stats { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}
