/*
Theme Name: Kidscribble
Theme URI: https://kidscribble.in
Author: Kidscribble
Author URI: https://kidscribble.in
Description: A vibrant, parallax landing page theme for Kidscribble worksheet bundles. Includes built-in Razorpay payment integration and a custom Theme Options panel to manage pricing and settings.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kidscribble
Tags: landing-page, e-commerce, parallax, custom-colors, custom-logo
*/

/* =============================================
   KIDSCRIBBLE THEME — BRAND COLORS FROM LOGO
   Pink:   #F472B6 / #EC4899 / #DB2777
   Purple: #845EC2 / #6D28D9 / #4C1D95
   White:  #FFFFFF
   Light:  #FDF4FF / #FAF5FF
   ============================================= */

:root {
  --pink:        #EC4899;
  --pink-light:  #F9A8D4;
  --pink-dark:   #DB2777;
  --pink-pale:   #FDF2F8;
  --purple:      #845EC2;
  --purple-dark: #6D28D9;
  --purple-deep: #4C1D95;
  --purple-pale: #FAF5FF;
  --white:       #FFFFFF;
  --off-white:   #FDF4FF;
  --text:        #2D1B3D;
  --text-muted:  #7C5A8F;
  --border:      #E9D5F5;
  --shadow-pink: rgba(236,72,153,0.25);
  --shadow-purp: rgba(132,94,194,0.25);
  --grad-hero:   linear-gradient(135deg, #FDF2F8 0%, #FAF5FF 50%, #F0FDF4 100%);
  --grad-cta:    linear-gradient(135deg, #EC4899 0%, #845EC2 100%);
  --grad-btn:    linear-gradient(135deg, #F472B6 0%, #845EC2 100%);
}

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

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 120px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Baloo 2', 'Segoe UI', cursive;
}

/* ---- UTILITY ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: clamp(28px, 4vw, 38px); font-weight: 800; text-align: center; color: var(--purple-deep); margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 44px; }

/* ---- TOPBAR ---- */
#kc-topbar {
  background: var(--grad-cta);
  color: white;
  text-align: center;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 200;
}
#kc-topbar .highlight {
  background: rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 2px 12px;
  margin-left: 6px;
}

/* ---- NAV ---- */
#kc-nav {
  background: white;
  border-bottom: 2px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(132,94,194,0.10);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.site-logo img { max-height: 100%; width: auto; object-fit: contain; }
.nav-menu { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 700; color: var(--text-muted); transition: color 0.2s; }
.nav-menu a:hover { color: var(--pink); }
.nav-cta-btn {
  background: var(--grad-btn);
  color: white !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 4px 14px var(--shadow-pink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--shadow-pink); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--purple); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---- HERO ---- */
#kc-hero {
  background: var(--grad-hero);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-parallax-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(244,114,182,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(132,94,194,0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(167,139,250,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-floats { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-floats span { position: absolute; font-size: 32px; opacity: 0.1; animation: float 6s ease-in-out infinite; }
.hero-floats span:nth-child(1) { top: 10%; left: 8%; animation-delay: 0s; }
.hero-floats span:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
.hero-floats span:nth-child(3) { bottom: 20%; left: 12%; animation-delay: 2s; }
.hero-floats span:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 3s; }
.hero-floats span:nth-child(5) { top: 50%; left: 3%; animation-delay: 1.5s; }
.hero-floats span:nth-child(6) { top: 40%; right: 3%; animation-delay: 2.5s; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-18px) rotate(8deg)} }

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FDE8F5, #EDE9FF);
  border: 1.5px solid var(--pink-light);
  color: var(--purple-dark);
  border-radius: 30px;
  padding: 7px 22px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--purple-deep);
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .pink { color: var(--pink-dark); }
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}
.stat-box { text-align: center; }
.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: 34px;
  font-weight: 800;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }

