/* ============================================================
   ThermaCove Guides — Premium Store
   Warm, Friendly Design System (Cream + Coral + Sage)
   ============================================================ */

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

:root {
  --bg-body:       #faf8f5;
  --bg-card:       #ffffff;
  --bg-warm:       #fef9f4;
  --bg-warm-alt:   #fdf3ed;
  --border-subtle: #eae4dc;
  --border-glow:   rgba(251,113,133,.2);

  --text-primary:   #2d2a26;
  --text-secondary: #6b6560;
  --text-muted:     #9e9790;

  --coral:      #fb7171;     /* primary warm */
  --coral-deep: #e84444;
  --peach:      #fcd9b6;
  --sage:       #86b04d;     /* green accent */
  --lavender:   #a78bfa;     /* soft purple */
  --sky:        #38bdf8;     /* blue accent */

  --gradient-main:    linear-gradient(135deg, var(--coral), var(--peach));
  --gradient-warm:    linear-gradient(135deg, var(--coral), #f59e0b);
  --gradient-cool:    linear-gradient(135deg, var(--lavender), var(--sky));
  --gradient-cta:     linear-gradient(135deg, var(--coral-deep), var(--coral), var(--peach));

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 2px 16px rgba(0,0,0,.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.1);
  --shadow-glow:  0 4px 24px rgba(251,113,133,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Background ─────────────────────────────────────── */
.bg-mesh {
  position: fixed; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 10%, rgba(252,217,182,.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(167,139,250,.12) 0%, transparent 60%);
}

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4 { letter-spacing: -0.02em; font-weight: 800; line-height: 1.2; }

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────── */
.container { max-width:1320px; margin:0 auto; padding:0 24px; }
.section-pad { padding: 64px 0; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: sticky; top:0; z-index:100;
  background: rgba(250,248,245,.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar .container {
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}

.nav-brand {
  display:flex; align-items:center; gap:10px;
  font-size:1.35rem; font-weight:800; text-decoration:none; color:var(--text-primary);
}
.nav-brand svg { width:32px; height:32px; }

.nav-links { display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a {
  color:var(--text-secondary); text-decoration:none; font-size:.9rem; font-weight:600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--coral-deep); }

/* ── Search Bar ─────────────────────────────────────── */
.search-wrap { position:relative; width:260px; }
.search-wrap input {
  width:100%; padding:10px 14px 10px 38px; border-radius:var(--radius-md);
  border:1.5px solid var(--border-subtle); background:#fff; color:var(--text-primary);
  font-size:.88rem; outline:none; transition:border-color .2s, box-shadow .2s;
}
.search-wrap input:focus { border-color:var(--coral); box-shadow:0 0 0 3px rgba(251,113,133,.12); }
.search-wrap svg { position:absolute; left:12px; top:50%; transform:translateY(-50%); width:16px; height:16px; color:var(--text-muted); }

/* ── Cart Button ────────────────────────────────────── */
.cart-btn {
  position:relative; background:#fff; border:1.5px solid var(--border-subtle);
  border-radius:var(--radius-md); padding:8px 16px; cursor:pointer; color:var(--text-primary);
  display:flex; align-items:center; gap:8px; font-size:.88rem; font-weight:600;
  transition: border-color .2s, background .2s;
}
.cart-btn:hover { border-color:var(--coral); }
.cart-count {
  position:absolute; top:-7px; right:-7px; min-width:20px; height:20px; padding:0 5px; border-radius:999px;
  background: var(--gradient-cta); font-size:.68rem; font-weight:700; color:#fff;
  display:flex; align-items:center; justify-content:center;
}

/* ── Hero Section ───────────────────────────────────── */
.hero {
  padding:100px 0 60px; text-align:center; position:relative; overflow:hidden;
}
.hero::after {
  content:''; position:absolute; top:30%; left:50%; transform:translate(-50%,-50%);
  width:700px; height:700px; border-radius:50%; opacity:.4;
  background: radial-gradient(circle, rgba(252,217,182,.4) 0%, transparent 65%);
  pointer-events:none; z-index:-1;
}

.hero h1 { font-size:3.2rem; line-height:1.15; margin-bottom:18px; }
.hero p { font-size:1.15rem; color:var(--text-secondary); max-width:600px; margin:0 auto 32px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:8px; padding:14px 30px; border-radius:var(--radius-md);
  font-weight:700; font-size:.95rem; text-decoration:none; cursor:pointer; border:none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform:translateY(-2px); }
.btn-primary {
  background: var(--gradient-cta); color:#fff;
  box-shadow: 0 4px 18px rgba(251,113,133,.3);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(251,113,133,.45); }
.btn-outline {
  background:transparent; color:var(--coral-deep); border:1.5px solid var(--coral);
}
.btn-outline:hover { background:var(--bg-warm); box-shadow:var(--shadow-glow); }
.btn-sm { padding:12px 24px; font-size:.88rem; }

/* ── Filter Pills ───────────────────────────────────── */
.filters-bar {
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center;
  margin-bottom:48px; padding:0 24px;
}
.filter-pill {
  padding:9px 20px; border-radius:999px; font-size:.82rem; font-weight:600;
  background:#fff; border:1.5px solid var(--border-subtle); color:var(--text-secondary);
  cursor:pointer; transition: all .2s; user-select:none;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--gradient-cta); color:#fff; border-color:transparent;
  box-shadow:0 4px 16px rgba(251,113,133,.25);
}

/* ── Product Grid ───────────────────────────────────── */
.product-grid { display:grid; gap:28px; grid-template-columns:repeat(auto-fill, minmax(290px, 1fr)); }

/* ── Product Card ──────────────────────────────────── */
.product-card {
  background:var(--bg-card);
  border:1.5px solid var(--border-subtle);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
  cursor:pointer; position:relative;
}
.product-card:hover {
  transform:translateY(-5px) scale(1.012);
  border-color:rgba(251,113,133,.25);
  box-shadow: var(--shadow-hover), var(--shadow-glow);
}

.product-card .card-cover {
  width:100%; aspect-ratio:3/4; object-fit:cover; display:block;
  transition: transform .4s;
}
.product-card:hover .card-cover { transform:scale(1.04); }

.card-img-wrap { overflow:hidden; position:relative; }
.card-img-wrap::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:55%;
  background: linear-gradient(to top, rgba(250,248,245,.9), transparent); pointer-events:none;
}

.card-body { padding:16px 20px 20px; }
.card-niche {
  display:inline-block; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  color:var(--coral-deep); margin-bottom:8px; background:rgba(251,113,133,.08); padding:4px 12px; border-radius:999px;
}
.card-title { font-size:.98rem; font-weight:700; line-height:1.35; margin-bottom:6px; min-height:2.7em; }
.card-desc { font-size:.82rem; color:var(--text-secondary); margin-bottom:14px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

.card-footer { display:flex; align-items:center; justify-content:space-between; }
.card-price { font-size:1.3rem; font-weight:800; background:var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.card-add-btn {
  width:40px; height:40px; border-radius:50%; border:none;
  background:var(--bg-warm-alt); color:var(--coral-deep); font-size:1.3rem;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .2s, transform .2s;
}
.card-add-btn:hover { background:var(--gradient-cta); color:#fff; transform:scale(1.1); }

/* ── Featured Section ──────────────────────────────── */
.featured-row { display:flex; gap:32px; justify-content:center; flex-wrap:wrap; margin-bottom:48px; }
.featured-card {
  width:380px; padding:40px; border-radius:var(--radius-xl);
  background:#fff; border:1.5px solid var(--border-subtle);
  position:relative; overflow:hidden;
}
.featured-card::before {
  content:''; position:absolute; inset:-1px; border-radius:var(--radius-xl); padding:1px;
  background:var(--gradient-main); -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none;
}

.featured-card h3 { font-size:1.45rem; margin-bottom:10px; }
.featured-card p { color:var(--text-secondary); margin-bottom:24px; font-size:.9rem; line-height:1.6; }

/* ── Stats Bar ─────────────────────────────────────── */
.stats-bar { display:flex; justify-content:center; gap:64px; flex-wrap:wrap; padding:36px 0; border-top:1.5px solid var(--border-subtle); border-bottom:1.5px solid var(--border-subtle); margin-top:48px; }
.stat-item { text-align:center; }
.stat-num { font-size:2.2rem; font-weight:800; background:var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat-label { font-size:.82rem; color:var(--text-muted); margin-top:4px; text-transform:uppercase; letter-spacing:.06em; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  padding:48px 0 32px; text-align:center; border-top:1.5px solid var(--border-subtle); margin-top:80px; background:var(--bg-warm);
}
.footer-links { display:flex; justify-content:center; gap:32px; list-style:none; margin-bottom:24px; flex-wrap:wrap; }
.footer-links a { color:var(--text-secondary); text-decoration:none; font-size:.85rem; transition:color .2s; }
.footer-links a:hover { color:var(--coral-deep); }

/* ── Product Detail Page ───────────────────────────── */
.product-detail { display:grid; grid-template-columns:1fr 1fr; gap:64px; padding:80px 0 120px; align-items:start; }
.detail-cover { position:sticky; top:100px; border-radius:var(--radius-lg); overflow:hidden; }
.detail-cover img { width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-hover); }

.detail-info h1 { font-size:2.3rem; line-height:1.2; margin-bottom:12px; }
.detail-niche { display:inline-block; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--coral-deep); background:rgba(251,113,133,.08); padding:5px 14px; border-radius:999px; margin-bottom:18px; }
.detail-price { font-size:2.6rem; font-weight:800; background:var(--gradient-main); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:24px; }
.detail-desc { color:var(--text-secondary); font-size:.95rem; line-height:1.75; margin-bottom:32px; }

.detail-features { list-style:none; margin-bottom:36px; }
.detail-features li { padding:10px 0; border-bottom:1px solid var(--border-subtle); display:flex; align-items:center; gap:12px; font-size:.9rem; color:var(--text-secondary); }
.detail-features li svg { width:18px; height:18px; color:var(--sage); flex-shrink:0; }

.detail-actions { display:flex; gap:14px; margin-bottom:48px; flex-wrap:wrap; }

.guarantee-badge { display:flex; align-items:center; gap:12px; background:rgba(134,176,77,.06); border:1.5px solid rgba(134,176,77,.18); padding:14px 20px; border-radius:var(--radius-md); margin-top:32px; }
.guarantee-badge svg { width:24px; height:24px; color:var(--sage); flex-shrink:0; }
.guarantee-badge p { font-size:.82rem; color:var(--text-secondary); }

/* ── Cart Drawer ───────────────────────────────────── */
.cart-overlay { position:fixed; inset:0; background:rgba(45,42,38,.4); z-index:999; opacity:0; pointer-events:none; transition:opacity .3s; }
.cart-overlay.open { opacity:1; pointer-events:auto; }

.cart-drawer {
  position:fixed; top:0; right:0; bottom:0; width:420px; max-width:92vw; z-index:1000;
  background:#fff; border-left:1.5px solid var(--border-subtle); display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.8,.2,1);
}
.cart-overlay.open .cart-drawer { transform:translateX(0); }

.cart-header { padding:24px; border-bottom:1.5px solid var(--border-subtle); display:flex; align-items:center; justify-content:space-between; flex-shrink:0; }
.cart-header h3 { font-size:1.15rem; }
.cart-close { background:none; border:none; color:var(--text-secondary); cursor:pointer; font-size:1.4rem; padding:4px; }

.cart-items { flex:1; overflow-y:auto; padding:20px; }
.cart-item { display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--border-subtle); align-items:center; }
.cart-item img { width:52px; height:70px; object-fit:cover; border-radius:var(--radius-sm); flex-shrink:0; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-title { font-size:.85rem; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-item-price { font-size:.95rem; font-weight:700; color:var(--coral-deep); margin-top:4px; }
.cart-item-remove { background:none; border:none; color:var(--text-muted); cursor:pointer; font-size:1.1rem; padding:4px; transition:color .2s; }
.cart-item-remove:hover { color:#ef4444; }

.cart-empty { text-align:center; padding:60px 20px; color:var(--text-muted); }
.cart-empty svg { width:48px; height:48px; margin-bottom:16px; }

.cart-footer { padding:24px; border-top:1.5px solid var(--border-subtle); flex-shrink:0; }
.cart-total { display:flex; justify-content:space-between; font-size:1.15rem; font-weight:700; margin-bottom:16px; }
.cart-checkout-btn { width:100%; text-align:center; justify-content:center; }

/* ── Toast Notification ─────────────────────────────── */
.toast-container { position:fixed; bottom:24px; right:24px; z-index:2000; display:flex; flex-direction:column; gap:10px; }
.toast {
  background:#fff; border:1.5px solid var(--border-subtle); border-radius:var(--radius-md); padding:14px 20px;
  box-shadow:var(--shadow-hover); display:flex; align-items:center; gap:10px; font-size:.88rem; color:var(--text-primary);
  animation: toastIn .3s ease, toastOut .3s ease 2.7s forwards;
}
.toast svg { width:20px; height:20px; color:var(--sage); flex-shrink:0; }

@keyframes toastIn { from { transform:translateX(100%); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes toastOut { from { opacity:1; } to { opacity:0; transform:translateY(20px); } }

/* ── Reviews Section ─────────────────────────────────── */
.reviews-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(300px, 1fr)); gap:24px; margin-top:32px; }
.review-card { background:#fff; border:1.5px solid var(--border-subtle); border-radius:var(--radius-md); padding:24px; }
.review-stars { color:#f59e0b; font-size:.9rem; margin-bottom:12px; }
.review-text { font-size:.88rem; color:var(--text-secondary); margin-bottom:14px; line-height:1.6; }
.review-author { font-size:.78rem; font-weight:600; color:var(--text-muted); }

/* ── Newsletter Section ─────────────────────────────── */
.newsletter-box { max-width:520px; margin:0 auto; text-align:center; background:#fff; border:1.5px solid var(--border-subtle); border-radius:var(--radius-lg); padding:32px 28px; }
.newsletter-form { display:flex; gap:10px; margin-top:20px; }
.newsletter-form input { flex:1; padding:12px 16px; border-radius:var(--radius-md); border:1.5px solid var(--border-subtle); background:#faf8f5; color:var(--text-primary); font-size:.9rem; outline:none; }
.newsletter-form input:focus { border-color:var(--coral); }

/* ── Back Button ────────────────────────────────────── */
.back-btn { display:inline-flex; align-items:center; gap:6px; color:var(--text-secondary); text-decoration:none; font-size:.88rem; padding:8px 0; margin-bottom:24px; transition:color .2s; }
.back-btn:hover { color:var(--coral-deep); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width:900px) {
  .hero h1 { font-size:2.4rem; }
  .product-detail { grid-template-columns:1fr; gap:32px; }
  .detail-cover { position:static; }
  .featured-row { flex-direction:column; align-items:center; }
  .stats-bar { gap:32px; }
}

@media (max-width:600px) {
  .hero h1 { font-size:1.9rem; }
  .product-grid { grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); }
  .filters-bar { gap:8px; }
  .filter-pill { font-size:.75rem; padding:7px 14px; }
  .search-wrap { width:180px; }
  .nav-links a:not(.cart-btn) { display:none; }
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
.animate-in { animation: fadeUp .6s ease both; }
.delay-1 { animation-delay:.1s; }
.delay-2 { animation-delay:.2s; }
.delay-3 { animation-delay:.3s; }
.delay-4 { animation-delay:.4s; }

.card-add-btn.added { background:var(--sage); color:#fff; animation:pulse .5s ease; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }

/* ── Product Hero (Landing Pages) ─────────────────── */
.product-hero { padding: 60px 0 48px; }
.product-hero .container { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

.badge-tag {
  display: inline-block; padding: 6px 18px; background: var(--gradient-cta); color: #fff;
  font-size: .72rem; font-weight: 700; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 2.5rem; line-height: 1.2; margin-bottom: 12px;
}

.star-rating { color: #f59e0b; font-size: 1.1rem; margin-bottom: 6px; letter-spacing: 2px; }
.review-count { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.review-count strong { color: #f59e0b; }

.price-box {
  background: rgba(251,113,133,.06); border: 1.5px solid rgba(251,113,133,.15);
  border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px;
}
.price-original { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.price-current { font-size: 2.8rem; font-weight: 800; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.save-badge { font-size: .78rem; color: var(--coral-deep); font-weight: 700; }

.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #fff;
  border: 1.5px solid var(--border-subtle); border-radius: 999px;
  padding: 8px 16px; font-size: .8rem; color: var(--text-secondary);
}
.trust-badge span { font-size: 1rem; }

.cta-section { text-align: center; margin-bottom: 32px; }
.cta-btn-large {
  display: inline-flex; align-items: center; gap: 8px; padding: 18px 40px;
  background: var(--gradient-cta); color: #fff; font-size: 1.1rem; font-weight: 700;
  border-radius: var(--radius-md); text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(251,113,133,.3); transition: transform .2s, box-shadow .2s;
  border: none;
}
.cta-btn-large:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(251,113,133,.45); }

.guarantee-promo {
  background: rgba(134,176,77,.06); border: 1.5px solid rgba(134,176,77,.18);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 40px;
}
.guarantee-promo h3 { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 8px; }

.who-is-this-for { background: #fff; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; }
.who-list { list-style: none; }
.who-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: .9rem; color: var(--text-secondary); }
.who-list li:last-child { border-bottom: none; }

.related-heading { font-size: 1.3rem; margin-bottom: 20px; color: var(--coral-deep); }
.related-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.related-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 24px;
  text-align: center; transition: transform .2s, box-shadow .2s;
  border: 1.5px solid var(--border-subtle); text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.related-card img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 12px; }
.related-card h3 { font-size: .95rem; margin-bottom: 6px; color: var(--text-primary); line-height: 1.3; }
.related-badge { display: inline-block; padding: 4px 12px; background: rgba(251,113,133,.1); color: var(--coral-deep); font-size: .7rem; font-weight: 600; border-radius: 999px; }

.urgency-bar {
  background: linear-gradient(135deg, rgba(251,113,133,.12), rgba(245,158,11,.1));
  border: 1.5px solid rgba(251,113,133,.2); border-radius: var(--radius-md);
  padding: 10px 18px; text-align: center; font-size: .85rem; color: var(--coral-deep); font-weight: 600; margin-bottom: 24px;
}
.urgency-bar span { font-weight: 800; }

/* ── Bundles Section ─────────────────────────────── */
.bundles-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 960px; margin: 0 auto; }
.bundle-card {
  background: #fff; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 32px; position: relative; transition: transform .3s, box-shadow .3s;
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover), var(--shadow-glow); }
.bundle-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-cta); color: #fff; padding: 6px 24px; border-radius: 0 0 12px 12px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.bundle-card.featured { border-color: var(--coral); box-shadow: 0 4px 24px rgba(251,113,133,.2); }
.bundle-name { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.bundle-price { font-size: 2.4rem; font-weight: 800; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.bundle-save { font-size: .78rem; color: var(--coral-deep); font-weight: 700; margin-bottom: 16px; }
.bundle-items { list-style: none; margin-bottom: 24px; }
.bundle-items li { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: .85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.bundle-cta {
  display: block; width: 100%; text-align: center; padding: 14px; border-radius: var(--radius-md);
  background: var(--gradient-cta); color: #fff; font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.bundle-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(251,113,133,.35); }
.value-bar { max-width: 800px; margin: 32px auto 0; text-align: center; }
.value-bar p { font-size: .9rem; color: var(--text-secondary); margin-bottom: 12px; }
.value-bar-track { display: flex; height: 12px; border-radius: 6px; overflow: hidden; background: #e5e7eb; }
.value-bar-fill-solo { height: 100%; background: var(--sage); width: 30%; }
.value-bar-fill-bundle { height: 100%; background: var(--gradient-cta); width: 70%; }
.value-bar-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: .72rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .product-hero .container { grid-template-columns: 1fr; }
  .detail-cover { position: static !important; }
}

/* ── Product Hero (Landing Pages) ─────────────────── */
.product-hero { padding: 60px 0 48px; }
.product-hero .container { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

.badge-tag {
  display: inline-block; padding: 6px 18px; background: var(--gradient-cta); color: #fff;
  font-size: .72rem; font-weight: 700; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 2.5rem; line-height: 1.2; margin-bottom: 12px;
}

.star-rating { color: #f59e0b; font-size: 1.1rem; margin-bottom: 6px; letter-spacing: 2px; }
.review-count { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.review-count strong { color: #f59e0b; }

.price-box {
  background: rgba(251,113,133,.06); border: 1.5px solid rgba(251,113,133,.15);
  border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px;
}
.price-original { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.price-current { font-size: 2.8rem; font-weight: 800; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.save-badge { font-size: .78rem; color: var(--coral-deep); font-weight: 700; }

.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #fff;
  border: 1.5px solid var(--border-subtle); border-radius: 999px;
  padding: 8px 16px; font-size: .8rem; color: var(--text-secondary);
}
.trust-badge span { font-size: 1rem; }

.cta-section { text-align: center; margin-bottom: 32px; }
.cta-btn-large {
  display: inline-flex; align-items: center; gap: 8px; padding: 18px 40px;
  background: var(--gradient-cta); color: #fff; font-size: 1.1rem; font-weight: 700;
  border-radius: var(--radius-md); text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(251,113,133,.3); transition: transform .2s, box-shadow .2s;
  border: none;
}
.cta-btn-large:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(251,113,133,.45); }

.guarantee-promo {
  background: rgba(134,176,77,.06); border: 1.5px solid rgba(134,176,77,.18);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 40px;
}
.guarantee-promo h3 { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 8px; }

.who-is-this-for { background: #fff; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; }
.who-list { list-style: none; }
.who-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: .9rem; color: var(--text-secondary); }
.who-list li:last-child { border-bottom: none; }

.related-heading { font-size: 1.3rem; margin-bottom: 20px; color: var(--coral-deep); }
.related-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.related-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 24px;
  text-align: center; transition: transform .2s, box-shadow .2s;
  border: 1.5px solid var(--border-subtle); text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.related-card img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 12px; }
.related-card h3 { font-size: .95rem; margin-bottom: 6px; color: var(--text-primary); line-height: 1.3; }
.related-badge { display: inline-block; padding: 4px 12px; background: rgba(251,113,133,.1); color: var(--coral-deep); font-size: .7rem; font-weight: 600; border-radius: 999px; }

.urgency-bar {
  background: linear-gradient(135deg, rgba(251,113,133,.12), rgba(245,158,11,.1));
  border: 1.5px solid rgba(251,113,133,.2); border-radius: var(--radius-md);
  padding: 10px 18px; text-align: center; font-size: .85rem; color: var(--coral-deep); font-weight: 600; margin-bottom: 24px;
}
.urgency-bar span { font-weight: 800; }

/* ── Bundles Section ─────────────────────────────── */
.bundles-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 960px; margin: 0 auto; }
.bundle-card {
  background: #fff; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-xl);
  padding: 32px; position: relative; transition: transform .3s, box-shadow .3s;
}
.bundle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover), var(--shadow-glow); }
.bundle-popular {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-cta); color: #fff; padding: 6px 24px; border-radius: 0 0 12px 12px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.bundle-card.featured { border-color: var(--coral); box-shadow: 0 4px 24px rgba(251,113,133,.2); }
.bundle-name { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.bundle-price { font-size: 2.4rem; font-weight: 800; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.bundle-save { font-size: .78rem; color: var(--coral-deep); font-weight: 700; margin-bottom: 16px; }
.bundle-items { list-style: none; margin-bottom: 24px; }
.bundle-items li { padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: .85rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.bundle-cta {
  display: block; width: 100%; text-align: center; padding: 14px; border-radius: var(--radius-md);
  background: var(--gradient-cta); color: #fff; font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.bundle-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(251,113,133,.35); }
.value-bar { max-width: 800px; margin: 32px auto 0; text-align: center; }
.value-bar p { font-size: .9rem; color: var(--text-secondary); margin-bottom: 12px; }
.value-bar-track { display: flex; height: 12px; border-radius: 6px; overflow: hidden; background: #e5e7eb; }
.value-bar-fill-solo { height: 100%; background: var(--sage); width: 30%; }
.value-bar-fill-bundle { height: 100%; background: var(--gradient-cta); width: 70%; }
.value-bar-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: .72rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .product-hero .container { grid-template-columns: 1fr; }
  .detail-cover { position: static !important; }
}

/* ── Product Hero Styles (NEW) ─────────────────────── */
.product-hero { padding: 60px 0 48px; }
.product-hero .container { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

.badge-tag {
  display: inline-block; padding: 6px 18px; background: var(--gradient-cta); color: #fff;
  font-size: .72rem; font-weight: 700; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 2.5rem; line-height: 1.2; margin-bottom: 12px;
}

.star-rating { color: #f59e0b; font-size: 1.1rem; margin-bottom: 6px; letter-spacing: 2px; }
.review-count { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.review-count strong { color: #f59e0b; }

.price-box {
  background: rgba(251,113,133,.06); border: 1.5px solid rgba(251,113,133,.15);
  border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px;
}
.price-original { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.price-current { font-size: 2.8rem; font-weight: 800; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.save-badge { font-size: .78rem; color: var(--coral-deep); font-weight: 700; }

.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #fff;
  border: 1.5px solid var(--border-subtle); border-radius: 999px;
  padding: 8px 16px; font-size: .8rem; color: var(--text-secondary);
}
.trust-badge span { font-size: 1rem; }

.cta-section { text-align: center; margin-bottom: 32px; }
.cta-btn-large {
  display: inline-flex; align-items: center; gap: 8px; padding: 18px 40px;
  background: var(--gradient-cta); color: #fff; font-size: 1.1rem; font-weight: 700;
  border-radius: var(--radius-md); text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(251,113,133,.3); transition: transform .2s, box-shadow .2s;
  border: none;
}
.cta-btn-large:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(251,113,133,.45); }

.guarantee-promo {
  background: rgba(134,176,77,.06); border: 1.5px solid rgba(134,176,77,.18);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 40px;
}
.guarantee-promo h3 { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 8px; }

.who-is-this-for { background: #fff; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; }
.who-list { list-style: none; }
.who-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: .9rem; color: var(--text-secondary); }
.who-list li:last-child { border-bottom: none; }

.related-heading { font-size: 1.3rem; margin-bottom: 20px; color: var(--coral-deep); }
.related-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.related-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 24px;
  text-align: center; transition: transform .2s, box-shadow .2s;
  border: 1.5px solid var(--border-subtle); text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.related-card img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 12px; }
.related-card h3 { font-size: .95rem; margin-bottom: 6px; color: var(--text-primary); line-height: 1.3; }
.related-badge { display: inline-block; padding: 4px 12px; background: rgba(251,113,133,.1); color: var(--coral-deep); font-size: .7rem; font-weight: 600; border-radius: 999px; }

.urgency-bar {
  background: linear-gradient(135deg, rgba(251,113,133,.12), rgba(245,158,11,.1));
  border: 1.5px solid rgba(251,113,133,.2); border-radius: var(--radius-md);
  padding: 10px 18px; text-align: center; font-size: .85rem; color: var(--coral-deep); font-weight: 600; margin-bottom: 24px;
}
.urgency-bar span { font-weight: 800; }

@media (max-width: 900px) {
  .product-hero .container { grid-template-columns: 1fr; }
  .detail-cover { position: static !important; }
}

/* ── Product Hero (Landing Pages) ─────────────────── */
.product-hero { padding: 60px 0 48px; }
.product-hero .container { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

.badge-tag {
  display: inline-block; padding: 6px 18px; background: var(--gradient-cta); color: #fff;
  font-size: .72rem; font-weight: 700; border-radius: 999px; text-transform: uppercase;
  letter-spacing: .05em; margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 2.5rem; line-height: 1.2; margin-bottom: 12px;
}

.star-rating { color: #f59e0b; font-size: 1.1rem; margin-bottom: 6px; letter-spacing: 2px; }
.review-count { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.review-count strong { color: #f59e0b; }

.price-box {
  background: rgba(251,113,133,.06); border: 1.5px solid rgba(251,113,133,.15);
  border-radius: var(--radius-md); padding: 20px; margin-bottom: 24px;
}
.price-original { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; }
.price-current { font-size: 2.8rem; font-weight: 800; background: var(--gradient-cta); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.save-badge { font-size: .78rem; color: var(--coral-deep); font-weight: 700; }

.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #fff;
  border: 1.5px solid var(--border-subtle); border-radius: 999px;
  padding: 8px 16px; font-size: .8rem; color: var(--text-secondary);
}
.trust-badge span { font-size: 1rem; }

.cta-section { text-align: center; margin-bottom: 32px; }
.cta-btn-large {
  display: inline-flex; align-items: center; gap: 8px; padding: 18px 40px;
  background: var(--gradient-cta); color: #fff; font-size: 1.1rem; font-weight: 700;
  border-radius: var(--radius-md); text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(251,113,133,.3); transition: transform .2s, box-shadow .2s;
  border: none;
}
.cta-btn-large:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(251,113,133,.45); }

.guarantee-promo {
  background: rgba(134,176,77,.06); border: 1.5px solid rgba(134,176,77,.18);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 40px;
}
.guarantee-promo h3 { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 8px; }

.who-is-this-for { background: #fff; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; }
.who-list { list-style: none; }
.who-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: .9rem; color: var(--text-secondary); }
.who-list li:last-child { border-bottom: none; }

.related-heading { font-size: 1.3rem; margin-bottom: 20px; color: var(--coral-deep); }
.related-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.related-card {
  background: var(--bg-card); border-radius: var(--radius-md); padding: 24px;
  text-align: center; transition: transform .2s, box-shadow .2s;
  border: 1.5px solid var(--border-subtle); text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.related-card img { width: 100%; height: 140px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 12px; }
.related-card h3 { font-size: .95rem; margin-bottom: 6px; color: var(--text-primary); line-height: 1.3; }
.related-badge { display: inline-block; padding: 4px 12px; background: rgba(251,113,133,.1); color: var(--coral-deep); font-size: .7rem; font-weight: 600; border-radius: 999px; }

.urgency-bar {
  background: linear-gradient(135deg, rgba(251,113,133,.12), rgba(245,158,11,.1));
  border: 1.5px solid rgba(251,113,133,.2); border-radius: var(--radius-md);
  padding: 10px 18px; text-align: center; font-size: .85rem; color: var(--coral-deep); font-weight: 600; margin-bottom: 24px;
}
.urgency-bar span { font-weight: 800; }

@media (max-width: 900px) {
  .product-hero .container { grid-template-columns: 1fr; }
  .detail-cover { position: static !important; }
}

/* ── Enhanced Product Page Components ─────────────── */
.faq-item { padding-bottom: 20px !important; margin-bottom: 8px !important; }
.faq-item h3:hover { color: var(--coral-deep) !important; cursor: pointer; }
.benefits-grid > div:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); transition: all .2s; }
.chapter-number { display: flex; align-items: center; justify-content: center; }
.cs-skipped { border-style: dashed !important; }

@media (max-width: 600px) {
  .faq-item { padding-left: 4px !important; }
}

/* ── Mobile Responsiveness ───────────────────────── */
@media (max-width: 768px) {
  /* Section padding - tighten for mobile */
  .section-pad { padding: 40px 0 !important; }
  
  /* Container full width on mobile with smaller side margins */
  .container { padding: 0 16px !important; max-width: 100% !important; }
  
  /* Hero section - stack vertically */
  .product-hero { padding: 32px 0 !important; }
  .product-hero .container,
  .detail-cover + .detail-info { 
    grid-template-columns: 1fr !important; 
    gap: 24px !important; 
  }
  
  /* Cover image on mobile */
  .detail-cover img { max-width: 100% !important; height: auto !important; }
  .detail-info { padding-left: 0 !important; margin-top: -8px; }
  
  /* Title size smaller on mobile */
  h1.gradient-text, .product-hero .gradient-text { 
    font-size: 1.8rem !important; 
    line-height: 1.25 !important; 
  }
  
  /* Price box adjustments */
  .price-box { padding: 16px !important; }
  .price-current { font-size: 2rem !important; }
  .price-original { font-size: 1rem !important; }
  
  /* CTA button full width on mobile */
  .cta-btn-large, .btn.btn-primary { 
    width: 100% !important; 
    padding: 16px 24px !important; 
    font-size: 1rem !important; 
    justify-content: center !important; 
    box-shadow: none !important;
  }
  
  /* Trust badges stack */
  .trust-badges { gap: 8px !important; }
  .trust-badge { padding: 6px 12px !important; font-size: .75rem !important; }
  
  /* Benefit cards stack on mobile */
  .section-pad .container > div[style*="grid-template-columns"] { 
    grid-template-columns: 1fr !important; 
    gap: 12px !important; 
  }
  
  /* Stats bar - vertical on mobile */
  .container > div[style*="display:flex;gap:24px"] { 
    flex-direction: column !important; 
    align-items: center !important; 
    gap: 16px !important; 
  }
  .container > div[style*="display:flex;gap:24px"] > div[style*="width:1px"] { display: none !important; }
  
  /* Reviews grid - single column on mobile */
  [style*="grid-template-columns:repeat(auto-fit,minmax(300px,1fr))"],
  [style*="grid-template-columns:repeat(auto-fill,minmax(280px,1fr))"] { 
    grid-template-columns: 1fr !important; 
    gap: 12px !important; 
  }
  
  /* FAQ items */
  .faq-item h3 { font-size: .9rem !important; line-height: 1.4 !important; }
  .faq-item p { font-size: .82rem !important; line-height: 1.6 !important; }
  
  /* Related products - single column */
  #relatedGrid { 
    grid-template-columns: 1fr !important; 
    gap: 16px !important; 
  }
  .related-product { padding: 16px !important; }
  .related-product img { height: 120px !important; }
  
  /* Who is this for */
  .who-is-this-for { padding: 20px !important; }
  .who-list li { font-size: .85rem !important; gap: 8px !important; padding: 8px 0 !important; }
  
  /* Guarantee box */
  .guarantee-promo { padding: 20px !important; margin: 24px 0 !important; }
  .guarantee-promo h3 { font-size: 1.1rem !important; }
  
  /* Benefits cards */
  .section-pad > .container > div[style*="grid-template-columns"] { 
    grid-template-columns: 1fr !important; 
  }
  
  /* Section titles */
  h2.gradient-text, .gradient-text { font-size: 1.3rem !important; }
  
  /* Product detail grid */
  .product-detail { grid-template-columns: 1fr !important; gap: 0 !important; }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .section-pad { padding: 28px 0 !important; }
  h1.gradient-text, .product-hero .gradient-text { font-size: 1.5rem !important; }
  .star-rating { font-size: 1rem !important; }
  .price-current { font-size: 1.7rem !important; }
  .review-card { padding: 16px !important; }
  .benefit-card, [style*="padding:24px"] { padding: 16px !important; }
  .trust-badges { flex-direction: column !important; align-items: flex-start !important; }
  
  /* Stats on tiny screens */
  .container > div[style*="display:flex;gap:24px"] { 
    gap: 12px !important; 
  }
  .container > div[style*="display:flex;gap:24px"] > div { text-align: center; }
}
