/* ============================
   Sprouts & Saplings Storefront
   Design tokens match landing page
   ============================ */

:root {
  --sage: #7BA87B;
  --sage-light: #A8CCA8;
  --sage-dark: #5A8A5A;
  --warm-cream: #FFF8F0;
  --soft-peach: #FFE8D6;
  --gentle-coral: #F4A77A;
  --earth-brown: #8B6F47;
  --deep-forest: #2D4A2D;
  --sky-blue: #B8D4E3;
  --lavender: #C9B8DB;
  --sunshine: #F5D76E;
  --text-dark: #3A3A3A;
  --text-muted: #666;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45, 74, 45, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 74, 45, 0.1);
  --shadow-lg: 0 8px 40px rgba(45, 74, 45, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 50px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--warm-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================
   Navigation
   ============================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 168, 123, 0.1);
  padding: 0.8rem 2rem;
}

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

.nav-brand {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand-icon {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.nav-cta {
  background: var(--sage);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--deep-forest);
  padding: 0.3rem;
}

/* ============================
   Buttons
   ============================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--sage);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: var(--sage-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--sage-light);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--sage-light);
  color: var(--deep-forest);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--gentle-coral);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-coral:hover {
  background: #E8956A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-small-primary {
  background: var(--sage);
  color: white;
}

.btn-small-primary:hover {
  background: var(--sage-dark);
}

/* ============================
   Shop Hero
   ============================ */

.shop-hero {
  position: relative;
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(170deg, var(--warm-cream) 0%, #FFF3E8 40%, var(--soft-peach) 100%);
  overflow: hidden;
}

.shop-hero .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.shop-hero .blob-1 {
  width: 300px; height: 300px;
  background: var(--sage-light);
  top: -80px; left: -60px;
}

.shop-hero .blob-2 {
  width: 200px; height: 200px;
  background: var(--lavender);
  bottom: -40px; right: -60px;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--deep-forest);
  margin-bottom: 0.8rem;
}

.shop-hero h1 span {
  color: var(--sage);
}

.shop-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================
   Shop Container
   ============================ */

.shop-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* ============================
   Filter Tabs
   ============================ */

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--earth-brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.3rem;
}

.filter-btn {
  background: white;
  border: 2px solid #E8E8E8;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--sage-light);
  color: var(--sage-dark);
}

.filter-btn.active {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}

/* ============================
   Bundle Highlight
   ============================ */