.price-card {
  background: white;
  border-radius: 24px;
  display: inline-block;
  padding: 24px 50px;
  box-shadow: 0 8px 32px rgba(132,94,194,0.15);
  margin-bottom: 32px;
  border: 2px solid var(--border);
  position: relative;
}
.price-card .original { font-size: 20px; color: #bbb; text-decoration: line-through; display: block; font-weight: 600; }
.price-card .sale {
  font-family: 'Baloo 2', cursive;
  font-size: 60px;
  font-weight: 800;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.price-card .note { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.hero-cta {
  display: inline-block;
  background: var(--grad-btn);
  color: white;
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 54px;
  border-radius: 60px;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 28px var(--shadow-pink);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px var(--shadow-pink); }

.trust-strip {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}
.trust-strip span { margin: 0 10px; font-weight: 600; }

/* ---- PROCESS + TRUST ---- */
#kc-process-trust {
  background: linear-gradient(180deg, #FAF5FF 0%, #F2EBFF 100%);
  padding: 80px 24px;
}
.process-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.process-intro .section-title {
  color: var(--purple-deep);
}
.process-intro .section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}
.process-card {
  background: white;
  border: 1px solid rgba(132,94,194,0.14);
  border-radius: 28px;
  padding: 34px 28px;
  min-height: 240px;
  box-shadow: 0 20px 40px rgba(132,94,194,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(132,94,194,0.14);
}
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: var(--grad-cta);
  color: white;
  font-size: 28px;
  margin-bottom: 22px;
}
.process-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--purple-dark);
  margin-bottom: 12px;
}
.process-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.trust-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.trust-box {
  background: white;
  border: 1px solid rgba(132,94,194,0.14);
  border-radius: 28px;
  padding: 32px 28px;
  min-height: 190px;
  box-shadow: 0 18px 38px rgba(132,94,194,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.trust-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(132,94,194,0.12);
}
.trust-box strong {
  display: block;
  font-size: 19px;
  color: var(--purple-deep);
  margin-bottom: 14px;
}
.trust-box p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.trust-box a { color: var(--pink-dark); font-weight: 700; }

/* ---- PARALLAX DIVIDER ---- */
.parallax-divider {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-cta);
  opacity: 0.88;
}
.parallax-divider .divider-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 32px 24px;
}
.parallax-divider h3 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; }
.parallax-divider p { font-size: 16px; opacity: 0.9; margin-top: 8px; }

