/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  --sage: #8BAF8B;
  --sand: #E8DCC8;
  --terra: #C4714F;
  --navy: #2C3E50;
  --ivory: #FAF7F0;
  --white: #ffffff;
  --text: #2C3E50;
  --text-light: #555;
  --text-muted: #888;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(44,62,80,0.08);
  --shadow-hover: 0 8px 40px rgba(44,62,80,0.15);
  --transition: 0.2s ease;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terra); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--terra); }
p { color: var(--text-light); line-height: 1.75; }

/* ─── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
@media (max-width: 768px) { .section-pad { padding: 56px 0; } }

/* ─── Backgrounds ────────────────────────────────────────────────── */
.bg-cream { background: var(--ivory); }
.bg-navy { background: var(--navy); }
.bg-sage { background: var(--sage); }
.bg-sand { background: var(--sand); }

/* ─── Section Headers ────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header p { max-width: 600px; margin: 12px auto 0; font-size: 1.05rem; }
.section-header.light h2, .section-header.light p { color: #FAF7F0; }
.section-header.light p { opacity: 0.85; }
.section-label {
  display: inline-block;
  background: rgba(139,175,139,0.15);
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
  border: 1px solid rgba(139,175,139,0.3);
}
.section-label.light {
  background: rgba(255,255,255,0.1);
  color: #FAF7F0;
  border-color: rgba(255,255,255,0.2);
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}
.btn-primary { background: var(--terra); color: #fff; border-color: var(--terra); }
.btn-primary:hover { background: #b5623f; border-color: #b5623f; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,113,79,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }
.btn-terracotta { background: var(--terra); color: #fff; border-color: var(--terra); }
.btn-terracotta:hover { background: #b5623f; color: #fff; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--ivory); color: var(--navy); }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-xl { padding: 18px 40px; font-size: 18px; border-radius: 12px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ─── Launch Banner ──────────────────────────────────────────────── */
.launch-banner {
  background: var(--terra);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.launch-banner a { color: #fff; text-decoration: underline; margin-left: 4px; }
.launch-banner a:hover { color: var(--sand); }

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid rgba(44,62,80,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(44,62,80,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 44px; width: 44px; border-radius: 8px; object-fit: cover; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-links a.active { background: rgba(196,113,79,0.08); }
.nav-etsy {
  background: var(--terra) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
}
.nav-etsy:hover { background: #b5623f !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--sand) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,175,139,0.2);
  color: #5a8a5a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  border: 1px solid rgba(139,175,139,0.4);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  color: var(--navy);
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.trust-sep { color: var(--sand); }
.hero-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.hero-mock {
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition);
}
.hero-mock:hover { transform: translateY(-4px); }
.hero-mock-1 { grid-column: 1; grid-row: 1 / 3; }
.hero-mock-2 { grid-column: 2; grid-row: 1; }
.hero-mock-3 { grid-column: 2; grid-row: 2; }

/* ─── Why Grid ───────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 14px; }

/* ─── Products Grid ──────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.products-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-img-link { display: block; overflow: hidden; background: var(--ivory); }
.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-img-link:hover .product-img { transform: scale(1.03); }
.product-info { padding: 20px; }
.product-name { font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.product-name a { color: var(--navy); }
.product-name a:hover { color: var(--terra); }
.product-desc-short { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--terra); margin-bottom: 14px; font-family: 'Playfair Display', serif; }
.product-card-actions { display: flex; gap: 8px; }
.btn-buy { cursor: pointer; }

/* ─── Bundles ────────────────────────────────────────────────────── */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.bundle-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.bundle-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
.bundle-badge {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.bundle-card h3 { color: #FAF7F0; font-size: 1.3rem; margin-bottom: 12px; }
.bundle-card h3 a { color: inherit; }
.bundle-card h3 a:hover { color: var(--sand); }
.bundle-card p { color: rgba(250,247,240,0.75); font-size: 14px; margin-bottom: 16px; }
.bundle-features { margin: 16px 0 20px; }
.bundle-features li { color: rgba(250,247,240,0.8); font-size: 13px; padding: 3px 0; padding-left: 4px; }
.bundle-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #FAF7F0; margin: 20px 0; }
.bundle-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sage);
}
.stars { font-size: 1rem; margin-bottom: 14px; }
.testimonial-card p { font-style: italic; font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 16px; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--text-muted); }

/* ─── Page Header ────────────────────────────────────────────────── */
.page-header {
  padding: 60px 0;
  border-bottom: 1px solid var(--sand);
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { font-size: 1.1rem; }

/* ─── Product Detail Page ────────────────────────────────────────── */
.product-page { padding: 40px 0 80px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb span { color: var(--terra); }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.product-gallery { }
.product-main-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--ivory);
}
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.thumb {
  width: 72px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--ivory);
}
.thumb.active, .thumb:hover { border-color: var(--terra); }
.product-trust-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.product-trust-badges span {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.product-badge-lg {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.product-detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--terra);
  margin-bottom: 20px;
}
.price-note { font-family: 'Lato', sans-serif; font-size: 13px; color: var(--text-muted); }
.product-detail-desc { font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }
.product-features { margin-bottom: 28px; }
.product-features h3 { margin-bottom: 16px; font-size: 1.1rem; }
.product-features ul { display: flex; flex-direction: column; gap: 10px; }
.product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-light); }
.check { color: var(--sage); font-weight: 900; font-size: 16px; flex-shrink: 0; }
.bundle-includes { background: var(--ivory); border-radius: 8px; padding: 16px 20px; margin-bottom: 24px; }
.bundle-includes h3 { font-size: 1rem; margin-bottom: 8px; }
.bundle-includes p { font-size: 13px; }
.product-buy-section { margin-bottom: 24px; }
.buy-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.product-guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(139,175,139,0.1);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(139,175,139,0.3);
}
.guarantee-icon { font-size: 1.8rem; flex-shrink: 0; }
.product-guarantee strong { display: block; margin-bottom: 4px; color: var(--navy); }
.product-guarantee p { font-size: 13px; margin: 0; }
.related-products h2 { margin-bottom: 32px; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.faq-item h4 { margin-bottom: 10px; font-size: 1rem; }
.faq-item p { font-size: 14px; }

/* ─── About ──────────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.about-logo { width: 200px; border-radius: 16px; margin-bottom: 32px; }
.about-stats { display: flex; flex-direction: column; gap: 20px; }
.stat { background: var(--ivory); border-radius: 12px; padding: 20px 24px; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--terra); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 700; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-beliefs { margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.about-beliefs li { display: flex; gap: 10px; font-size: 15px; color: var(--text-light); }
.about-beliefs li::before { content: '✓'; color: var(--sage); font-weight: 900; flex-shrink: 0; }

/* ─── Contact ────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-methods { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-method strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact-method p { font-size: 14px; margin: 0; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.social-link {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: all var(--transition);
}
.social-link:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--sand);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success { background: rgba(139,175,139,0.1); border: 1px solid var(--sage); border-radius: 8px; padding: 16px; text-align: center; }
.form-success p { color: var(--sage); font-weight: 700; margin: 0; }
.form-error { background: rgba(196,113,79,0.1); border: 1px solid var(--terra); border-radius: 8px; padding: 16px; }
.form-error p { color: var(--terra); font-size: 14px; margin: 0; }

/* ─── Success Box ────────────────────────────────────────────────── */
.success-box {
  background: rgba(139,175,139,0.1);
  border: 1px solid rgba(139,175,139,0.4);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
  margin: 24px auto;
  max-width: 500px;
}
.success-box h3 { margin-bottom: 16px; color: var(--navy); }
.success-box ol { padding-left: 20px; color: var(--text-light); font-size: 15px; }
.success-box li { padding: 6px 0; line-height: 1.6; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { width: 60px; border-radius: 10px; margin-bottom: 16px; }
.footer-tagline { color: rgba(250,247,240,0.7); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social a { color: var(--sage); font-size: 13px; transition: color var(--transition); }
.footer-social a:hover { color: #FAF7F0; }
.footer-links h4 { color: #FAF7F0; font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { color: rgba(250,247,240,0.65); font-size: 13px; transition: color var(--transition); }
.footer-links li a:hover { color: var(--sage); }
.footer-contact h4 { color: #FAF7F0; font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 16px; }
.footer-contact p { font-size: 13px; margin-bottom: 8px; }
.footer-contact a { color: var(--sage); }
.footer-contact a:hover { color: #FAF7F0; }
.footer-note { color: rgba(250,247,240,0.5) !important; line-height: 1.6 !important; margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { color: rgba(250,247,240,0.4); font-size: 12px; text-align: center; }

/* ─── Modal ──────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 380px;
  width: 90%;
  position: relative;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--text-muted);
}
.modal-close:hover { color: var(--text); }
.modal-spinner p { color: var(--text-muted); font-size: 15px; margin-top: 16px; }
.spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--sand);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-error p { color: var(--text); margin-bottom: 16px; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 140px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }
  .bundle-actions { flex-direction: column; }
  .bundle-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-pad { padding: 40px 0; }
  .hero { padding: 48px 0 40px; }
}


/* ─────────────────────────────────────────────────────────────────
   LEAD MAGNET / FREE DOWNLOAD SECTION
   ───────────────────────────────────────────────────────────────── */

/* Terracotta button variant */
.btn-terra {
  background: #C4714F;
  color: #fff;
  border: 2px solid #C4714F;
}
.btn-terra:hover {
  background: #b5623f;
  border-color: #b5623f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,113,79,0.4);
}

/* Home page lead magnet section */
.lead-magnet-section {
  background: #7A9E7A;
  padding: 60px 0;
}
.lead-magnet-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.lead-magnet-text {
  flex: 1;
  min-width: 280px;
}
.lead-magnet-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.lead-magnet-headline {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  line-height: 1.2;
}
.lead-magnet-sub {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}
.lead-magnet-form {
  flex: 1;
  min-width: 300px;
}
.lead-magnet-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lead-magnet-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: #2C3E50;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-magnet-input::placeholder { color: #999; }
.lead-magnet-input:focus {
  border-color: #C4714F;
  box-shadow: 0 0 0 3px rgba(196,113,79,0.2);
}
.lead-magnet-btn {
  padding: 14px 24px;
  white-space: nowrap;
  font-size: 15px;
}
.lead-magnet-success {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  color: #2C7A3A;
  font-weight: 600;
  font-size: 15px;
}
.lead-magnet-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  color: #C0392B;
  font-weight: 600;
  font-size: 15px;
}
.lead-magnet-privacy {
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  margin-top: 10px;
}

/* ─────────────────────────────────────────────────────────────────
   FLOATING FREE DOWNLOAD BANNER
   ───────────────────────────────────────────────────────────────── */
.float-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3E50;
  color: #fff;
  z-index: 9000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.float-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.float-banner-text {
  color: #E8DCC8;
  font-size: 15px;
  font-weight: 600;
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.float-banner-btn {
  background: #C4714F;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.float-banner-btn:hover {
  background: #b5623f;
  color: #fff !important;
}
.float-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.float-banner-close:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────────
   LEAD MAGNET MODAL (shop popup + floating banner click)
   ───────────────────────────────────────────────────────────────── */
.lm-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,62,80,0.65);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lmFadeIn 0.2s ease;
}
@keyframes lmFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lm-modal {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: lmSlideUp 0.25s ease;
  text-align: center;
}
@keyframes lmSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.lm-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.lm-modal-close:hover { color: #2C3E50; }
.lm-modal-badge {
  display: inline-block;
  background: #E8F4E8;
  color: #4A8A4A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.lm-modal-title {
  color: #2C3E50;
  font-size: 1.7rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.lm-modal-sub {
  color: #666;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.lm-modal-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8DCC8;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: #2C3E50;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.lm-modal-input:focus {
  border-color: #8BAF8B;
  box-shadow: 0 0 0 3px rgba(139,175,139,0.2);
}
.lm-modal-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}
.lm-modal-success {
  background: #F0F9F0;
  border: 1px solid #8BAF8B;
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
  color: #2C7A3A;
  font-size: 15px;
}
.lm-modal-error {
  background: #FFF0F0;
  border: 1px solid #E88;
  border-radius: 8px;
  padding: 14px;
  margin-top: 12px;
  color: #C0392B;
  font-size: 14px;
}
.lm-modal-privacy {
  color: #aaa;
  font-size: 12px;
  margin-top: 14px;
}

/* Padding for floating banner so footer content isn't hidden */
body { padding-bottom: 60px; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .lead-magnet-inner { flex-direction: column; gap: 28px; }
  .lead-magnet-text, .lead-magnet-form { min-width: unset; width: 100%; }
  .lead-magnet-fields { flex-direction: column; }
  .lead-magnet-btn { width: 100%; }
  .float-banner-text { font-size: 13px; }
  .lm-modal { padding: 28px 20px; }
  .lm-modal-title { font-size: 1.4rem; }
}
