:root {
  --bg: #fff8ef;
  --bg-soft: #f6ead5;
  --card: rgba(255, 252, 246, 0.94);
  --forest: #173b27;
  --forest-soft: #2a5b3d;
  --leaf: #5f8749;
  --gold: #bf8b2d;
  --gold-deep: #845d12;
  --ink: #1d221d;
  --muted: #61655f;
  --line: rgba(23, 59, 39, 0.1);
  --shadow-soft: 0 16px 40px rgba(49, 38, 24, 0.08);
  --shadow-card: 0 26px 64px rgba(49, 38, 24, 0.13);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(191, 139, 45, 0.18), transparent 26%),
    radial-gradient(circle at 90% 5%, rgba(95, 135, 73, 0.16), transparent 26%),
    linear-gradient(180deg, #fffaf2 0%, #f7ecd8 45%, #fff8ef 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.home-page {
  min-height: 100vh;
  padding-bottom: 5.2rem;
  overflow-x: hidden;
}

.home-container {
  width: min(var(--max), calc(100vw - 1.1rem));
  margin: 0 auto;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 239, 0.9);
  backdrop-filter: blur(18px);
}

.home-nav {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(23, 59, 39, 0.14);
}

.brand span {
  display: grid;
  gap: 0.02rem;
  min-width: 0;
}

.brand strong,
.hero-copy h1,
.section-head h2,
.combo-copy h2,
.price-line strong,
.combo-price strong,
.home-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand strong {
  color: var(--forest);
  font-size: 1.42rem;
  line-height: 0.95;
  white-space: nowrap;
}

.brand small {
  max-width: 168px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-btn {
  min-width: 74px;
  min-height: 42px;
  border: 1px solid rgba(23, 59, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font-weight: 800;
}

.menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: var(--shadow-card);
}

.menu.is-open {
  display: flex;
}

.menu a {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.menu a:hover {
  color: var(--forest);
  background: rgba(23, 59, 39, 0.07);
}

.menu-cta {
  color: #fff !important;
  text-align: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft)) !important;
}

.hero-section {
  padding: 0.95rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  gap: 1rem;
}

.hero-copy,
.hero-visual,
.combo-card,
.product-card,
.category-card,
.benefit-card,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 1.05rem;
  border-radius: 30px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.45rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.combo-copy h2 {
  margin: 0;
  color: var(--forest);
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 12vw, 5.3rem);
  line-height: 0.86;
}

.hero-copy p,
.section-head p,
.combo-copy p,
.product-content p,
.category-card p,
.benefit-card p,
.faq-list p,
.home-footer p,
.home-footer a,
.check-list li,
.plan-calendar-row span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy p {
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
}

.hero-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: #fffaf1;
}

