/* ==========================================================================
   Lal Kitab Remedies — Design System
   main.css : tokens, base, layout, components
   ========================================================================== */

:root {
  /* Brand palette */
  --primary: #7a1420;
  --primary-dark: #550d16;
  --primary-soft: #f6e7e4;
  --accent: #b08544;
  --accent-soft: #f3e7cf;

  /* Neutrals */
  --background: #fbf7f0;
  --surface: #ffffff;
  --surface-alt: #f5efe4;
  --text: #241f1c;
  --muted: #63594f;
  --border: #e5dbc9;

  /* Typography */
  --font-heading: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  /* Metrics */
  --container: 1180px;
  --measure: 68ch;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(36, 31, 28, 0.04), 0 12px 32px rgba(36, 31, 28, 0.07);
  --shadow-sm: 0 1px 2px rgba(36, 31, 28, 0.06);
  --header-h: 68px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
}
h2 {
  font-size: clamp(1.4rem, 1.15rem + 1vw, 1.85rem);
  margin-top: 2em;
}
h3 {
  font-size: 1.18rem;
  margin-top: 1.6em;
}

p,
ul,
ol,
table,
figure,
blockquote {
  margin: 0 0 1.1em;
}

ul,
ol {
  padding-left: 1.25em;
}
li + li {
  margin-top: 0.35em;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.stack > * + * {
  margin-top: 1.1em;
}

.section {
  padding: 56px 0;
}
.section--alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
}

.section__head {
  max-width: 62ch;
  margin-bottom: 28px;
}
.section__head p {
  color: var(--muted);
  margin: 0;
}
.section__head h2 {
  margin-top: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ---------- Header + navigation ---------- */

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #550d16 0%, #7a1420 50%, #8b1525 100%);
  color: #ffffff;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__offer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar__badge {
  background: var(--accent);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar__text {
  font-weight: 500;
  color: #fffaf4;
}
.topbar__price {
  color: #ffd700;
  font-weight: 800;
}
.topbar__old-price {
  text-decoration: line-through;
  opacity: 0.75;
  font-size: 0.85em;
  margin-left: 4px;
}
.topbar__offer-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.74rem;
  padding: 3px 12px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-left: 6px;
}
.topbar__offer-btn:hover {
  background: #ffffff;
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.topbar__links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.topbar__links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.topbar__divider {
  opacity: 0.4;
}

/* Site Header Layer */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.98);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.logo__img {
  max-height: 48px; /* Fit nicely within header */
  width: auto;
  display: block;
}

/* Primary Nav */
.nav {
  margin-left: auto;
  height: 72px;
}
.nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.nav__list > li {
  margin: 0;
}

/* The magic unified component */
.nav-item-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  margin: 0;
  padding: 0 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.nav-item:hover,
.nav-item[aria-expanded="true"] {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.nav-item[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* Mega Menus Layer */
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 90;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(0);
}
.megamenu[hidden] {
  display: block; /* override standard hidden so we can animate */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.megamenu__inner {
  padding: 32px 0 40px;
}

/* Standard Columns */
.megamenu__grid--columns {
  display: grid;
  grid-template-columns: repeat(var(--col-count, 4), 1fr);
  gap: 32px;
}
.mega-col {
  display: flex;
  flex-direction: column;
}
.mega-col--featured {
  padding-left: 32px;
  border-left: 1px solid var(--border);
}
.mega-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 16px 0;
}
.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-links a {
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mega-links a:hover {
  color: var(--primary);
}

/* Compact Grids for Planets/Houses */
.megamenu__grid--compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mega-card {
  display: block;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.mega-card:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px);
}
.mega-card h4 {
  margin: 0 0 4px 0;
  color: var(--primary);
  font-size: 1rem;
}
.mega-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-light);
}

