/* ============================================================
   MOTHER'S DAY EMBROIDERY CATALOG — 2026 GLASSMORPHISM THEME
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-start: #b8d4e8;
  --bg-end:   #9ecfc5;
  --glass:    rgba(255,255,255,0.22);
  --glass-border: rgba(255,255,255,0.38);
  --glass-strong: rgba(255,255,255,0.55);
  --plum:     #2d1b2e;
  --plum-mid: #4a2d50;
  --wasabi:   #7ab648;
  --wasabi-dark: #5a9230;
  --persimmon:#d95f3b;
  --persimmon-dark:#b8441e;
  --cream:    #fef9f4;
  --white:    #ffffff;
  --text:     #2d1b2e;
  --text-mid: #5a3d60;
  --text-light:#8c6d94;
  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 8px 32px rgba(45,27,46,0.18);
  --shadow-hover: 0 16px 48px rgba(45,27,46,0.28);
  --trans:    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: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated gradient background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,192,203,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(122,182,72,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(184,212,232,0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Thread stitch scroll line */
.stitch-line {
  position: fixed; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: var(--scroll-progress, 0%);
  background: linear-gradient(to bottom, rgba(217,95,59,0.6), rgba(122,182,72,0.6));
  z-index: 1000;
  pointer-events: none;
  transition: height 0.1s linear;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
.script { font-family: 'Great Vibes', cursive; }
.body-text { font-family: 'Outfit', sans-serif; }

/* ── Glass Panels ──────────────────────────────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.55);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.35s ease, background 0.3s ease;
}
.navbar.hidden { transform: translateY(-100%); }
.navbar.scrolled { background: rgba(255,255,255,0.35); }

.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--plum);
  text-decoration: none;
  line-height: 1;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 0.9rem;
  color: var(--plum-mid);
  text-decoration: none; letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--persimmon);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--persimmon); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-icons { display: flex; gap: 1rem; align-items: center; }
.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--plum);
  transition: var(--trans);
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.4); transform: scale(1.1); }
.wishlist-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--persimmon); color: white;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.wishlist-count.visible { opacity: 1; }
.nav-wishlist { position: relative; }
.mobile-menu-btn { display: none; }

/* ── Hero / Video Banner ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45,27,46,0.25) 0%,
    rgba(45,27,46,0.5) 50%,
    rgba(45,27,46,0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: white;
  padding: 2rem;
  max-width: 900px;
  animation: fadeInUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 400; font-size: 0.85rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: white;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(45,27,46,0.4);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.4s ease both;
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 300; font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 1s 0.6s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--wasabi);
  color: white; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
  border: none; border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(122,182,72,0.45);
  transition: var(--trans);
  animation: fadeInUp 1s 0.8s ease both;
}
.btn-primary:hover {
  background: var(--wasabi-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(122,182,72,0.55);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--plum); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid var(--plum);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--trans);
}
.btn-secondary:hover {
  background: var(--plum); color: white;
  transform: translateY(-2px);
}

.btn-persimmon {
  background: var(--persimmon);
  box-shadow: 0 4px 24px rgba(217,95,59,0.4);
}
.btn-persimmon:hover {
  background: var(--persimmon-dark);
  box-shadow: 0 8px 32px rgba(217,95,59,0.5);
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* ── Sections ───────────────────────────────────────────────── */
section { position: relative; z-index: 2; }
.section-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--persimmon);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--plum-mid); }
.section-subtitle {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.7; max-width: 600px;
}

/* ── Categories Grid ─────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.category-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--plum);
  transition: var(--trans);
}
.category-card:hover, .category-card.active {
  background: var(--glass-strong);
  border-color: var(--persimmon);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.category-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.category-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--plum-mid);
}

/* ── Product Grid ────────────────────────────────────────────── */
.filters-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  color: var(--plum-mid);
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--persimmon); color: white;
  border-color: var(--persimmon);
}

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

.product-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.55);
}

.product-image-wrap {
  position: relative; overflow: hidden;
  height: 240px;
}
.product-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.07); }

.product-wish {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.product-wish:hover { background: white; transform: scale(1.15); }
.product-wish.active { color: var(--persimmon); }

.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: var(--wasabi); color: white;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 50px;
}

.product-body { padding: 1.25rem; }
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--plum);
  margin-bottom: 0.5rem; line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-formats {
  display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem;
}
.format-tag {
  padding: 0.18rem 0.5rem;
  background: rgba(45,27,46,0.08);
  border-radius: 4px;
  font-size: 0.65rem; font-weight: 600;
  color: var(--text-mid); letter-spacing: 0.05em;
}
.btn-buy {
  display: block; width: 100%;
  padding: 0.75rem;
  background: var(--wasabi);
  color: white; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center; text-decoration: none;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--trans);
}
.btn-buy:hover { background: var(--wasabi-dark); transform: translateY(-1px); }