.hero-price-card small {
  display: block;
  margin-bottom: 0.12rem;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-price-card strong {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-price-card a {
  flex: 0 0 auto;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: #ffd27a;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.05rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  box-shadow: 0 16px 32px rgba(23, 59, 39, 0.18);
}

.btn-gold {
  color: #2b1b02;
  background: linear-gradient(135deg, #ffd27a, var(--gold));
  box-shadow: 0 16px 32px rgba(191, 139, 45, 0.18);
}

.btn-light,
.btn-outline {
  color: var(--forest);
  border: 1px solid rgba(23, 59, 39, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.proof-grid div {
  padding: 0.82rem;
  border: 1px solid rgba(23, 59, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.proof-grid strong {
  display: block;
  color: var(--forest);
  font-weight: 900;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 210, 122, 0.42), transparent 28%),
    linear-gradient(145deg, #173b27, #2a5b3d);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(23, 59, 39, 0.84);
  color: #fffaf1;
  backdrop-filter: blur(12px);
}

.hero-slide-overlay span {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #ffd27a;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide-overlay h2 {
  margin: 0;
  color: #fffaf1;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-slide-overlay p {
  margin: 0.45rem 0 0.8rem;
  color: rgba(255, 250, 241, 0.82);
}

.ghost-button {
  display: inline-flex;
  padding: 0.72rem 0.92rem;
  border-radius: 999px;
  background: #ffd27a;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 900;
}

.carousel-dots {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: flex;
  gap: 0.45rem;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.carousel-dot.is-active {
  background: #ffd27a;
}

.loader-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--forest);
  font-weight: 900;
}

.scroll-strip-section {
  padding-bottom: 1rem;
}

.scroll-strip {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(49, 38, 24, 0.06);
  scrollbar-width: none;
}

.scroll-strip::-webkit-scrollbar {
  display: none;
}

.scroll-strip span {
  flex: 0 0 auto;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: var(--forest);
  color: #fffaf1;
  font-size: 0.8rem;
  font-weight: 800;
}

.section {
  padding: 2.15rem 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 1rem;
}

.section-head h2,
.combo-copy h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.92;
}

.section-head p {
  margin: 0.7rem 0 0;
}

.combo-card {
  display: grid;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  box-shadow: 0 30px 70px rgba(23, 59, 39, 0.2);
}

.combo-image {
  overflow: hidden;
  min-height: 300px;
  border-radius: 28px;
  background: #fffaf2;
}

.combo-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.combo-copy {
  padding: 1rem;
  color: #fffaf1;
}

.combo-copy .eyebrow,
.combo-copy h2,
.combo-copy p {
  color: inherit;
}

.combo-price {
  display: flex;
  align-items: baseline;
  gap: 0.42rem;
  margin: 1rem 0;
}

.combo-price strong {
  color: #fff;
  font-size: clamp(3rem, 13vw, 5rem);
  line-height: 0.9;
}

.combo-price span {
  color: rgba(255, 250, 241, 0.82);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.72rem 0.8rem 0.72rem 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 250, 241, 0.9);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0.8rem;
  top: 0.65rem;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffd27a;
  color: var(--forest);
  font-weight: 900;
}

.plan-calendar {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.plan-calendar-head,
.plan-calendar-row {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: var(--shadow-soft);
}

.plan-calendar-head {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  color: var(--forest);
  font-weight: 900;
}

.plan-calendar-row {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 20px;
}

.plan-calendar-row strong {
  color: var(--forest);
}

.product-grid,
.category-grid,
.benefit-grid,
.footer-grid {
  display: grid;
  gap: 0.9rem;
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border-radius: 24px;
}

.product-image-shell {
  position: relative;
  display: block;
  padding: 0.55rem;
  background: #fff;
}

.product-image-shell img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 18px;
}

.product-badge,
.product-discount-badge {
  position: absolute;
  top: 0.7rem;
  padding: 0.36rem 0.58rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
}

.product-badge {
  left: 0.7rem;
  background: rgba(255, 250, 238, 0.92);
  color: var(--forest);
}

.product-discount-badge {
  right: 0.7rem;
  background: var(--forest);
  color: #fff;
}

.product-content {
  display: grid;
  gap: 0.48rem;
  padding: 0.82rem;
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-category {
  width: fit-content;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(191, 139, 45, 0.12);
  color: var(--gold-deep);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-unit {
  display: none;
  color: var(--muted);
  font-size: 0.72rem;
}

.product-content h3 {
  margin: 0;
  color: var(--forest);
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.product-content p,
.product-offer-line,
.card-actions .outline-button {
  display: none;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price-line strong {
  color: var(--forest);
  font-size: 1.45rem;
}

.price-line span {
  color: #8d877b;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.card-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.card-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 900;
}

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
}

.outline-button {
  color: var(--forest);
  background: rgba(23, 59, 39, 0.08);
}

.category-card,
.benefit-card,
.faq-list details {
  padding: 1rem;
  border-radius: 24px;
}

.category-card span {
  width: fit-content;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: rgba(191, 139, 45, 0.12);
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--forest);
  font-size: 1.05rem;
}

.category-card p {
  margin: 0.45rem 0 0;
}

.benefits-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 246, 226, 0.45));
}

.benefit-card .benefit-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.7rem;
  border-radius: 17px;
  background: #fff0cf;
  font-size: 1.35rem;
}

.benefit-card h3 {
  margin: 0 0 0.35rem;
  color: var(--forest);
  font-size: 1.15rem;
  line-height: 1.1;
}

.benefit-card p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold-deep);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.65rem 0 0;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.home-footer {
  padding: 2rem 0 1rem;
  background: var(--forest);
  color: #fffaf1;
}

.footer-grid > div {
  display: grid;
  gap: 0.42rem;
}

.home-footer strong {
  color: #fffaf1;
  font-size: 2rem;
}

.home-footer h4 {
  margin: 0;
  color: #ffd27a;
}

.home-footer p,
.home-footer a {
  color: rgba(255, 250, 241, 0.74);
}