.megamenu__footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: right;
}
.mega-link-all {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.mega-link-all:hover {
  text-decoration: underline;
}

/* Featured Card inside Mega menu */
.featured-card {
  background: var(--primary-soft);
  padding: 24px;
  border-radius: var(--radius-sm);
  height: 100%;
}
.featured-card h4 {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-size: 1.1rem;
}
.featured-card p {
  margin: 0 0 20px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}
.icon-btn:hover {
  background: var(--surface-alt);
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}

.badge-coming-soon {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Mobile Nav Drawer base styles */
.nav-drawer {
  display: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary);
  background: var(--surface);
}
.btn--secondary {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
}
.btn--secondary:hover {
  background: transparent;
  color: var(--accent);
}
.btn--sm {
  min-height: 38px;
  padding: 7px 15px;
  font-size: 0.87rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 52px;
  background:
    radial-gradient(900px 420px at 12% -10%, var(--accent-soft), transparent 70%),
    radial-gradient(700px 380px at 92% 0%, var(--primary-soft), transparent 68%);
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* Background Animation Elements */
.hero__bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-planet {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-soft);
  opacity: 0.6;
  filter: blur(1px);
}
.hero__bg-planet--1 {
  width: 160px;
  height: 160px;
  top: -10%;
  right: 12%;
  animation: float-up-down 16s ease-in-out infinite;
}
.hero__bg-planet--2 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 8%;
  background: var(--accent-soft);
  animation: float-up-down 22s ease-in-out infinite reverse;
}
.hero__bg-star {
  position: absolute;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  opacity: 0.4;
  animation: pulse-star 6s ease-in-out infinite;
}
.hero__bg-star--1 {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}
.hero__bg-star--2 {
  top: 60%;
  right: 22%;
  font-size: 16px;
  animation-delay: 2s;
}
.hero__bg-star--3 {
  bottom: 20%;
  right: 45%;
  font-size: 20px;
  animation-delay: 4s;
}


@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
@keyframes pulse-star {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1.1); }
}
@keyframes rotate-orbit {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}
.hero__order-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  max-width: 450px;
  margin: 0 auto;
}
.hero__order-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: var(--primary-dark);
}
.hero__order-card p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.order-form .form-group {
  margin-bottom: 16px;
  text-align: left;
}
.order-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.9rem;
}
.order-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.order-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.order-form .btn--full {
  width: 100%;
  margin-top: 8px;
  display: block;
  text-align: center;
}
.hero h1 {
  margin-bottom: 14px;
}
.section__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 64ch;
  margin-bottom: 30px;
}
.section__lead.text-center {
  margin-left: auto;
  margin-right: auto;
}
.section__more {
  margin-top: 40px;
  text-align: center;
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ---------- Benefits ---------- */
.benefits {
  background: var(--primary-dark);
  color: #fff;
  position: relative;
  margin-top: -10px;
  padding-bottom: 60px;
  z-index: 2;
}
.benefits__wave {
  display: block;
  width: 100%;
  height: 60px;
  transform: translateY(-59px);
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 900px) {
  .benefits__wave { height: 100px; transform: translateY(-99px); }
}
.benefits__inner {
  padding-top: 20px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 600px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .benefits__grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.benefit-item {
  text-align: center;
  padding: 0 10px;
}
.benefit-item__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(176, 133, 68, 0.25);
  background: rgba(176, 133, 68, 0.08);
}
.benefit-item__icon.counter-proof {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffd700;
  letter-spacing: -0.02em;
}
.benefit-item__icon svg {
  width: 32px;
  height: 32px;
}
.benefit-item__text h3 {
  color: var(--accent-soft);
  font-size: 1rem;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}
.benefit-item__text p {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* ---------- Search ---------- */

.searchbox {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  max-width: 620px;
}
.searchbox input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 52px;
  padding: 12px 18px;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.searchbox input[type="search"]:focus {
  border-color: var(--accent);
}
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  font-size: 0.88rem;
}
.search-suggestions a {
  display: inline-block;
  padding: 5px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  text-decoration: none;
  color: var(--muted);
}
.search-suggestions a:hover {
  border-color: var(--accent);
  color: var(--primary-dark);
}

.results {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.results li {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  margin: 0;
}
.results h2,
.results h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
}
.results .result__url {
  font-size: 0.82rem;
  color: var(--accent);
  word-break: break-word;
}
.results p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Cards & grids ---------- */

.grid {
  display: grid;
  gap: 16px;
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.grid--tiles {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
a.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.card__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.card__meta {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.tile:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--primary-dark);
}
.tile strong {
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 600;
}
.tile span {
  font-size: 0.83rem;
  color: var(--muted);
}

.linklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.linklist a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  font-size: 0.93rem;
}
.linklist a:hover {
  border-color: var(--accent);
}

/* ---------- Content page shell ---------- */

.page-head {
  padding: 34px 0 8px;
}
.page-head h1 {
  max-width: 30ch;
}
.page-head .page-head__lead {
  color: var(--muted);
  max-width: var(--measure);
  font-size: 1.05rem;
}

.breadcrumbs {
  padding: 14px 0 0;
  font-size: 0.84rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "\203A";
  margin-right: 6px;
  color: var(--accent);
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
  display: inline-block;
}
.breadcrumbs a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
  padding: 24px 0 64px;
}
.content {
  max-width: var(--measure);
}
.content > h2:first-child {
  margin-top: 0;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 20px;
  font-size: 0.94rem;
}
.sidebar__block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.sidebar__block h2,
.sidebar__block h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar li + li {
  margin-top: 4px;
}
.sidebar a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
}
.sidebar a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ---------- Content components ---------- */

