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

:root {
  --bg-dark: #FDF8F4;
  --bg-darker: #F5EDE6;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFF9F5;
  --text-primary: #2C2420;
  --text-secondary: #6B5D52;
  --text-muted: #A09080;
  /* Primary action color — sage green (fertility, growth, trust) */
  --primary: #5E8E62;
  --primary-dark: #4A7350;
  --primary-light: #8BB88F;
  /* Kit-specific accent — dusty rose (Impregnator + emotional highlights) */
  --rose: #D4727A;
  --rose-dark: #B85A62;
  --rose-light: #E8A5AB;
  --gradient-start: #5E8E62;
  --gradient-end: #7BAE7F;
  --gold: #C4956A;
  --green: #5E8E62;
  --blue: #7BA9B8;
  --purple: #B088A8;
  --border: #E8DDD4;
  --border-light: #F0E6DD;
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 120px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== URGENCY HEADER BAR ========== */
.urgency-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #1a2332;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 2px solid #c4956a;
}
.urgency-header strong { color: #fff; font-weight: 800; }
.urgency-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8a84b;
  animation: urgencyPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@media (max-width: 480px) {
  .urgency-header { font-size: 0.68rem; padding: 6px 12px; }
}

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 36px; left: 0; right: 0; z-index: 1000; background: rgba(253, 248, 244, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(44, 36, 32, 0.08); transition: all 0.3s; }
.navbar.scrolled { background: rgba(245, 237, 230, 0.98); border-bottom-color: rgba(44, 36, 32, 0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-sans); font-size: 1.4rem; font-weight: 900; letter-spacing: 2px; color: var(--text-primary); }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.3s ease; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; box-shadow: 0 4px 24px rgba(94, 142, 98, 0.3); font-weight: 700; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(94, 142, 98, 0.45); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid rgba(44, 36, 32, 0.2); }
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(44, 36, 32, 0.4); }
.btn-secondary { background: var(--bg-darker); color: var(--text-primary); border: 1px solid rgba(44, 36, 32, 0.15); box-shadow: 0 0 0 1px rgba(44, 36, 32, 0.05); }
.btn-secondary:hover { background: #EDE5DD; border-color: rgba(44, 36, 32, 0.3); transform: translateY(-1px); }
.btn-large { padding: 18px 40px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ========== URGENCY BANNER ========== */
.urgency-banner { background: linear-gradient(90deg, var(--rose-dark), var(--rose), var(--gradient-end)); padding: 16px 0; }
.urgency-inner { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.urgency-icon { font-size: 1.2rem; }
.urgency-inner p { font-size: 0.9rem; font-weight: 500; color: #fff; }

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-darker); }
.section-gradient { background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%); }
.section-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); text-align: center; margin-bottom: 16px; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-align: center; margin-bottom: 16px; line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--text-secondary); text-align: center; max-width: 640px; margin: 0 auto 60px; line-height: 1.7; }
.text-rose { color: var(--primary); }

/* ========== PROBLEM CARDS ========== */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.problem-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: all 0.3s; }
.problem-card:hover { border-color: var(--rose); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212, 114, 122, 0.08); }
.problem-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--rose); }
.problem-icon svg { width: 100%; height: 100%; }
.problem-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.problem-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.problem-callout { background: var(--bg-card); border-left: 3px solid var(--rose); border-radius: 0 var(--radius) var(--radius) 0; padding: 32px 36px; max-width: 700px; margin: 0 auto; }
.callout-text { font-size: 1.05rem; font-style: italic; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; }
.callout-author { font-size: 0.85rem; font-weight: 600; color: var(--rose); }

