/* ============================================
   Goddess Manifest — Link-in-Bio Site Styles
   ============================================ */

/* --- Custom Properties --- */
:root {
  --black: #000000;
  --charcoal: #1a1a1a;
  --dark-gray: #0a0a0a;
  --white: #ffffff;
  --gold: #D4A843;
  --warm-gold: #C9963C;
  --muted-gold: #B8A88A;
  --gold-glow: rgba(212, 168, 67, 0.15);
  --gold-border: rgba(212, 168, 67, 0.3);
  --text-secondary: #999999;
  --max-width: 480px;
  --gap: 14px;
  --radius: 16px;
}

/* --- Font Faces --- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered fade for hub buttons */
.hub-links .fade-in:nth-child(1) { transition-delay: 0.1s; }
.hub-links .fade-in:nth-child(2) { transition-delay: 0.2s; }
.hub-links .fade-in:nth-child(3) { transition-delay: 0.3s; }
.hub-links .fade-in:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   PAGE 1: Hub (index.html)
   ============================================ */

.hub {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 32px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hub-header {
  text-align: center;
  margin-bottom: 32px;
}

.hub-logo {
  margin: 0 auto 16px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: var(--warm-gold);
  letter-spacing: 4px;
  margin-bottom: 4px;
}

@media (min-width: 480px) {
  .brand-name {
    font-size: 11px;
    letter-spacing: 5px;
  }
}

.hub-descriptor {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hub-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .hub-tagline {
    font-size: 24px;
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: var(--gold);
  transition: all 0.2s;
}

.social-icons a svg {
  width: 28px;
  height: 28px;
}

.social-icons a:hover {
  color: var(--warm-gold);
  filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.4));
}

/* Hub Cards */
.hub-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: auto;
}

.hub-card {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--charcoal);
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--white);
}

.hub-card:hover {
  transform: scale(1.02);
  opacity: 1;
}

.hub-card-primary {
  border: 1px solid var(--gold-border);
}

.hub-card-primary:hover {
  box-shadow: 0 0 24px rgba(212, 168, 67, 0.25);
  border-color: var(--gold);
}

.hub-card-secondary {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-card-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.hub-card-image {
  width: 100%;
  overflow: hidden;
}

.hub-card-bg {
  width: 100%;
  height: auto;
  display: block;
}

.hub-card-body {
  padding: 20px 20px 22px;
}

.hub-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hub-card-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--muted-gold);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hub-card-cta {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border-radius: 12px;
  transition: box-shadow 0.3s;
}

.hub-card:hover .hub-card-cta {
  box-shadow: 0 0 16px rgba(212, 168, 67, 0.3);
}

.hub-card-cta-secondary {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
}

.hub-card:hover .hub-card-cta-secondary {
  border-color: var(--gold);
  box-shadow: none;
}

/* Hub Footer */
.hub-footer {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hub-footer-logo {
  opacity: 0.5;
  border-radius: 50%;
}

.hub-footer p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--muted-gold);
}

/* ============================================
   PAGE 2: Offer (offer.html)
   ============================================ */

.offer-page {
  padding-bottom: 72px; /* Space for sticky CTA on mobile */
}

@media (min-width: 768px) {
  .offer-page {
    padding-bottom: 0;
  }
}

/* Nav */
.offer-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
}

.back-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted-gold);
}

.back-link:hover {
  color: var(--gold);
}

/* Hero */
.offer-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px 24px;
  text-align: center;
}

.offer-logo {
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.offer-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.3;
  color: var(--gold);
}

@media (min-width: 768px) {
  .offer-headline {
    font-size: 34px;
  }
}

/* Sales Copy */
.offer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sales-copy {
  margin-bottom: 32px;
}

.sales-copy p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.sales-copy em {
  color: var(--gold);
  font-style: italic;
}

.sales-transition {
  color: var(--white) !important;
  font-weight: 400;
}

/* Regan Intro */
.regan-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--gold-border);
}

.regan-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-border);
}

.regan-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}

.regan-bio p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 400px) {
  .regan-intro {
    flex-direction: column;
    text-align: center;
  }
}

/* Product Card */
.product-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-bottom: 48px;
}