.quick-answer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 28px;
  box-shadow: var(--shadow-sm);
}
.quick-answer h2 {
  margin: 0 0 16px;
  color: var(--primary);
}
.quick-answer p {
  margin: 0;
  font-size: 1.04rem;
}

.takeaways {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px 18px;
}
.takeaways h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.takeaways ul {
  margin: 0;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 30px;
}
.toc h2 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}
.toc ol {
  margin: 0;
  padding-left: 1.1em;
  font-size: 0.95rem;
}
.toc a {
  text-decoration: none;
}
.toc a:hover {
  text-decoration: underline;
}

.faq {
  border-top: 1px solid var(--border);
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.06rem;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-family: var(--font-body);
}
.faq details[open] summary::after {
  content: "–";
}
.faq details > *:not(summary) {
  margin-top: 0;
  color: var(--muted);
}

.disclaimer {
  background: var(--primary-soft);
  border: 1px solid #e8cfcb;
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.94rem;
  color: #5a4340;
  margin-top: 2.5rem;
}
.disclaimer strong {
  color: var(--primary-dark);
}
.disclaimer p:last-child {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th,
td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  background: var(--surface-alt);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 1.2em;
  padding: 0;
}
.pill-row a,
.pill-row span {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.86rem;
  text-decoration: none;
}
.pill-row a:hover {
  border-color: var(--accent);
}

.alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.alphabet a,
.alphabet span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.alphabet a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.alphabet span {
  color: #b6ab9c;
  background: transparent;
}
.alphabet .is-current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.ad-slot {
  display: block;
  min-height: 90px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: #b0a595;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
}

.newsletter {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
}
.newsletter h2,
.newsletter p {
  color: #fff;
}
.newsletter h2 {
  margin-top: 0;
}
.newsletter p {
  opacity: 0.86;
  max-width: 52ch;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 520px;
}
.newsletter input {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 12px 16px;
  font: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 999px;
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter .btn {
  background: #fff;
  color: var(--primary-dark);
}
.newsletter .form-note {
  font-size: 0.84rem;
  margin: 12px 0 0;
}

.field {
  display: block;
  margin-bottom: 16px;
}
.field span {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.field textarea {
  min-height: 130px;
}

.status-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6d5323;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Topbar ---------- */
.topbar {
  background: #781615;
  color: #f7e6db;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.topbar a {
  color: inherit;
  text-decoration: none;
}
.topbar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.topbar__contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar__contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 60px;
  background: #241f1c;
  color: #cbc2b6;
  padding: 52px 0 28px;
  font-size: 0.93rem;
}
.site-footer a {
  color: #e6ddd1;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
}
.grid--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .grid--cards { grid-template-columns: repeat(4, 1fr); }
}
.grid--tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px) {
  .grid--tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid--tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid--tiles { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Testimonials ---------- */
.grid--testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .grid--testimonials { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 15px;
}
.testimonial-stars svg {
  width: 20px;
  height: 20px;
}
.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
}
.testimonial-author-info strong {
  color: var(--primary);
  font-size: 1rem;
}
.testimonial-author-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--success);
  margin-top: 4px;
}
.testimonial-author-info span svg {
  width: 14px;
  height: 14px;
}
.text-center {
  text-align: center;
}