/* ========== COMPARISON TABLE ========== */
.compare-table-wrapper { overflow-x: auto; margin-bottom: 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 600px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.compare-table th { background: rgba(212, 114, 122, 0.08) !important; color: var(--text-primary) !important; font-weight: 600; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-table td { background: var(--bg-card); padding: 12px 16px; border-bottom: 1px solid var(--border-light); color: var(--text-primary); font-size: 0.85rem; text-align: center; }
.compare-table tr:hover td { background: rgba(44, 36, 32, 0.02); }
.compare-table tr:last-child td { border-bottom: none; }

.compare-table .col-highlight { background: rgba(212, 114, 122, 0.04); border-left: 2px solid var(--rose); border-right: 2px solid var(--rose); }
.compare-table th.col-highlight { color: var(--rose); background: rgba(212, 114, 122, 0.08); border-top: 2px solid var(--rose); }
.compare-table tbody tr:last-child .col-highlight { border-bottom: 2px solid var(--rose); }

.col-blue { background: rgba(123, 169, 184, 0.05); }
.col-rose { background: rgba(212, 114, 122, 0.05); }
.col-purple { background: rgba(176, 136, 168, 0.05); }
th.col-blue { color: var(--blue); }
th.col-rose { color: var(--rose); }
th.col-purple { color: var(--purple); }

.row-label { text-align: left !important; font-weight: 600; color: var(--text-secondary); }
.check { color: var(--green); font-weight: 700; font-size: 1rem; }
.cross { color: #e74c3c; font-weight: 700; font-size: 1rem; }
.compare-footnote { text-align: center; font-size: 1rem; font-weight: 600; color: var(--text-secondary); margin-top: 24px; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all 0.3s; position: relative; }
.testimonial-card:hover { border-color: rgba(212, 114, 122, 0.3); transform: translateY(-2px); }
.featured-testimonial { grid-column: span 2; border-color: var(--rose); background: linear-gradient(135deg, rgba(212, 114, 122, 0.04), var(--bg-card)); }

.testimonial-kit-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.tag-blue { background: rgba(123, 169, 184, 0.12); color: var(--blue); }
.tag-rose { background: rgba(212, 114, 122, 0.12); color: var(--rose); }
.tag-purple { background: rgba(176, 136, 168, 0.12); color: var(--purple); }
.tag-gold { background: rgba(196, 149, 106, 0.15); color: var(--gold); }

.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; color: #fff; }
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ========== PRICING CARDS (BASE) ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; align-items: start; }

.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(212, 114, 122, 0.3); }
.pricing-featured { border-color: var(--primary); background: linear-gradient(180deg, rgba(94, 142, 98, 0.04) 0%, var(--bg-card) 40%); transform: scale(1.04); box-shadow: 0 8px 40px rgba(94, 142, 98, 0.1); }
.pricing-featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; padding: 6px 18px; border-radius: 20px; white-space: nowrap; }
.pricing-header { text-align: center; margin-bottom: 20px; }
.pricing-header h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.pricing-desc { font-size: 0.82rem; color: var(--text-muted); }

.pricing-kit-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.badge-blue { background: rgba(123, 169, 184, 0.12); color: var(--blue); }
.badge-rose { background: rgba(212, 114, 122, 0.12); color: var(--rose); }
.badge-purple { background: rgba(176, 136, 168, 0.12); color: var(--purple); }
.badge-gold { background: rgba(196, 149, 106, 0.15); color: var(--gold); }

.pricing-price { text-align: center; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-amount { font-size: 3rem; font-weight: 900; }
.price-amount sup { font-size: 1.2rem; font-weight: 700; }
.price-period { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.price-was { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; }
.price-tier-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
}

.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: var(--text-secondary); padding: 7px 0; }
.pricing-features li .check { flex-shrink: 0; font-size: 0.9rem; }
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }

/* Pricing card body: features + review side by side on desktop */
.pricing-card-body { display: flex; flex-direction: column; }
@media (min-width: 900px) {
  .pricing-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; margin-bottom: 28px; }
  .pricing-card-body .pricing-features { margin-bottom: 0; }
  .product-pricing-center { max-width: 820px; margin: 0 auto; }
}
.pricing-inline-review {
  background: rgba(94,142,98,0.06);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--primary);
}
.pricing-inline-review .pir-stars { color: #D4727A; font-size: 0.95rem; margin-bottom: 8px; }
.pricing-inline-review .pir-text { font-size: 0.85rem; line-height: 1.6; color: var(--text); margin: 0 0 10px; font-style: italic; }
.pricing-inline-review .pir-author { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; margin: 0; }

.pricing-guarantee { display: flex; align-items: center; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; max-width: 700px; margin: 0 auto; }
.guarantee-icon { width: 48px; height: 48px; flex-shrink: 0; color: var(--green); }
.guarantee-icon svg { width: 100%; height: 100%; }
.pricing-guarantee h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.pricing-guarantee p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ========== FAQ ========== */
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: var(--text-primary); font-family: var(--font-sans); font-size: 1rem; font-weight: 600; padding: 24px 0; cursor: pointer; text-align: left; transition: color 0.2s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.3rem; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }

/* ========== FOOTER ========== */
.footer { background: #2C2420; border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-links h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: rgba(255,255,255,0.8); }
.footer-links a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-disclaimer { margin-top: 8px; font-size: 0.72rem !important; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.footer .logo { color: #fff; }

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== UTILITY ========== */
.gradient-text { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ========== RESPONSIVE (SHARED COMPONENTS) ========== */
@media (max-width: 1024px) {
  .problem-grid, .testimonials-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-testimonial { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: rgba(245, 237, 230, 0.98); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); z-index: 9000; }
  .nav-links.active, .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .problem-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
  .featured-testimonial { grid-column: span 1; }
  .pricing-featured { transform: none; order: -1; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .compare-table-wrapper { margin: 0 -24px; border-radius: 0; }
}

@media (max-width: 480px) {
  .btn-large { width: 100%; text-align: center; }
}

/* ========== SALES POPUP ========== */
.sales-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: flex-start;
}
.sales-toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
  pointer-events: auto;
  max-width: 360px;
  min-width: 280px;
}
.sales-toast.visible { transform: translateX(0); opacity: 1; }
.sales-toast.hiding { transform: translateX(-120%); opacity: 0; }
.sales-toast { text-decoration: none; cursor: pointer; }
.sales-toast:hover { border-color: var(--primary); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.sales-toast-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.sales-toast-img {
  width: 48px; height: 48px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border);
}
.sales-toast-content { flex: 1; }
.sales-toast-name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.sales-toast-product { font-size: 0.78rem; color: var(--text-secondary); margin-top: 2px; }
.sales-toast-product strong { color: var(--primary); }
.sales-toast-time { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

@media (max-width: 480px) {
  .sales-popup { left: 12px; right: 12px; bottom: 12px; }
  .sales-toast { max-width: 100%; min-width: auto; }
}

/* ========== INVENTORY BADGE ========== */
.inventory-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: var(--green); margin-top: 8px;
}
.inventory-badge .inventory-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse-dot 2s ease-in-out infinite;
}
.inventory-badge.low-stock { color: var(--gold); }
.inventory-badge.low-stock .inventory-dot { background: var(--gold); }
.inventory-badge.backordered { color: #e74c3c; }
.inventory-badge.backordered .inventory-dot { background: #e74c3c; animation: none; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ========== FLOATING CTA BAR ========== */
.floating-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 114, 122, 0.15);
  padding: 12px 20px;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.floating-cta.visible {
  bottom: 0;
}
.floating-cta-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}
.floating-cta-text strong {
  color: var(--text-primary);
  font-weight: 700;
}
.floating-cta .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.floating-cta-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  margin-left: 8px;
}
.floating-cta-close:hover {
  color: var(--text-primary);
}
.floating-cta-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a2332;
  padding: 6px 14px;
  border-radius: 6px;
}
.floating-cta-timer-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a0a8b4;
  text-transform: uppercase;
}
.floating-cta-countdown {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .floating-cta { gap: 8px; padding: 10px 12px; }
  .floating-cta-text { font-size: 0.75rem; display: none; }
  .floating-cta .btn { padding: 8px 16px; font-size: 0.8rem; }
  .floating-cta-timer { padding: 4px 10px; }
  .floating-cta-timer-label { font-size: 0.5rem; }
  .floating-cta-countdown { font-size: 0.95rem; }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 114, 122, 0.1);
  border: 1px solid rgba(212, 114, 122, 0.25);
  color: var(--rose, #D4727A);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  backdrop-filter: blur(8px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: rgba(212, 114, 122, 0.2);
  transform: translateY(-2px);
}

/* ========== CART BADGE ========== */
.nav-cart {
  position: relative;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text-primary);
  padding: 6px 10px;
  transition: opacity 0.2s;
}
.nav-cart:hover { opacity: 0.7; }
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--rose, #D4727A);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== CART TOAST ========== */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--sage, #5E8E62);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.cart-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cart-toast-check {
  font-size: 1.1rem;
}
.cart-toast-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 8px;
}

/* ========== CHECKOUT CART ITEMS ========== */
.checkout-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border, #E8DDD2);
}
.checkout-cart-item:last-child { border-bottom: none; }
.checkout-cart-item-info { flex: 1; }
.checkout-cart-remove {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-muted, #A89888);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.checkout-cart-remove:hover { color: var(--rose, #D4727A); }

@media (max-width: 480px) {
  .cart-toast {
    left: 12px;
    right: 12px;
    transform: translateX(0) translateY(20px);
    white-space: normal;
    font-size: 0.82rem;
  }
  .cart-toast-visible {
    transform: translateX(0) translateY(0);
  }
}