/* ---- BUNDLE SECTION ---- */
#kc-bundle { background: white; padding: 80px 24px; }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.bundle-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  border: 2px solid var(--border);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.bundle-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-light);
  box-shadow: 0 12px 32px var(--shadow-purp);
}
.bundle-preview {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
  scrollbar-color: rgba(111, 55, 170, 0.28) transparent;
}
.bundle-preview::-webkit-scrollbar {
  height: 8px;
}
.bundle-preview::-webkit-scrollbar-thumb {
  background: rgba(111, 55, 170, 0.28);
  border-radius: 99px;
}
.bundle-preview img {
  width: 140px;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(111, 55, 170, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.bundle-preview img:hover {
  transform: scale(1.05);
  border-color: rgba(111, 55, 170, 0.22);
}
.bundle-icon { font-size: 44px; margin-bottom: 14px; display: block; }
.bundle-card h4 { font-size: 16px; font-weight: 800; color: var(--purple-deep); margin-bottom: 8px; }
.bundle-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.bundle-count {
  display: inline-block;
  background: var(--grad-btn);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

.sample-gallery {
  margin-top: 44px;
  text-align: center;
}
.sample-gallery .section-title {
  margin-bottom: 24px;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, 265px);
  gap: 18px;
  justify-content: center;
}
.sample-card {
  width: 265px;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid var(--border);
  background: var(--off-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sample-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 55, 170, 0.18);
  box-shadow: 0 20px 40px rgba(28, 27, 43, 0.08);
}
.sample-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  transition: transform 0.28s ease;
}
.sample-card:hover img {
  transform: scale(1.05);
}

/* ---- BENEFITS ---- */
#kc-benefits { background: var(--purple-pale); padding: 80px 24px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  background: white;
  border-radius: 18px;
  padding: 24px 22px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.2s;
}
.benefit-item:hover { box-shadow: 0 8px 24px var(--shadow-purp); }
.benefit-icon { font-size: 40px; flex-shrink: 0; }
.benefit-item h4 { font-size: 16px; font-weight: 800; color: var(--pink-dark); margin-bottom: 6px; }
.benefit-item p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- WARNING ---- */
#kc-warning {
  background: linear-gradient(135deg, #FFF0F7, #F5F0FF);
  padding: 80px 24px;
}
.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.warning-card {
  background: white;
  border-radius: 14px;
  padding: 20px 18px;
  border-left: 4px solid var(--pink);
}
.warning-card h5 { font-size: 15px; font-weight: 800; color: var(--purple-dark); margin-bottom: 7px; }
.warning-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---- CHECKLIST ---- */
#kc-checklist { background: white; padding: 80px 24px; }
.check-list { list-style: none; max-width: 720px; margin: 0 auto; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.check-list li:last-child { border-bottom: none; }
.check-list .check-icon { color: var(--pink); font-size: 22px; flex-shrink: 0; margin-top: -1px; }
.check-list strong { color: var(--purple-dark); }

/* ---- TESTIMONIALS ---- */
#kc-testimonials { background: var(--pink-pale); padding: 80px 24px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.testi-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: transform 0.2s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-family: 'Baloo 2', cursive;
  font-size: 72px;
  color: var(--pink-light);
  line-height: 0.5;
  margin-bottom: 14px;
  display: block;
}
.testi-stars { color: #F59E0B; font-size: 18px; margin-bottom: 12px; }
.testi-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.testi-author { font-size: 15px; font-weight: 800; color: var(--purple-dark); }
.testi-meta { font-size: 12px; color: var(--text-muted); }

/* ---- FAQ ---- */
#kc-faq { background: var(--purple-pale); padding: 80px 24px; }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.faq-q {
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--purple-deep);
  user-select: none;
}
.faq-q:hover { background: var(--pink-pale); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ---- FINAL CTA ---- */
#kc-final-cta {
  background: var(--grad-cta);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#kc-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
#kc-final-cta h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: white; position: relative; margin-bottom: 14px; }
#kc-final-cta p { font-size: 18px; color: rgba(255,255,255,0.9); position: relative; margin-bottom: 36px; }
.cta-price-box {
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  display: inline-block;
  padding: 20px 44px;
  margin-bottom: 32px;
  position: relative;
}
.cta-price-box .orig { font-size: 18px; color: rgba(255,255,255,0.65); text-decoration: line-through; display: block; }
.cta-price-box .sale { font-family: 'Baloo 2', cursive; font-size: 54px; font-weight: 800; color: white; display: block; line-height: 1; }
.cta-price-box .note { font-size: 13px; color: rgba(255,255,255,0.8); }
.cta-white-btn {
  background: white;
  color: var(--pink-dark);
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  padding: 18px 54px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transition: transform 0.15s;
  position: relative;
  display: inline-block;
}
.cta-white-btn:hover { transform: translateY(-3px); }
.cta-notes { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 16px; position: relative; }
.cta-notes span { margin: 0 10px; }

/* ---- FOOTER ---- */
#kc-footer {
  background: #1A0A2E;
  color: #ccc;
  padding: 60px 24px 30px;
}
#kc-fixed-offer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: linear-gradient(135deg, rgba(20, 7, 45, 0.96), rgba(56, 12, 88, 0.96));
  color: white;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -10px 28px rgba(0,0,0,0.35);
}
#kc-fixed-offer-bar .kc-fixed-offer-copy {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
#kc-fixed-offer-bar .kc-offer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#kc-fixed-offer-bar .kc-offer-label {
  background: rgba(255,255,255,0.12);
  color: #F9F7FF;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
}
#kc-fixed-offer-bar .kc-offer-head {
  font-size: 18px;
  font-weight: 800;
  color: white;
}
#kc-fixed-offer-bar .kc-offer-timer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
#kc-fixed-offer-bar .kc-timer-note {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.72);
}
#kc-fixed-offer-bar .kc-timer-wrap {
  background: #1b063a;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