/* ---------- Marquee ---------- */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text);
  min-width: 250px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.marquee-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.marquee-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.marquee-item__icon svg {
  width: 20px;
  height: 20px;
}
.marquee-item__text {
  display: flex;
  flex-direction: column;
}
.marquee-item__text strong {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.marquee-item__text span {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.footer__brand {
  grid-column: 1 / -1;
  max-width: 44ch;
}
.footer__brand .logo__mark {
  color: #fff;
}
.footer__brand p {
  color: #a49a8d;
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li + li {
  margin-top: 6px;
}
.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  color: #948a7d;
  font-size: 0.85rem;
}

/* ---------- Back to top ---------- */

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.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;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Language switcher ---------- */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.lang-switch__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
}
.lang-switch__link:hover {
  color: var(--primary);
  background: var(--primary-soft);
}
.lang-switch__link.is-current {
  background: var(--primary);
  color: #fff;
}
.footer__brand .lang-switch {
  margin-top: 14px;
  background: transparent;
}
.footer__brand .lang-switch__link {
  color: inherit;
}

/* Horoscope Order Form Styles */
.hero__order-card {
  text-align: left;
}
.hero__order-card .required {
  color: var(--primary);
  margin-left: 2px;
}
.form-row {
  display: flex;
  gap: 15px;
}
.form-row .form-group {
  flex: 1;
}

/* Progress Indicator */
.order-progress {
  margin-bottom: 25px;
}
.order-progress__text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
}
.order-progress__track {
  width: 100%;
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.order-progress__bar {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 0.4s ease;
  position: relative;
}
.order-progress__bar::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
}

/* Validation */
.form-error {
  display: none;
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 4px;
}
input.is-invalid {
  border-color: #d32f2f;
}

/* Autocomplete */
.autocomplete {
  position: relative;
}
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  max-height: 200px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: none;
}
.autocomplete-list li {
  padding: 10px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.autocomplete-list li:last-child {
  border-bottom: none;
}
.autocomplete-list li:hover {
  background: #fdfbf7;
  color: var(--primary);
}

/* Input Prefix */
.input-with-prefix {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.input-with-prefix:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
.input-with-prefix input {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  flex: 1;
}
.input-with-prefix input:focus {
  box-shadow: none;
}
.input-prefix {
  padding: 12px 14px;
  background: #f5f5f5;
  color: var(--text);
  font-size: 0.95rem;
  border-right: 1px solid var(--border);
}
.optional-indicator {
  font-size: 0.75rem;
  color: #25D366;
  font-weight: 600;
  float: right;
  margin-top: 2px;
}

/* Trust Note */
.trust-note {
  margin-top: 15px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Step 2 Specific */
.step-heading {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--text);
}
.report-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.focus-card {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}
.focus-card:hover {
  border-color: var(--accent);
  background: #fdfbf7;
}
.focus-card input {
  width: auto;
  margin-right: 10px;
}
.focus-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.focus-card:has(input:checked) {
  border-color: var(--primary);
  background: rgba(144, 28, 28, 0.05);
}
.focus-card:has(input:checked) span {
  color: var(--primary);
}

textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  min-height: 100px;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.consent-group {
  margin-top: 20px;
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}
.checkbox-label input {
  width: auto;
  margin-right: 10px;
  margin-top: 3px;
}
.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}
.consent-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
  margin-left: 23px;
  margin-bottom: 0;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.button-group .btn {
  flex: 1;
  text-align: center;
  display: block;
}

/* Success State */
.success-icon {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
#order-success h3 {
  margin-bottom: 10px;
}
#order-success p {
  color: var(--text);
  margin-bottom: 20px;
}
.success-mock-note {
  background: #f9f9f9;
  border-left: 4px solid var(--accent);
  padding: 15px;
  text-align: left;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 30px;
}
.success-mock-note p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--muted);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .report-focus-grid {
    grid-template-columns: 1fr;
  }
  .button-group {
    flex-direction: column;
  }
}