.bundle-highlight {
  background: linear-gradient(135deg, var(--deep-forest), #3D5E3D);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.bundle-highlight::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(168, 204, 168, 0.1);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.bundle-highlight::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245, 215, 110, 0.08);
  border-radius: 50%;
  bottom: -80px;
  left: -60px;
}

.bundle-info {
  position: relative;
  z-index: 2;
}

.bundle-badge {
  display: inline-block;
  background: rgba(245, 215, 110, 0.2);
  color: var(--sunshine);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.bundle-highlight h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.bundle-age-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.bundle-desc {
  opacity: 0.85;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 500px;
}

.bundle-includes {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bundle-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.bundle-action {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bundle-pricing {
  margin-bottom: 1.2rem;
}

.price-was {
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: 0.5;
  display: block;
  margin-bottom: 0.2rem;
}

.price-now {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sunshine);
}

.price-save {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

.bundle-highlight .btn-primary {
  background: var(--sunshine);
  color: var(--deep-forest);
}

.bundle-highlight .btn-primary:hover {
  background: #E8C84E;
}

/* ============================
   Product Grid
   ============================ */

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

.products-grid-title {
  grid-column: 1 / -1;
  font-size: 1.4rem;
  color: var(--deep-forest);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sage-light);
  margin-bottom: 0.5rem;
}

/* ============================
   Product Card
   ============================ */

.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.product-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image .character-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.product-card-image .product-type-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--earth-brown);
}

.libby-bg { background: linear-gradient(145deg, #E8F5E8, #D4ECD4); }
.faith-bg { background: linear-gradient(145deg, #FFF0E5, #FFE4D0); }
.ted-bg { background: linear-gradient(145deg, #E8F0F8, #D4E4F0); }
.bundle-bg { background: linear-gradient(145deg, var(--deep-forest), #3D5E3D); }
.activity-bg { background: linear-gradient(145deg, #FFF5E8, #FFEDD4); }
.free-bg { background: linear-gradient(145deg, #F0E8F5, #E4D8ED); }

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-age {
  background: var(--soft-peach);
  color: var(--earth-brown);
}

.tag-academic {
  background: #E8F5E8;
  color: var(--sage-dark);
}

.tag-sel {
  background: #FFF0E5;
  color: #C47A4A;
}

.tag-screen_free {
  background: #E8F0F8;
  color: #5A8AB5;
}

.tag-character {
  background: var(--lavender);
  color: #7A5A9A;
}

.product-card h3 {
  font-size: 1.15rem;
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

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

.product-price {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep-forest);
}

.product-price-free {
  color: var(--sage);
}

/* ============================
   Product Detail Page
   ============================ */

.product-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--sage-dark);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-sep {
  opacity: 0.4;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-detail-image .character-emoji {
  font-size: 8rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}

.product-detail-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--deep-forest);
  margin-bottom: 0.8rem;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.product-detail-tags .tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
}

.product-detail-price {
  font-family: 'Baloo 2', cursive;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--deep-forest);
  margin-bottom: 1rem;
}

.product-detail-price.free {
  color: var(--sage);
}

.product-detail-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Bundle items on detail page */
.bundle-contents {
  margin-top: 2.5rem;
  grid-column: 1 / -1;
}

.bundle-contents h2 {
  font-size: 1.5rem;
  color: var(--deep-forest);
  margin-bottom: 1.2rem;
}

.bundle-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.bundle-item-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.bundle-item-card:hover {
  transform: translateY(-2px);
}

.bundle-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bundle-item-card h4 {
  font-size: 0.95rem;
  color: var(--deep-forest);
  margin-bottom: 0.2rem;
}

.bundle-item-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================
   Lead Magnet Section
   ============================ */

.lead-magnet {
  background: linear-gradient(135deg, var(--lavender), #D8C8EB);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 3rem auto;
  max-width: 1100px;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.lead-magnet-inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}

.lead-magnet h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}

.lead-magnet p {
  color: #4A3A5A;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ============================
   Email Form
   ============================ */

.email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-form input[type="email"]:focus {
  border-color: var(--sage);
}

.email-form button {
  white-space: nowrap;
}

.form-success {
  background: #E8F5E8;
  border: 2px solid var(--sage-light);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--sage-dark);
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

.form-error {
  background: #FFF0F0;
  border: 2px solid #F4A0A0;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: #C04040;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}

.form-error.show {
  display: block;
}

/* Full page email capture (free sample page) */
.sample-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(170deg, var(--warm-cream) 0%, #F5EBF8 50%, var(--lavender) 100%);
  position: relative;
  overflow: hidden;
}

.sample-page .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.sample-page .blob-1 {
  width: 350px; height: 350px;
  background: var(--sage-light);
  top: -100px; right: -80px;
}

.sample-page .blob-2 {
  width: 250px; height: 250px;
  background: var(--sunshine);
  bottom: -60px; left: -60px;
}

.sample-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.sample-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.sample-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-forest);
  margin-bottom: 0.8rem;
}

.sample-content > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sample-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.sample-feature {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--earth-brown);
}

.sample-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.sample-form .email-form {
  flex-direction: column;
  align-items: stretch;
}

.sample-form .email-form input {
  text-align: center;
}

.sample-form .email-form button {
  width: 100%;
  justify-content: center;
}

/* ============================
   Success Page
   ============================ */

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(170deg, var(--warm-cream) 0%, #E8F5E8 100%);
}

.success-content {
  max-width: 520px;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.success-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-forest);
  margin-bottom: 0.8rem;
}

.success-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   Coming Soon Card
   ============================ */

.coming-soon-section {
  margin-top: 3rem;
}

.coming-soon-section h2 {
  font-size: 1.4rem;
  color: var(--deep-forest);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.coming-soon-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 2px dashed var(--sage-light);
  opacity: 0.75;
}

.coming-soon-card h3 {
  font-size: 1.2rem;
  color: var(--deep-forest);
  margin-bottom: 0.3rem;
}

.coming-soon-card .coming-age {
  color: var(--sage);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.coming-soon-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--soft-peach);
  color: var(--earth-brown);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================
   Footer
   ============================ */

.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--deep-forest);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .footer-brand {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.5rem;
}

.site-footer p {
  font-size: 0.9rem;
}

.site-footer .footer-tagline {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.site-footer .footer-location {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-cream);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(123, 168, 123, 0.15);
    box-shadow: var(--shadow-md);
  }

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

  .nav-toggle {
    display: block;
  }

  .bundle-highlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }

  .bundle-desc {
    max-width: 100%;
  }

  .bundle-includes {
    justify-content: center;
  }

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

  .product-detail-image {
    height: 280px;
  }

  .product-detail-actions {
    flex-direction: column;
  }

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

  .lead-magnet {
    margin: 2rem 1rem;
    padding: 2.5rem 1.5rem;
  }

  .shop-filters {
    flex-direction: column;
    align-items: center;
  }

  .filter-group {
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .bundle-items-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .shop-hero {
    padding: 3rem 1.5rem 2rem;
  }

  .shop-container {
    padding: 1.5rem 1rem 3rem;
  }

  .bundle-highlight {
    padding: 1.5rem;
  }

  .price-now {
    font-size: 2.2rem;
  }
}

/* ============================
   Animations
   ============================ */

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

.product-card {
  animation: fadeInUp 0.4s ease forwards;
}

.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.3s; }
.product-card:nth-child(5) { animation-delay: 0.4s; }

/* No products message */
.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.no-products h3 {
  color: var(--deep-forest);
  margin-bottom: 0.5rem;
}