.fixed-cta {
  position: fixed;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 120;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.74rem 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: #fff;
  box-shadow: 0 18px 42px rgba(20, 58, 38, 0.32);
}

.fixed-cta span {
  font-size: 0.9rem;
  font-weight: 900;
}

.fixed-cta strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.82rem;
  border-radius: 999px;
  background: #ffd27a;
  color: var(--forest);
  white-space: nowrap;
}

.skeleton-card {
  min-height: 260px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(23, 59, 39, 0.08), rgba(191, 139, 45, 0.11), rgba(23, 59, 39, 0.08));
  box-shadow: var(--shadow-soft);
}

@media (min-width: 700px) {
  .home-container {
    width: min(var(--max), calc(100vw - 2rem));
  }

  .product-grid,
  .category-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .plan-calendar-row {
    grid-template-columns: 160px 1fr;
    align-items: center;
  }

  .product-content p,
  .product-offer-line,
  .product-unit {
    display: block;
  }

  .product-content h3 {
    font-size: 1.25rem;
  }
}

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

  .menu-btn {
    display: none;
  }

  .menu {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu a {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }

  .menu-cta {
    padding: 0.78rem 1rem !important;
  }

  .hero-section {
    padding: 1.25rem 0 2.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.03fr 0.97fr;
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    min-height: 610px;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }

  .hero-visual {
    min-height: 610px;
  }

  .combo-card {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    padding: 1rem;
  }

  .combo-copy {
    padding: 2rem;
  }

  .section {
    padding: 3.4rem 0;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-content {
    padding: 1rem;
  }

  .card-actions .outline-button {
    display: inline-flex;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .fixed-cta {
    left: 50%;
    right: auto;
    width: min(520px, calc(100vw - 2rem));
    transform: translateX(-50%);
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: 1.24rem;
  }

  .brand small {
    max-width: 135px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .product-grid {
    gap: 0.7rem;
  }

  .product-content {
    padding: 0.72rem;
  }

  .fixed-cta span {
    font-size: 0.8rem;
  }

  .fixed-cta strong {
    padding: 0 0.68rem;
  }
}
/* =========================================================
   Plan Calendar + Image Category Cards Update
   Paste at END of /assets/index.css
   ========================================================= */

.plan-calendar {
  display: block;
  margin-top: 1rem;
}

.plan-calendar-wrap {
  display: grid;
  gap: 0.85rem;
}

.plan-calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.plan-kit-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(23, 59, 39, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
}

.plan-kit-card.is-hidden {
  display: none;
}

.plan-kit-media {
  position: relative;
  height: 165px;
  background:
    radial-gradient(circle at 30% 20%, rgba(191, 139, 45, 0.14), transparent 32%),
    linear-gradient(180deg, #fffdf8, #f6f7fb);
}

.plan-kit-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.8rem;
}

.plan-kit-badge {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.plan-kit-badge.is-paid {
  background: #16a34a;
}

.plan-kit-badge.is-locked {
  background: #9aa3b2;
}

.plan-kit-body {
  display: grid;
  gap: 0.58rem;
  padding: 0.9rem;
}

.plan-kit-body h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 900;
}

.plan-kit-body p {
  margin: 0;
  color: #657386;
  font-size: 0.82rem;
  line-height: 1.45;
}

.plan-kit-meta {
  display: grid;
  gap: 0.5rem;
}

.plan-kit-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0 0.7rem;
  border: 1px solid rgba(23, 59, 39, 0.1);
  border-radius: 999px;
  background: rgba(246, 248, 255, 0.9);
  color: #151a2d;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.plan-kit-track {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  background: rgba(246, 248, 255, 0.9);
  color: #2456e8;
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-kit-track.is-locked {
  color: #8a94a6;
}

.plan-calendar-action {
  display: flex;
  justify-content: center;
  margin-top: 0.15rem;
}

.plan-view-more {
  min-height: 46px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(23, 59, 39, 0.16);
}

.plan-view-more[hidden] {
  display: none;
}

/* category section reference style */

.categories-section {
  overflow: hidden;
}

.category-grid {
  display: flex;
  grid-template-columns: unset;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.35rem;
  scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 142px;
  min-height: 162px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid rgba(23, 59, 39, 0.1);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.category-card.is-active,
.category-card:first-child {
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(240, 247, 255, 0.95);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
}

.category-card-image {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.category-card span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--forest);
  font-size: 0.86rem;
  line-height: 1.16;
  text-transform: none;
}

.category-card strong {
  margin: 0;
  color: #6b7280;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-card p {
  display: none;
}

@media (min-width: 700px) {
  .plan-calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-kit-card {
    min-height: 360px;
  }

  .plan-kit-media {
    height: 195px;
  }

  .category-card {
    flex-basis: 168px;
  }
}

@media (max-width: 380px) {
  .plan-calendar-grid {
    gap: 0.65rem;
  }

  .plan-kit-card {
    border-radius: 22px;
    min-height: 305px;
  }

  .plan-kit-media {
    height: 142px;
  }

  .plan-kit-body {
    padding: 0.72rem;
  }

  .plan-kit-body h3 {
    font-size: 0.88rem;
  }

  .plan-kit-body p,
  .plan-kit-chip,
  .plan-kit-track {
    font-size: 0.68rem;
  }

  .category-card {
    flex-basis: 128px;
    min-height: 150px;
  }
}
/* =========================================================
   Right Side Drawer Menu
   Paste at END of /assets/index.css
   ========================================================= */

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 230;
  background: rgba(15, 31, 22, 0.46);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  z-index: 240;
  width: min(86vw, 370px);
  height: 100dvh;
  max-height: 100dvh;
  display: flex !important;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border: 0;
  border-left: 1px solid rgba(23, 59, 39, 0.1);
  border-radius: 28px 0 0 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(191, 139, 45, 0.18), transparent 28%),
    rgba(255, 253, 247, 0.98);
  box-shadow: -24px 0 70px rgba(20, 58, 38, 0.22);
  transform: translateX(110%);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: transform 0.28s ease, visibility 0.28s ease;
}

.menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.15rem 0.85rem;
  border-bottom: 1px solid rgba(23, 59, 39, 0.1);
}

