/* shop.css — Product page + thank-you page styles
   Brand tokens live in theme.css. This file is shop-specific layout + components.
   Uses the same CSS variables set in theme.css (--bg, --accent, --rose, etc.) */

/* ===== SHARED NAV ===== */
.shop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--accent-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo:hover { color: var(--rose); }

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ===== SHOP HERO ===== */
.shop-hero {
  padding: 72px 24px 56px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 50%, var(--rose-light) 100%);
  text-align: center;
}

.shop-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.shop-hero .hero-badge {
  display: inline-block;
  padding: 5px 18px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 28px;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.shop-hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.shop-hero p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== PRICING SECTION ===== */
.shop-pricing {
  padding: 64px 24px 48px;
  background: var(--bg);
}

.shop-pricing-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Card */
.tier-card {
  background: var(--cream);
  border: 1.5px solid var(--accent-light);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 149, 106, 0.15);
}

.tier-featured {
  border-color: var(--rose);
  background: linear-gradient(145deg, var(--cream) 0%, var(--rose-light) 100%);
  box-shadow: 0 8px 32px rgba(212, 132, 124, 0.2);
}

.tier-featured:hover {
  box-shadow: 0 16px 48px rgba(212, 132, 124, 0.28);
}

/* Featured badge */
.tier-badge-wrap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.tier-featured-badge {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Header */
.tier-header {
  margin-bottom: 20px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}

.tier-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* Price */
.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.tier-dollar {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
}

.tier-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.tier-once {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-left: 4px;
}

/* Features list */
.tier-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  font-weight: 700;
}

.tier-featured .check {
  background: var(--rose);
}

/* CTA button */
.tier-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.02em;
}

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

.tier-cta-featured {
  background: var(--rose);
  color: #fff;
}

.tier-cta-featured:hover {
  background: #c0706a;
}

.tier-secure {
  text-align: center;
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 10px;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--accent-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.trust-icon { font-size: 1.1rem; }

/* ===== WHAT'S INSIDE ===== */
.shop-inside {
  padding: 72px 24px;
  background: var(--bg-warm);
}

.shop-inside-inner {
  max-width: 960px;
  margin: 0 auto;
}

.shop-inside h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 48px;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.inside-card {
  background: var(--cream);
  border: 1px solid var(--accent-light);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s ease;
}

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

.inside-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.inside-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.inside-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.shop-faq {
  padding: 72px 24px;
  background: var(--bg);
}

.shop-faq-inner {
  max-width: 680px;
  margin: 0 auto;
}

.shop-faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 40px;
}

.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  border: 1px solid var(--accent-light);
  border-radius: 12px;
  padding: 22px 24px;
  background: var(--cream);
}

.faq-q {
  font-weight: 600;
  color: var(--fg);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== BOTTOM CTA ===== */
.shop-bottom-cta {
  padding: 80px 24px;
  background: linear-gradient(145deg, var(--bg-dark) 0%, #3d1f14 100%);
  text-align: center;
}

.shop-bottom-inner { max-width: 560px; margin: 0 auto; }

.shop-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.shop-bottom-cta h2 em {
  font-style: italic;
  color: var(--accent-light);
}

.shop-bottom-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.bottom-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(212, 132, 124, 0.35);
}

.bottom-cta-btn:hover {
  background: #c0706a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 132, 124, 0.45);
}

/* ===== FOOTER ===== */
.shop-footer {
  padding: 32px 24px;
  background: var(--bg);
  border-top: 1px solid var(--accent-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.shop-footer p, .shop-footer a {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.shop-footer a:hover { color: var(--rose); }

/* ===== THANK-YOU PAGE ===== */
.thankyou-hero {
  min-height: 100vh;
  padding: 60px 24px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-warm) 50%, var(--rose-light) 100%);
}

.thankyou-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Confirm card */
.confirm-card {
  background: var(--cream);
  border: 1.5px solid var(--accent-light);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.confirm-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4caf7d;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.confirm-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.confirm-pack {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.confirm-email {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Download section */
.download-section {
  background: var(--cream);
  border: 1.5px solid var(--accent-light);
  border-radius: 20px;
  padding: 40px;
}

.download-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.download-hint {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.download-btn:hover {
  background: var(--bg-dark);
  transform: translateX(2px);
}

.download-icon { font-size: 1.1rem; }

.download-label { flex: 1; }

.download-arrow {
  font-size: 0.9rem;
  opacity: 0.6;
}

.download-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--rose-light);
  border: 1px solid rgba(212, 132, 124, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.notice-icon { flex-shrink: 0; font-size: 1rem; }

/* Next steps */
.next-steps {
  background: var(--cream);
  border: 1.5px solid var(--accent-light);
  border-radius: 20px;
  padding: 40px;
}

.next-steps h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.steps-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 4px;
}

.steps-list li p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0;
}

/* Upsell nudge */
.upsell-nudge {
  text-align: center;
  padding: 28px;
  background: var(--rose-light);
  border: 1px solid rgba(212, 132, 124, 0.3);
  border-radius: 16px;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.upsell-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  font-size: 1rem;
}

.upsell-link:hover { color: #c0706a; }

/* Footer links */
.thankyou-footer-links {
  text-align: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-bottom: 32px;
}

.thankyou-footer-links a {
  color: var(--accent-dark);
  text-decoration: none;
}

.thankyou-footer-links a:hover { color: var(--rose); }

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .shop-nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .tiers-grid { grid-template-columns: 1fr; }
  .tier-card { padding: 28px 24px; }
  .confirm-card { padding: 32px 24px; }
  .download-section, .next-steps { padding: 28px 24px; }
  .inside-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 10px 20px; }
}

@media (max-width: 400px) {
  .inside-grid { grid-template-columns: 1fr; }
}
