/* =============================================
   Little Fun WONDERLAND — style.css
   Aesthetic: Retro-playful, warm & bold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary: #FF6B35;
  --primary-dark: #e05520;
  --secondary: #FFD166;
  --accent: #06D6A0;
  --accent2: #118AB2;
  --purple: #9B5DE5;
  --bg: #FFF8F0;
  --bg2: #FFF1E0;
  --card-bg: #FFFFFF;
  --text: #2D2926;
  --text-muted: #7A6E67;
  --border: #F0E0D0;
  --shadow: 0 4px 20px rgba(255, 107, 53, 0.12);
  --shadow-hover: 0 8px 32px rgba(255, 107, 53, 0.22);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: #fff;
  border-bottom: 2.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 2rem;
  box-shadow: 0 2px 18px rgba(255,107,53,0.08);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo .logo-icon { font-size: 1.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: var(--primary);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 99px !important;
  font-weight: 800 !important;
  box-shadow: 0 3px 12px rgba(255,107,53,0.3);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 99px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO — INDEX
   ============================================= */
.hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 50%, #FFF3CC 100%);
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,209,102,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(6,214,160,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--secondary);
  color: var(--text);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: bounceIn 0.7s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Floating toys decoration */
.hero-floats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  font-size: 3rem;
  animation: fadeUp 0.7s ease 0.4s both;
}
.float-item {
  animation: floatBob 3s ease-in-out infinite;
  display: inline-block;
}
.float-item:nth-child(2) { animation-delay: 0.5s; }
.float-item:nth-child(3) { animation-delay: 1s; }
.float-item:nth-child(4) { animation-delay: 1.5s; }
.float-item:nth-child(5) { animation-delay: 2s; }