/* Hero Features List */
.hero__features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.hero__features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
}
.hero__features svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-top: 2px;
}
.hero__features strong {
  color: var(--primary-dark);
}

/* ==========================================================================
   Lal Kitab Horoscope Packages Block (Matching attached design in color scheme)
   ========================================================================== */

.packages-section {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(180deg, #fbf7f0 0%, #f5efe4 100%);
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(176, 133, 68, 0.08) 0%, rgba(251, 247, 240, 0) 70%);
  pointer-events: none;
}

.packages-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  position: relative;
}

.packages-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: #fdf0ee;
  border: 1px solid #f8d7d3;
  color: #8b1525;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(139, 21, 37, 0.06);
}

.packages-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 1.8rem + 2vw, 3.4rem);
  font-weight: 800;
  color: #550d16;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
  line-height: 1.1;
}

.packages-title-accent {
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #b08544, #8b1525);
  margin: 14px auto 0;
  border-radius: 2px;
}

.packages-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 1.2rem auto 0;
  max-width: 760px;
}

/* Grid Layout */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 640px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Individual Package Card */
.package-card {
  background: #ffffff;
  border: 1px solid rgba(139, 21, 37, 0.14);
  border-radius: 24px;
  padding: 2.2rem 1rem 1.8rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(36, 31, 28, 0.04);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 21, 37, 0.35);
  box-shadow: 0 22px 45px rgba(139, 21, 37, 0.14);
}

.package-card--popular {
  border: 2px solid rgba(160, 24, 42, 0.4);
  box-shadow: 0 14px 36px rgba(160, 24, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a0182a 0%, #7a121e 100%);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(160, 24, 42, 0.35);
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 0.95rem + 0.35vw, 1.3rem);
  font-weight: 800;
  color: #550d16;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.4rem 0 0.8rem;
  line-height: 1.2;
  white-space: nowrap;
}

.package-desc {
  font-size: 0.88rem;
  color: #63594f;
  line-height: 1.45;
  margin: 0 0 1.5rem;
  min-height: 2.8em;
}

.package-price-box {
  margin-bottom: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(139, 21, 37, 0.15);
}

.package-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.package-price {
  font-size: 1.95rem;
  font-weight: 800;
  color: #8b1525;
  font-family: var(--font-body);
  line-height: 1;
}

.package-original-price {
  font-size: 0.95rem;
  color: #998e82;
  text-decoration: line-through;
}

.package-savings {
  display: inline-block;
  background: #fdf0ee;
  color: #a0182a;
  font-weight: 800;
  font-size: 0.74rem;
  padding: 3px 10px;
  border-radius: 6px;
  margin-top: 6px;
  border: 1px solid #f8d7d3;
}

.package-features-wrapper {
  flex: 1 1 auto;
  margin-bottom: 1.8rem;
  text-align: left;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 10px;
}

.package-feature--lead {
  font-weight: 700;
  color: #8b1525;
  background: #fdf0ee;
  padding: 7px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px dashed rgba(160, 24, 42, 0.25);
}

.package-check-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-check-icon--lead {
  color: #a0182a;
}

