/* ============================================================
   Rooted & Rising: A Year of Collective Elevation
   Standalone CSS — Replicates React/Tailwind cinematic design
   Style: reignsupremex.com — deep navy, Playfair Display, gold accents, orange CTAs
   ============================================================ */
:root {
    --primary-blue: #060291;
    --accent-orange: #e86130;
    --gold: #FFD700;
    --dark-bg: #0c0c2c;
    --light-bg: #f8f9fa;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a3e;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a3e; }
::-webkit-scrollbar-thumb { background: #e8622c; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ffd700; }

/* === Utility === */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%      { transform: translateY(10px) translateX(-50%); }
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 600px; }
}
@keyframes slideUp {
  from { opacity: 1; max-height: 600px; }
  to   { opacity: 0; max-height: 0; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.from-left {
  transform: translateX(-30px);
}
.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}
.animate-on-scroll.from-right {
  transform: translateX(30px);
}
.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

/* === Toast Notification === */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
}
.toast {
  background: #1a1a4e;
  color: #fff;
  border: 1px solid rgba(255,215,0,0.3);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER / STICKY NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, box-shadow 0.5s;
}
.site-header.scrolled {
  background: rgba(6,2,145,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.header-logo .gold { color: #ffd700; }
.header-logo .orange { color: #e86130; }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}
.desktop-nav button {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-radius: 9999px;
  transition: all 0.3s;
}
.desktop-nav button:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.desktop-nav button.active {
  background: #e8622c;
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-x-cta-header {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #e8622c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232,98,44,0.3);
}
.btn-x-cta-header:hover {
  background: #d4571f;
  box-shadow: 0 4px 24px rgba(232,98,44,0.5);
}

.btn-x-mobile-menu {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.btn-x-mobile-menu:hover { background: rgba(255,255,255,0.2); }
.btn-x-mobile-menu svg { width: 20px; height: 20px; color: #fff; }

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  background: rgba(6,2,145,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  animation: slideDown 0.3s ease forwards;
}
.mobile-nav.open { display: block; }
.mobile-nav.closing { animation: slideUp 0.3s ease forwards; }

.mobile-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-nav button {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: all 0.3s;
}
.mobile-nav button:hover { background: rgba(255,255,255,0.1); }
.mobile-nav button.active {
  background: #e8622c;
  color: #fff;
}
.mobile-nav .btn-x-cta-mobile {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 12px 20px;
  background: #e8622c;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 15px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), #0a0a3e);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffd700;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .gold { color: #ffd700; }
.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.hero-brand {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
}
.btn-x-primary {
  padding: 16px 32px;
  background: #e8622c;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 9999px;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(232,98,44,0.4);
}
.btn-x-primary:hover {
  background: #d4571f;
  box-shadow: 0 8px 32px rgba(232,98,44,0.6);
  transform: scale(1.05);
}
.btn-x-secondary {
  padding: 16px 32px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.btn-x-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.btn-x-cancel {
  color: #6c757d;
  border-color: #6c757d;
  font-size: 1rem;
  padding: 15px;
  text-transform: none;
  background: transparent;
  border: 1px solid;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-radius: 8px;
  margin: 15px 10px 15px 0;
}

.btn-x-success {
  color: #fff;
  background: rgb(40, 167, 69);
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(232, 97, 48, 0.4);
  margin: 15px 10px 15px 0;
}

.btn-x-back {
  padding: 16px 32px;
  background: linear-gradient(to right, var(--accent-orange), #d45325);  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  margin: 15px 0px 25px 0;
}


.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s infinite;
}
.scroll-indicator svg {
  width: 24px; height: 24px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   INTRODUCTION SECTION
   ============================================================ */
.intro-section {
  background: linear-gradient(to bottom, #0a0a3e, #0d1445);
  padding: 80px 24px;
  text-align: center;
}
.intro-inner {
  max-width: 800px;
  margin: 0 auto;
}
.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.intro-divider .line {
  width: 64px;
  height: 1px;
  background: rgba(255,215,0,0.5);
}
.intro-divider .diamond {
  color: #ffd700;
  font-size: 14px;
}
.intro-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 32px;
}
.intro-text-secondary {
  font-size: clamp(0.9rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.intro-text-secondary strong {
  color: #ffd700;
}

/* ============================================================
   MONTH SECTIONS
   ============================================================ */

/* Season gradients */
.season-winter  { background: linear-gradient(to bottom, #0a0a3e, #1a1050, #0d1445); }
.season-spring  { background: linear-gradient(to bottom, #0d1445, #1a2a3e, #0f2818); }
.season-summer  { background: linear-gradient(to bottom, #2a1a0a, #3a1a10, #2a0a1a); }
.season-fall    { background: linear-gradient(to bottom, #2a1508, #1a1020, #0a0a3e); }

/* Photo hero */
.month-photo {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.month-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.month-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent, #0a0a3e);
}
.month-photo-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.month-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.month-theme {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 900px;
}

/* Content area */
.month-content {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* Quote */
.month-quote {
  border-left: 4px solid #ffd700;
  padding-left: 24px;
  margin-bottom: 48px;
  max-width: 768px;
}
.month-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: #ffd700;
  line-height: 1.6;
}
.month-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  font-weight: 500;
}

/* Description */
.month-description {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 768px;
  margin-bottom: 32px;
}

/* Monthly goal */
.monthly-goal {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  max-width: 768px;
  backdrop-filter: blur(4px);
}
.monthly-goal .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd700;
  margin-bottom: 8px;
}
.monthly-goal .text {
  color: #fff;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  font-weight: 500;
}

/* Key events */
.key-events {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  max-width: 768px;
}
.key-event-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(232,98,44,0.2);
  color: #e8622c;
  border: 1px solid rgba(232,98,44,0.4);
}
.key-event-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e8622c;
}

/* Section divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 768px;
}
.section-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}
.section-divider .diamond {
  color: #ffd700;
  font-size: 18px;
}

/* Weekly activities */
.weekly-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 768px;
}

.week-card {
  max-width: 768px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
}
.week-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.2);
}
.week-card.expanded {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,215,0,0.4);
}

.week-card-header {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.week-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.week-card-week {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.week-card-dates {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.week-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #fff;
  font-weight: 700;
}

.week-card-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.3s;
}
.week-card.expanded .week-card-toggle {
  border-color: #ffd700;
  background: rgba(255,215,0,0.1);
  transform: rotate(180deg);
}
.week-card-toggle svg {
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.7);
}

.week-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.week-card.expanded .week-card-body {
  max-height: 400px;
}
.week-card-desc {
  padding: 0 24px 20px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ============================================================
   PURCHASE SECTION
   ============================================================ */
.purchase-section {
  background: linear-gradient(to bottom, #0a0a3e, #120a30, #0a0a3e);
  padding: 80px 24px;
}
.purchase-inner {
  max-width: 1152px;
  margin: 0 auto;
}
.purchase-header {
  text-align: center;
  margin-bottom: 64px;
}
.purchase-header .overline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e8622c;
  margin-bottom: 16px;
}
.purchase-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.purchase-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* Product preview */
.product-preview {
  position: relative;
}
.product-preview-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.product-preview-mini {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,215,0,0.3);
}

.product-btn {
  padding: .375rem .75rem;
  text-transform: none;
  display: inline-block;
  background: linear-gradient(to right, var(--accent-orange), #d45325);
  color: white;
  border: none;
    border-top-color: currentColor;
    border-right-color: currentColor;
    border-bottom-color: currentColor;
    border-left-color: currentColor;
  padding: 16px 40px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(232, 97, 48, 0.4);
  margin: 15px 10px 15px 0;
}

/* Purchase card */
.purchase-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(4px);
}
.purchase-card h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-check svg {
  width: 14px; height: 14px;
  color: #ffd700;
}
.feature-item strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 2px;
}
.feature-item .desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.btn-x-purchase {
  display: block;
  width: 100%;
  padding: 16px;
  background: #e8622c;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232,98,44,0.3);
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: center;
}
.btn-x-purchase:hover {
  background: #d4571f;
  box-shadow: 0 4px 24px rgba(232,98,44,0.5);
  transform: scale(1.02);
}

.purchase-footer-text {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.purchase-footer-text a {
  color: #ffd700;
}
.purchase-footer-text a:hover {
  text-decoration: underline;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050520;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo .gold { color: #ffd700; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-brand {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer-brand a {
  color: #ffd700;
}
.footer-brand a:hover { text-decoration: underline; }
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  .header-inner { padding: 0 24px; }
}

@media (min-width: 768px) {
  .header-inner { height: 80px; padding: 0 32px; }
  .header-logo { font-size: 20px; }
  .btn-x-cta-header { display: inline-flex; }
  .month-photo { height: 80vh; }
  .month-photo-text { padding: 64px; }
  .month-content { padding: 96px 48px; }
  .month-quote { padding-left: 32px; }
  .week-card-header { padding: 24px; }
  .week-card-desc { padding: 0 24px 24px; }
  .purchase-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .purchase-card { padding: 40px; }
  .product-preview-mini { bottom: -24px; right: -24px; width: 240px; }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-right { text-align: right; }
  .intro-section { padding: 112px 48px; }
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .btn-x-mobile-menu { display: none; }
  .header-inner { padding: 0 32px; }
}

@media (min-width: 1280px) {
  .purchase-grid { gap: 64px; }
}

/* ============================================================
   SIMPLIFIED MONTH GRAPHIC HEADERS
   Replaces photo-page images with themed SVG illustrations
   ============================================================ */
.month-graphic-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.month-graphic-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.month-graphic-svg svg {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 380px;
  opacity: 0.85;
}

.month-graphic-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 30%,
    transparent 60%,
    rgba(0, 0, 0, 0.6) 100%
  ) !important;
  z-index: 2;
}

.month-graphic-header .month-photo-text {
  z-index: 3;
}

/* ============================================================
   .ICS DOWNLOAD BUTTONS
   ============================================================ */
.btn-x-ics-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 18px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.btn-x-ics-download:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-1px);
}

.btn-x-ics-download i {
  font-size: 12px;
}

/* Full year .ics download section */
.ics-download-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.btn-x-ics-full-year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.btn-x-ics-full-year:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
}

.btn-x-ics-full-year i {
  font-size: 16px;
}

.ics-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   QUANTITY SELECTOR
   ============================================================ */
.purchase-qty-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 16px 0;
}

.qty-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.qty-input {
  width: 48px;
  height: 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.purchase-price {
  margin-left: auto;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
}

.price-per {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 6px;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 639px) {
  .purchase-qty-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .purchase-price {
    margin-left: 0;
  }

  .price-amount {
    font-size: 24px;
  }

  .month-graphic-svg svg {
    max-width: 300px;
    max-height: 240px;
  }
}

@media (min-width: 768px) {
  .month-graphic-svg svg {
    max-width: 500px;
    max-height: 380px;
  }
}


/*!
 * 
 * NEW PAYMENT PROCESSING CODE
 * 
 */


#checkoutModal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
}

#success-message {
  animation: fadeIn 0.3s ease-in;
}

.payment-success-header{
    background-color: #28a745;
}

.payment-success-title{
    font-weight: 600;
    font-size: 1.4em;
    color: white;
}
.checkmark__circle {
  stroke: #28a745;
  stroke-width: 2;
}

.checkmark__check {
  stroke: #28a745;
  stroke-width: 2;
  stroke-linecap: round;
}

@media (max-width: 576px) {
  #checkoutModal .modal-dialog {
    margin: 0;
    height: 100vh;
  }
  
  #checkoutModal .modal-content {
    height: 100vh;
    border-radius: 0;
  }
  
  #checkoutModal .modal-body {
    max-height: calc(100vh - 120px);
  }
}

.checkmark__circle {
  stroke: #28a745;
  stroke-width: 2;
}

.checkmark__check {
  stroke: #28a745;
  stroke-width: 2;
  stroke-linecap: round;
}

#success-message {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Remove existing .visible class handling */
#payment-error.d-block {
    display: block !important;
}


/* Container for custom form elements */
.stripe-style-input {
    position: relative;
    margin-bottom: 1.25rem;
}

/* Labels (if using explicit labels) */
.stripe-style-input label {
    display: block;
    font-size: 14px;
    color: #32325d;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.error-message {
    color: rgb(223, 27, 65);
    font-size: 14px;
    margin-top: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: none;
}

.error-message.visible {
    display: block;
}

.stripe-style-input.error input {
    border-color: rgb(223, 27, 65);
    background-color: #fff6f8;
}

/* Input fields */
#payment_name, #payment_email {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
     background-color: white;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(50, 50, 93, 0.03);
    transition: all 0.15s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    appearance: none;
    font-weight: 300;
}