/* === SECTION COMMON === */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,107,53,0.1);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 0.7rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === FEATURES STRIP (HOME) === */
.features-strip {
  background: var(--primary);
  padding: 1.5rem 2rem;
  overflow: hidden;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.feature-item .fi-icon { font-size: 1.6rem; }
.feature-item h4 { font-weight: 800; font-size: 0.95rem; }
.feature-item p { font-size: 0.78rem; opacity: 0.85; }

/* =============================================
   PRODUCT GRID
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.product-image-wrap {
  position: relative;
  background: linear-gradient(135deg, #FFF3E0, #FFE8CC);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 5rem;
  transition: all 0.3s ease;
}
.product-card:hover .product-image-wrap { background: linear-gradient(135deg, #FFE8CC, #FFD6A8); }

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.product-badge.new { background: var(--accent); color: #fff; }
.product-badge.hot { background: var(--primary); color: #fff; }
.product-badge.sale { background: var(--purple); color: #fff; }

.product-info {
  padding: 1.2rem;
}
.product-name {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.product-category {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--primary);
}
.product-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(255,107,53,0.25);
}
.product-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

/* =============================================
   MODALS
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 41, 38, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #fff;
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
  z-index: 2;
  line-height: 1;
}
.modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* Product Modal */
.modal-image {
  background: linear-gradient(135deg, #FFF3E0, #FFE0C8);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  overflow: hidden;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body { padding: 1.8rem; }

.modal-tag {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.modal-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
}

/* Error Modal */
.error-modal .modal-body { text-align: center; padding: 2.5rem; }
.error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
  animation: shakeIt 0.5s ease;
}
.error-modal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.error-modal p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}
.error-modal .btn { margin: 0 auto; }

/* =============================================
   CATEGORIES (HOME)
   ============================================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}
.category-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
  text-align: center;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.category-emoji { font-size: 2.8rem; margin-bottom: 0.8rem; }
.category-name { font-weight: 800; font-size: 0.95rem; }
.category-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* =============================================
   TESTIMONIALS (HOME)
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--secondary);
  position: absolute;
  top: -10px;
  left: 18px;
  line-height: 1;
}
.stars { color: var(--secondary); font-size: 1rem; margin-bottom: 0.8rem; }
.testimonial-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #fff;
}
.author-name { font-weight: 800; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   NEWSLETTER (HOME)
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '🎈🎉🎊🪀🎮🧸';
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  letter-spacing: 2rem;
}
.newsletter-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 0.8rem;
}
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.05rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.3rem;
  border-radius: 99px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.newsletter-form .btn {
  background: var(--secondary);
  color: var(--text);
  border: none;
  padding: 0.85rem 1.6rem;
  white-space: nowrap;
}
.newsletter-form .btn:hover {
  background: #ffca28;
  transform: translateY(-2px);
}

/* =============================================
   SHOP PAGE — FILTERS
   ============================================= */
.shop-header {
  background: linear-gradient(135deg, #FFF3E0, #FFE8CC);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.shop-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.shop-header p { color: var(--text-muted); font-size: 1.05rem; }

.shop-toolbar {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.filter-tag {
  background: var(--card-bg);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tag:hover,
.filter-tag.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.product-count { font-size: 0.9rem; color: var(--text-muted); font-weight: 700; }

/* =============================================
   NEW ARRIVALS PAGE
   ============================================= */
.new-arrivals-hero {
  background: linear-gradient(135deg, #E8F8F5 0%, #D4F1E4 50%, #FFF3E0 100%);
  padding: 4.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.new-arrivals-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.new-arrivals-hero p { color: var(--text-muted); font-size: 1.05rem; }

.new-arrival-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, #F3E8FF 0%, #E8D5FF 50%, #FFF8F0 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.about-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-visual {
  background: linear-gradient(135deg, #FFF3E0, #FFE8CC);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 2px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.stat-label { color: var(--text-muted); font-weight: 700; font-size: 0.9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--purple); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F3E8FF, #E8D5FF);
  border: 3px solid var(--purple);
}
.team-name { font-weight: 800; font-size: 1rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.82rem; color: var(--text-muted); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: linear-gradient(135deg, #E8F4FD 0%, #D4ECFA 50%, #FFF8F0 100%);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}
.contact-hero p { color: var(--text-muted); font-size: 1.05rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,107,53,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item h4 { font-weight: 800; font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  background: rgba(6,214,160,0.1);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1rem;
  display: none;
  align-items: center;
  gap: 0.6rem;
}

/* =============================================
   LEGAL PAGES (PRIVACY / TERMS)
   ============================================= */
.legal-hero {
  background: linear-gradient(135deg, #F5F5FF 0%, #EEF0FF 50%, #FFF8F0 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.legal-hero p { color: var(--text-muted); font-size: 0.95rem; }
.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}
.legal-section {
  margin-bottom: 2.8rem;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.legal-section h3 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin: 1.2rem 0 0.4rem;
}
.legal-section p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 0.6rem;
}
.legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}
.legal-section ul li { margin-bottom: 0.3rem; }
.legal-toc {
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border: 2px solid var(--border);
}
.legal-toc h3 { font-weight: 800; margin-bottom: 1rem; font-size: 0.95rem; }
.legal-toc ol {
  padding-left: 1.2rem;
  counter-reset: toc;
}
.legal-toc ol li {
  counter-increment: toc;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.legal-toc ol li a { color: var(--primary); }
.legal-toc ol li a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.7rem;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 0.55rem;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.footer-col a:hover { opacity: 1; color: var(--secondary); padding-left: 4px; }
.footer-newsletter input {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  margin-bottom: 0.6rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .btn {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  background: var(--primary);
  color: #fff;
}
.footer-newsletter .btn:hover { background: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shakeIt {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px) rotate(-5deg); }
  40% { transform: translateX(8px) rotate(5deg); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   PAGE HEADER (reusable)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, #FFF3E0, #FFE8CC);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 2px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.page-header p { color: var(--text-muted); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--primary); font-weight: 700; }
.breadcrumb span { opacity: 0.5; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { aspect-ratio: 2/1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .features-inner { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .hero-floats { font-size: 2rem; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 500px) {
  .features-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