.menu-drawer-head strong {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.menu-drawer-head button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: rgba(23, 59, 39, 0.08);
  color: var(--forest);
  font-size: 1.45rem;
  font-weight: 900;
}

.menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.menu a:hover {
  color: var(--forest);
  background: rgba(23, 59, 39, 0.08);
}

.menu .menu-cta {
  justify-content: center;
  margin-top: 0.35rem;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft)) !important;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 960px) {
  .menu-backdrop {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  .menu {
    position: static !important;
    inset: auto !important;
    width: auto;
    height: auto;
    max-height: none;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .menu-drawer-head {
    display: none;
  }

  .menu a {
    min-height: auto;
    padding: 0.65rem 0.75rem;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
  }

  .menu .menu-cta {
    min-height: 42px;
    padding: 0.78rem 1rem !important;
  }
}/* =========================================================
   Right Side Drawer Menu
   Paste at END of /assets/index.css
   ========================================================= */

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 230;
  background: rgba(15, 31, 22, 0.46);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  z-index: 240;
  width: min(86vw, 370px);
  height: 100dvh;
  max-height: 100dvh;
  display: flex !important;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border: 0;
  border-left: 1px solid rgba(23, 59, 39, 0.1);
  border-radius: 28px 0 0 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(191, 139, 45, 0.18), transparent 28%),
    rgba(255, 253, 247, 0.98);
  box-shadow: -24px 0 70px rgba(20, 58, 38, 0.22);
  transform: translateX(110%);
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: transform 0.28s ease, visibility 0.28s ease;
}

.menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.menu-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.15rem 0.85rem;
  border-bottom: 1px solid rgba(23, 59, 39, 0.1);
}

.menu-drawer-head strong {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.menu-drawer-head button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: rgba(23, 59, 39, 0.08);
  color: var(--forest);
  font-size: 1.45rem;
  font-weight: 900;
}

.menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.menu a:hover {
  color: var(--forest);
  background: rgba(23, 59, 39, 0.08);
}

.menu .menu-cta {
  justify-content: center;
  margin-top: 0.35rem;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft)) !important;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 960px) {
  .menu-backdrop {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  .menu {
    position: static !important;
    inset: auto !important;
    width: auto;
    height: auto;
    max-height: none;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .menu-drawer-head {
    display: none;
  }

  .menu a {
    min-height: auto;
    padding: 0.65rem 0.75rem;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
  }

  .menu .menu-cta {
    min-height: 42px;
    padding: 0.78rem 1rem !important;
  }
}