.package-card__footer {
  margin-top: auto;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #a0182a 0%, #831221 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(160, 24, 42, 0.28);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.package-btn:hover {
  background: linear-gradient(135deg, #7a121e 0%, #550d16 100%);
  box-shadow: 0 10px 24px rgba(160, 24, 42, 0.42);
  transform: translateY(-2px);
}

/* ==========================================================================
   Dedicated Checkout Page (/order/) Layout & Summary Sidebar
   ========================================================================== */

.order-page-main {
  padding-bottom: 5rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.checkout-card {
  box-shadow: 0 12px 36px rgba(36, 31, 28, 0.08);
  border: 1px solid rgba(139, 21, 37, 0.15);
}

.order-summary-card {
  background: #ffffff;
  border: 1.5px solid rgba(139, 21, 37, 0.2);
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(36, 31, 28, 0.07);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.summary-card__header {
  background: linear-gradient(135deg, #550d16 0%, #7a1420 100%);
  padding: 1.2rem 1.4rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.summary-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fcece8;
}

.package-switcher-pills {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px;
  border-radius: 20px;
}

.package-pill {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.package-pill:hover {
  color: #ffffff;
}

.package-pill.active {
  background: #ffffff;
  color: #550d16;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.summary-card__body {
  padding: 1.6rem 1.4rem 1.4rem;
}

.summary-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.4rem;
}

.summary-title-row h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #550d16;
  margin: 0;
  text-transform: uppercase;
}

.summary-subtitle {
  font-size: 0.88rem;
  color: #63594f;
  line-height: 1.4;
  margin: 0 0 1.2rem;
}

.summary-price-box {
  background: linear-gradient(180deg, #fdf8f4 0%, #f7efe4 100%);
  border: 1px solid rgba(139, 21, 37, 0.12);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.4rem;
}

.summary-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.summary-price {
  font-size: 2rem;
  font-weight: 800;
  color: #8b1525;
  line-height: 1;
}

.summary-orig-price {
  font-size: 0.95rem;
  color: #998e82;
  text-decoration: line-through;
}

.summary-savings {
  display: inline-block;
  background: #fdf0ee;
  color: #a0182a;
  font-weight: 800;
  font-size: 0.74rem;
  padding: 2px 10px;
  border-radius: 6px;
  margin-top: 6px;
  border: 1px solid #f8d7d3;
}

.summary-features-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #550d16;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.summary-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.summary-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.45;
}

.summary-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.summary-feature--lead {
  background: #fdf0ee;
  border: 1px dashed rgba(160, 24, 42, 0.25);
  padding: 7px 12px;
  border-radius: 8px;
  color: #8b1525;
  margin-bottom: 12px;
  font-weight: 600;
}

.summary-feature--lead svg {
  color: #a0182a;
}
  color: #a0182a;
}

.summary-trust-box {
  border-top: 1px dashed rgba(139, 21, 37, 0.15);
  padding-top: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #63594f;
  margin-bottom: 6px;
  font-weight: 500;
}

.trust-item svg {
  color: #8b1525;
  flex-shrink: 0;
}

.text-center {
  text-align: center !important;
}

/* ==========================================================================
   Breadcrumbs Component (Fix vertical misalignment in <li> items)
   ========================================================================== */

.breadcrumbs {
  padding: 14px 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumbs ol,
.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
  vertical-align: middle;
}

.breadcrumbs li + li::before {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.65;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* ==========================================================================
   Context-Aware Problem Remedies Offer CTA Component (₹699.00)
   ========================================================================== */

.problem-cta-box {
  background: linear-gradient(135deg, #fdf8f4 0%, #f6ebe1 50%, #fceee4 100%);
  border: 2px solid rgba(139, 21, 37, 0.22);
  border-radius: 24px;
  padding: 2.2rem;
  margin: 3rem 0;
  box-shadow: 0 12px 36px rgba(139, 21, 37, 0.08);
  position: relative;
  overflow: hidden;
}

.problem-cta-box::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(176, 133, 68, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.problem-cta-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.problem-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  background: linear-gradient(135deg, #a0182a 0%, #7a121e 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 12px rgba(160, 24, 42, 0.25);
}

.problem-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  font-weight: 800;
  color: #550d16;
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.problem-cta-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}

.problem-cta-price-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.problem-cta-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  border: 1px solid rgba(139, 21, 37, 0.15);
  box-shadow: 0 4px 16px rgba(36, 31, 28, 0.05);
}

.problem-cta-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #8b1525;
  line-height: 1;
}

.problem-cta-orig-price {
  font-size: 1.05rem;
  color: #998e82;
  text-decoration: line-through;
}

.problem-cta-savings {
  background: #fdf0ee;
  color: #a0182a;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid #f8d7d3;
}

.problem-cta-features {
  margin-bottom: 1.5rem;
}

.problem-cta-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.4rem;
}

@media (max-width: 640px) {
  .problem-cta-feature-grid {
    grid-template-columns: 1fr;
  }
}

.problem-cta-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(139, 21, 37, 0.08);
}