.product-hero-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}

.product-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted-gold);
  text-align: center;
  margin-bottom: 24px;
}

/* Features List */
.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon.bonus {
  color: var(--warm-gold);
}

/* MRR Callout */
.mrr-callout {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 28px;
  background: rgba(212, 168, 67, 0.05);
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mrr-content {
  flex: 1;
}

.mrr-callout p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

.mrr-phone {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Lifestyle Image */
.lifestyle-image {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lifestyle-img {
  width: 100%;
  border-radius: var(--radius);
  opacity: 0.85;
}

/* Price Block */
.price-block {
  text-align: center;
  margin-bottom: 20px;
}

.price {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}

.price-detail {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--muted-gold);
}

/* Section Divider */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin: 32px auto;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  box-shadow: 0 0 24px rgba(212, 168, 67, 0.4);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.cta-button.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--black);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Checkout Container */
.checkout-container {
  margin-top: 20px;
  min-height: 0;
  transition: min-height 0.3s ease;
}

.checkout-container.active {
  min-height: 400px;
}

/* Trust Row */
.trust-row {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.trust-item {
  display: inline;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
}

.testimonial-card {
  background: var(--charcoal);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px;
  margin-bottom: 16px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-photo {
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 18px;
}

/* ============================================
   Email Capture
   ============================================ */

.email-capture {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 48px;
  text-align: center;
}

.email-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.email-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.email-input::placeholder {
  color: var(--text-secondary);
}

.email-input:focus {
  border-color: var(--gold);
}

.email-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.email-submit:hover {
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.email-disclaimer {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ============================================
   Footer
   ============================================ */

.offer-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-footer .hub-footer-logo {
  margin-bottom: 12px;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--muted-gold);
  letter-spacing: 6px;
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.disclaimer-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.disclaimer-toggle:hover {
  color: var(--muted-gold);
}

.disclaimer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
}

.disclaimer-content.open {
  max-height: 600px;
}

.disclaimer-content p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* ============================================
   Sticky Mobile CTA
   ============================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-gray);
  border-top: 1px solid var(--gold-border);
  padding: 12px 24px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 12px;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.sticky-cta-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hide sticky CTA on desktop */
@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }

  .offer-page {
    padding-bottom: 0;
  }
}

/* ============================================
   PAGE 3: Success (success.html)
   ============================================ */

.success {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-logo {
  margin-bottom: 24px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.25);
}

.success-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.3;
}

.success-copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.6;
}

.success-steps {
  text-align: left;
  margin: 32px 0;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
}

.success-steps-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}

.success-steps ol {
  padding-left: 20px;
}

.success-steps li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.success-steps li::marker {
  color: var(--gold);
}

.success-share {
  margin: 24px 0;
}

.share-text {
  font-size: 14px;
  color: var(--muted-gold);
  margin-bottom: 12px;
}

.share-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.share-btn {
  color: var(--gold);
  padding: 8px;
  transition: opacity 0.2s;
}

.share-btn:hover {
  opacity: 0.7;
}

.success-back {
  margin-top: 32px;
  font-size: 14px;
}

/* ============================================
   PAGE 4: Guide (guide.html)
   ============================================ */

.guide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.guide-hero {
  text-align: center;
  padding: 16px 0 24px;
}

.guide-logo {
  margin: 0 auto 20px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
}

.guide-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 8px;
}

.guide-subheadline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--muted-gold);
}

.guide-content {
  margin-bottom: 32px;
}

.guide-copy {
  margin-bottom: 24px;
}

.guide-copy p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.guide-features {
  list-style: none;
  margin-bottom: 32px;
}

.guide-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.guide-social-proof {
  text-align: center;
  margin-bottom: 20px;
}

.guide-social-proof p {
  font-size: 13px;
  color: var(--muted-gold);
  font-style: italic;
}

.guide-form-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.guide-form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.guide-form-subtext {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.guide-upsell {
  text-align: center;
  padding: 32px 0 48px;
}

.upsell-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.upsell-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  transition: opacity 0.2s;
}

.upsell-link:hover {
  opacity: 0.8;
}

/* ============================================
   Focus Styles (Accessibility)
   ============================================ */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