#kc-fixed-offer-bar .kc-timer-wrap span {
  display: inline-flex;
  min-width: 32px;
  justify-content: center;
}
#kc-fixed-offer-bar .kc-fixed-offer-btn {
  background: linear-gradient(135deg, #FFB703, #F59E0B);
  color: #1B0B39;
  border: none;
  border-radius: 999px;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0,0,0,0.24);
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 160px;
}
#kc-fixed-offer-bar .kc-fixed-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}
#kc-fixed-offer-bar .kc-offer-head::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--pink);
}
@media (max-width: 860px) {
  #kc-fixed-offer-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  #kc-fixed-offer-bar .kc-fixed-offer-copy {
    justify-content: center;
  }
  #kc-fixed-offer-bar .kc-offer-left,
  #kc-fixed-offer-bar .kc-offer-timer {
    align-items: center;
  }
  #kc-fixed-offer-bar .kc-fixed-offer-btn {
    width: 100%;
  }
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 140px;
}
#kc-fixed-offer-bar .kc-fixed-offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25);
}
@media (max-width: 860px) {
  #kc-fixed-offer-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  #kc-fixed-offer-bar .kc-fixed-offer-copy {
    justify-content: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto 44px;
}
.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: #888; line-height: 1.75; }
.footer-col h5 { font-family: 'Baloo 2', cursive; font-size: 16px; color: white; margin-bottom: 16px; }
.footer-col a { display: block; color: #888; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid #2D1B4E;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #555;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom a { color: #666; margin: 0 10px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--pink); }

/* ---- CHECKOUT MODAL ---- */
.kc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 50, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.kc-modal-overlay.active { display: flex; }
.kc-modal {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px;
  width: 92%;
  text-align: center;
  position: relative;
  animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from{transform:scale(0.85);opacity:0} to{transform:scale(1);opacity:1} }
.kc-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  color: #aaa;
  line-height: 1;
}
.kc-modal h3 { font-family: 'Baloo 2', cursive; font-size: 26px; color: var(--purple-dark); margin-bottom: 6px; }
.kc-modal .modal-price {
  font-family: 'Baloo 2', cursive;
  font-size: 50px;
  font-weight: 800;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kc-modal .modal-orig { font-size: 14px; color: #bbb; text-decoration: line-through; margin-bottom: 8px; }
.kc-modal input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 12px;
  margin-top: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.kc-modal input:focus { border-color: var(--pink); }
.kc-pay-btn {
  width: 100%;
  background: var(--grad-btn);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Baloo 2', cursive;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--shadow-pink);
  transition: transform 0.15s;
}
.kc-pay-btn:hover { transform: translateY(-2px); }
.kc-modal-cancel { display: block; margin-top: 14px; font-size: 13px; color: #bbb; cursor: pointer; }
.kc-modal-cancel:hover { color: var(--pink); }
.rp-warning {
  background: #FFF7ED;
  border: 1px solid #FCD34D;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #92400E;
  margin-top: 12px;
  text-align: left;
  display: none;
}

/* ---- PAGE MODALS (Privacy, Refund, etc.) ---- */
.kc-page-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 50, 0.7);
  z-index: 10000;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}
.kc-page-overlay.active { display: block; }
.kc-page-box {
  background: white;
  max-width: 820px;
  width: 92%;
  margin: 40px auto;
  border-radius: 24px;
  padding: 44px 40px;
  position: relative;
}
.kc-page-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: #aaa;
}
.kc-page-box h2 { font-family: 'Baloo 2', cursive; font-size: 30px; color: var(--pink-dark); margin-bottom: 6px; }
.kc-page-box .effective { font-size: 13px; color: #bbb; margin-bottom: 24px; }
.kc-page-box h3 { font-size: 17px; font-weight: 800; color: var(--purple-dark); margin: 22px 0 8px; }
.kc-page-box p, .kc-page-box li { font-size: 14px; color: #555; line-height: 1.85; margin-bottom: 8px; }
.kc-page-box ul { padding-left: 22px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 12px;
  outline: none;
}
.contact-form textarea { resize: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--pink); }
.contact-submit {
  background: var(--grad-btn);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Baloo 2', cursive;
  cursor: pointer;
  width: 100%;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--border);
    z-index: 998;
    gap: 14px;
  }
  .hamburger { display: block; }
  #kc-hero { padding: 50px 20px 40px; }
  .price-card .sale { font-size: 46px; }
  .hero-cta { font-size: 18px; padding: 15px 36px; }
  .kc-page-box { padding: 32px 22px; }
}