.problem-cta-feat svg {
  color: #8b1525;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-cta-feat strong {
  color: #550d16;
}

.problem-cta-print-option {
  margin-bottom: 1.8rem;
}

.print-option-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1.5px dashed rgba(176, 133, 68, 0.5);
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.4;
}

.print-option-box svg {
  color: #b08544;
  flex-shrink: 0;
}

.print-option-box strong {
  color: #550d16;
}

.problem-cta-action {
  text-align: center;
}

.problem-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(160, 24, 42, 0.32);
  transition: all 0.25s ease;
}

.problem-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(160, 24, 42, 0.45);
}

/* ==========================================================================
   Sidebar CTA Widget (Above Other Categories)
   ========================================================================== */

.sidebar__cta-block {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  margin-bottom: 24px;
}

.sidebar-cta-card {
  background: linear-gradient(135deg, #fdf8f4 0%, #f7efe4 100%);
  border: 1.5px solid rgba(139, 21, 37, 0.2);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 6px 20px rgba(139, 21, 37, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, #a0182a 0%, #7a121e 100%);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

.sidebar-cta-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #550d16;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.sidebar-cta-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(139, 21, 37, 0.1);
  margin-bottom: 0.9rem;
}

.sidebar-cta-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #8b1525;
  line-height: 1;
}

.sidebar-cta-orig {
  font-size: 0.85rem;
  color: #998e82;
  text-decoration: line-through;
}

.sidebar-cta-disc {
  background: #fdf0ee;
  color: #a0182a;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.sidebar-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left;
}

.sidebar-cta-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.sidebar-cta-list svg {
  color: #8b1525;
  flex-shrink: 0;
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 16px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 24px;
  background: linear-gradient(135deg, #a0182a 0%, #7a121e 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(160, 24, 42, 0.35);
  transition: all 0.25s ease;
  border: none;
}

.sidebar-cta-btn-text {
  color: #ffffff !important;
  font-weight: 800;
}

.sidebar-cta-gold {
  color: #ffd700 !important;
  font-weight: 900;
  margin-left: 2px;
}

.sidebar-cta-btn:hover {
  background: linear-gradient(135deg, #831221 0%, #550d16 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(160, 24, 42, 0.48);
}

/* ==========================================================================
   Data Tables (Planets & Houses)
   ========================================================================== */

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.table th,
.table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table th {
  background: var(--bg-alt, #f7efe4);
  color: #550d16;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: rgba(139, 21, 37, 0.02);
}

.table a {
  color: var(--accent, #8b1525);
  text-decoration: none;
}

.table a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Sample Reports Download Section
   ========================================================================== */
.sample-report-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, rgba(122, 20, 32, 0.05) 0%, rgba(176, 133, 68, 0.08) 100%);
  border: 1px solid var(--border, #e5d8c5);
  border-left: 5px solid var(--primary, #7a1420);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sample-report-banner-title {
  font-family: var(--font-heading, serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary, #7a1420);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sample-report-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sample-reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sample-report-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5d8c5);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sample-report-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 20, 32, 0.08);
  border-color: var(--primary, #7a1420);
}

.sample-report-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1rem;
}

.sample-report-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(122, 20, 32, 0.08);
  color: var(--primary, #7a1420);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sample-report-info h3 {
  font-size: 1.15rem;
  margin: 0 0 4px 0;
  color: var(--heading, #241f1c);
}

.sample-report-meta {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  margin: 0;
}

.sample-report-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sample-dl-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sample-dl-btn--en {
  background: #7a1420;
  color: #ffffff;
}

.sample-dl-btn--en:hover {
  background: #5a0c16;
  color: #ffffff;
}

.sample-dl-btn--hi {
  background: #b08544;
  color: #ffffff;
}

.sample-dl-btn--hi:hover {
  background: #8e6830;
  color: #ffffff;
}