/* Focus state */
#payment_name:focus, #payment_email:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 1px 3px rgba(50, 50, 93, 0.08), 
                0 0 0 1px rgba(50, 151, 211, 0.1);
}

/* Placeholder text */
#payment_name::placeholder, #payment_email::placeholder {
    color: #aab7c4;
    opacity: 1; /* Firefox default is reduced */
}

/* Error state */
.stripe-style-input.error #payment_name,
.stripe-style-input.error #payment_email {
    border-color: #ff3860;
    background-color: #fff6f8;
}

/* Disabled state */
#payment_name:disabled, #payment_email:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

/* Autofill states */
#payment_name:-webkit-autofill,
#payment_email:-webkit-autofill {
    -webkit-text-fill-color: #32325d;
    box-shadow: 0 0 0px 1000px white inset;
    transition: background-color 5000s ease-in-out 0s;

/* Checkout Modal Styles */
.checkout-progress {
    position: relative;
    padding: 20px 0;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 5px;
    border: 3px solid white;
}

.step.active .step-number {
    background: #007bff;
    color: white;
}

.step-label {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
}

.step.active .step-label {
    color: #007bff;
    font-weight: bold;
}

.checkout-section {
    transition: opacity 0.3s ease;
}

.checkout-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.checkout-sidebar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
}

.sidebar-header {
    margin-bottom: 15px;
}

.price-summary {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .checkout-sidebar {
        margin-top: 20px;
    }
    
    #orderSummaryCollapse {
        margin-top: 15px;
    }
    
    .checkout-progress .step-label {
        font-size: 0.75rem;
    }
}

/* Loading States */
.loading {
    color: #6c757d;
    font-style: italic;
}

/* Form Validation */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