/* ── Trending Carousel ───────────────────────────────────────── */
.carousel-wrap { position: relative; margin-top: 3rem; }
.carousel {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 0.5rem 0 1rem;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel .product-card {
  flex: 0 0 300px; scroll-snap-align: start;
}
.carousel-controls {
  display: flex; justify-content: flex-end; gap: 0.75rem; margin-top: 1rem;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--plum); transition: var(--trans);
}
.carousel-btn:hover { background: var(--persimmon); color: white; border-color: var(--persimmon); }

/* ── Quote Block ─────────────────────────────────────────────── */
.quote-section {
  margin: 4rem 0;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(45,27,46,0.88), rgba(74,45,80,0.88));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute; top: -0.5rem; left: 2rem;
  font-family: 'Great Vibes', cursive;
  font-size: 12rem; color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic; line-height: 1.5;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.25rem;
  position: relative;
}
.quote-credit {
  font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

/* ── Why Choose Us ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--trans);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.55); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--plum); margin-bottom: 0.75rem;
}
.why-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ── Gift Finder Quiz ────────────────────────────────────────── */
.quiz-section {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem; margin-top: 4rem;
  text-align: center;
}
.quiz-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--plum); margin-bottom: 0.75rem;
}
.quiz-desc { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 2rem; }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.4s ease; }
.quiz-options {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-top: 1.5rem;
}
.quiz-option {
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--glass-border);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--trans);
  color: var(--plum);
}
.quiz-option:hover, .quiz-option.selected {
  background: var(--wasabi); color: white; border-color: var(--wasabi);
}
.quiz-results { display: none; }
.quiz-results.visible { display: block; animation: fadeIn 0.5s ease; }
.quiz-results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; margin-top: 1.5rem;
}

/* ── Blog / Gift Guide ───────────────────────────────────────── */
.blog-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-image {
  height: 180px; overflow: hidden;
}
.blog-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--persimmon); font-weight: 700; margin-bottom: 0.5rem; display: block;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--plum); margin-bottom: 0.75rem; line-height: 1.4;
}
.blog-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ── About Section ───────────────────────────────────────────── */
.about-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 4rem 0;
  text-align: center;
}
.about-text {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.9; max-width: 780px; margin: 1.5rem auto 0;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(217,95,59,0.88), rgba(45,27,46,0.92));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center; color: white;
  margin: 4rem 0;
}
.cta-banner h2 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1rem; color: rgba(255,255,255,0.85);
  margin-bottom: 2rem; line-height: 1.7;
}

/* ── Wishlist Drawer ─────────────────────────────────────────── */
.wishlist-drawer {
  position: fixed; top: 0; right: -400px;
  width: 380px; height: 100vh;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid rgba(255,255,255,0.5);
  box-shadow: -8px 0 40px rgba(45,27,46,0.2);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.wishlist-drawer.open { right: 0; }
.wishlist-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(45,27,46,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.wishlist-header h3 { font-family: 'Playfair Display', serif; color: var(--plum); }
.wishlist-close {
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--text-mid);
}
.wishlist-items {
  flex: 1; overflow-y: auto; padding: 1rem;
}
.wishlist-item {
  display: flex; gap: 0.75rem; padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(45,27,46,0.08);
}
.wishlist-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.wishlist-item-info { flex: 1; }
.wishlist-item-title { font-size: 0.82rem; font-weight: 600; color: var(--plum); margin-bottom: 0.25rem; }
.wishlist-item-rm {
  background: none; border: none; font-size: 0.75rem;
  color: var(--persimmon); cursor: pointer; padding: 0;
}
.wishlist-footer { padding: 1.5rem; border-top: 1px solid rgba(45,27,46,0.1); }
.wishlist-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--text-light); font-size: 0.9rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--plum);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 2rem;
  position: relative; z-index: 2;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem; color: white;
  margin-bottom: 1rem; display: block;
}
.footer-tagline { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 0.95rem; margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--wasabi); }
.footer-bottom {
  max-width: 1240px; margin: 3rem auto 0;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 0.75rem;
}

/* ── Overlay ─────────────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(45,27,46,0.5);
  z-index: 800;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.visible { opacity: 1; pointer-events: all; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: none; border: none;
    font-size: 1.4rem; color: var(--plum); cursor: pointer;
  }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .wishlist-drawer { width: 100%; right: -100%; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .quiz-section { padding: 2rem 1rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .quote-section { padding: 3rem 1.5rem; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
