/* ============================================================
   BhajanBook.com — "Illuminated Prayer Book"
   Warm cream paper · deep maroon ink · saffron flame · gold leaf
   ============================================================ */

:root {
  --cream:      #FFF8EA;
  --paper:      #FFFDF6;
  --parchment:  #F7E9CE;
  --ink:        #34200F;
  --deep:       #7C2D12;   /* maroon */
  --saffron:    #C2410C;
  --flame:      #E8863A;
  --marigold:   #F0A32E;
  --gold:       #B45309;
  --gold-lt:    #D9A441;
  --gold-pale:  #EFD9A7;
  --soft:       #8B6F52;
  --leaf:       #5B6B3A;
  --shadow:     rgba(124, 45, 18, .18);

  --f-body: 'Mukta Vaani', 'Noto Sans Gujarati', system-ui, sans-serif;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-guj: 'Noto Serif Gujarati', 'Mukta Vaani', serif;

  --fs: 100%;
  --radius: 14px;
  --maxw: 1120px;
}

/* Larger-text mode (A+ toggle) */
html.a-plus { --fs: 118%; }
html { font-size: var(--fs); scroll-behavior: smooth; }

/* High-contrast mode */
html.hi-con {
  --cream: #FFFDF4; --paper: #FFFFFF; --parchment: #FBF3DE;
  --ink: #1A0E04; --soft: #5C4630; --deep: #591804; --saffron: #A62F05;
}
html.hi-con body { background-image: none; }
html.hi-con .card, html.hi-con .b-row { border-width: 2px; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(240,163,46,.14), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23B45309' stroke-opacity='.05'%3E%3Ccircle cx='70' cy='70' r='48'/%3E%3Ccircle cx='70' cy='70' r='30'/%3E%3Cpath d='M70 22c6 14 6 34 0 48-6-14-6-34 0-48zM70 70c6 14 6 34 0 48-6-14-6-34 0-48zM22 70c14-6 34-6 48 0-14 6-34 6-48 0zM70 70c14-6 34-6 48 0-14 6-34 6-48 0z'/%3E%3C/g%3E%3C/svg%3E");
  line-height: 1.65;
  font-size: 1.06rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: var(--saffron); }
::selection { background: var(--gold-pale); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--deep); color: #FFF7E8; padding: 10px 18px; border-radius: 8px;
}
.skip:focus { left: 8px; }

/* ============ HEADER ============ */
.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 234, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-pale);
  box-shadow: 0 1px 0 rgba(180,83,9,.08);
}
.top-inner {
  display: flex; align-items: center; gap: 18px;
  max-width: var(--maxw); margin: 0 auto; padding: 10px 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--deep);
  font-family: var(--f-display); font-weight: 700; font-size: 1.45rem;
  letter-spacing: .3px; line-height: 1;
}
.logo svg { width: 34px; height: 34px; flex: none; }
.logo .guj { font-family: var(--f-guj); font-size: .78rem; color: var(--gold); display: block; letter-spacing: 2px; margin-top: 3px; }

nav.main { margin-left: auto; display: flex; align-items: center; gap: 4px; }
nav.main a {
  text-decoration: none; color: var(--deep);
  font-weight: 600; font-size: .98rem;
  padding: 10px 14px; border-radius: 10px;
  transition: background .18s;
}
nav.main a:hover { background: var(--parchment); }
nav.main a[aria-current="page"] { background: var(--deep); color: #FFF7E8; }

/* Accessibility controls */
.a11y { display: flex; gap: 6px; margin-left: 10px; }
.a11y button {
  font-family: var(--f-body); font-weight: 700;
  border: 1.5px solid var(--gold-lt); background: var(--paper); color: var(--deep);
  border-radius: 9px; padding: 7px 11px; cursor: pointer; font-size: .9rem;
  min-width: 44px; min-height: 40px;
  transition: all .15s;
}
.a11y button:hover { border-color: var(--saffron); }
.a11y button[aria-pressed="true"] { background: var(--deep); color: #FFF7E8; border-color: var(--deep); }

/* Mobile nav */
.nav-toggle { display: none; }
@media (max-width: 900px) {
  .nav-toggle {
    display: block; margin-left: auto; background: none; border: 1.5px solid var(--gold-lt);
    border-radius: 9px; padding: 8px 12px; font-size: 1.2rem; color: var(--deep); cursor: pointer;
    min-height: 44px; min-width: 48px;
  }
  nav.main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 2px solid var(--gold-lt);
    flex-direction: column; align-items: stretch; padding: 10px 16px 16px; gap: 2px;
    box-shadow: 0 14px 30px var(--shadow);
  }
  nav.main.open { display: flex; }
  nav.main a { font-size: 1.12rem; padding: 14px; }
  .a11y { margin-left: 8px; }
}

/* ============ ORNAMENTS ============ */
.rule-orn {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin: 18px auto; color: var(--gold-lt);
}
.rule-orn::before, .rule-orn::after {
  content: ""; height: 2px; width: min(140px, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold-lt));
}
.rule-orn::after { background: linear-gradient(90deg, var(--gold-lt), transparent); }
.rule-orn svg { width: 26px; height: 26px; }

.eyebrow {
  font-size: .82rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}

h1, h2, h3 { font-family: var(--f-display); color: var(--deep); line-height: 1.15; font-weight: 700; }
.guj-head { font-family: var(--f-guj); }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(56px, 9vw, 110px) 20px clamp(48px, 7vw, 90px);
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(240,163,46,.22), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 115%, rgba(124,45,18,.10), transparent 60%);
}
.hero::before {
  content: ""; position: absolute; inset: -80px -80px auto;
  height: 480px; pointer-events: none; opacity: .5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='560' height='560' viewBox='0 0 560 560'%3E%3Cg fill='none' stroke='%23D9A441' stroke-opacity='.28'%3E%3Ccircle cx='280' cy='280' r='250'/%3E%3Ccircle cx='280' cy='280' r='210'/%3E%3Ccircle cx='280' cy='280' r='170'/%3E%3Cg%3E%3Cpath d='M280 30c18 40 18 100 0 140-18-40-18-100 0-140z'/%3E%3Cpath d='M280 390c18 40 18 100 0 140-18-40-18-100 0-140z'/%3E%3Cpath d='M30 280c40-18 100-18 140 0-40 18-100 18-140 0z'/%3E%3Cpath d='M390 280c40-18 100-18 140 0-40 18-100 18-140 0z'/%3E%3Cpath d='M103 103c41 15 84 58 99 99-41-15-84-58-99-99z'/%3E%3Cpath d='M358 358c41 15 84 58 99 99-41-15-84-58-99-99z'/%3E%3Cpath d='M457 103c-15 41-58 84-99 99 15-41 58-84 99-99z'/%3E%3Cpath d='M202 358c-15 41-58 84-99 99 15-41 58-84 99-99z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center -140px / 560px no-repeat;
  animation: slowspin 120s linear infinite;
  transform-origin: 50% 140px;
}
@keyframes slowspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero::before, .flame, .flame-glow { animation: none !important; }
}

.hero > * { position: relative; }

.diya { width: 92px; height: 92px; margin: 0 auto 6px; display: block; }
.flame { transform-origin: 50% 88%; animation: flicker 2.6s ease-in-out infinite; }
.flame-glow { animation: glowpulse 2.6s ease-in-out infinite; transform-origin: 50% 60%; }
@keyframes flicker {
  0%,100% { transform: scaleY(1) rotate(0deg); }
  30%     { transform: scaleY(1.08) rotate(-2deg); }
  55%     { transform: scaleY(.95) rotate(1.6deg); }
  80%     { transform: scaleY(1.05) rotate(-1deg); }
}
@keyframes glowpulse { 0%,100% { opacity: .55; } 50% { opacity: .9; } }

.hero .guj-title {
  font-family: var(--f-guj); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4rem); color: var(--deep);
  text-shadow: 0 1px 0 #fff;
}
.hero .en-title {
  font-family: var(--f-display); font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold); letter-spacing: 6px; text-transform: uppercase; font-weight: 600;
  margin-top: 4px;
}
.hero .tagline {
  max-width: 620px; margin: 18px auto 0; color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.7;
}
.hero .tagline b { color: var(--deep); }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 700; text-decoration: none;
  font-size: 1.08rem; padding: 15px 28px; border-radius: 999px;
  border: none; cursor: pointer; min-height: 52px;
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--flame), var(--saffron));
  color: #FFF7E8;
  box-shadow: 0 6px 18px rgba(194,65,12,.35), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { filter: brightness(1.07); box-shadow: 0 8px 24px rgba(194,65,12,.45); }
.btn-ghost {
  background: var(--paper); color: var(--deep);
  border: 2px solid var(--gold-lt);
}
.btn-ghost:hover { border-color: var(--saffron); background: #FFF4DE; }
.btn-deep {
  background: linear-gradient(180deg, #93381A, var(--deep)); color: #FFF7E8;
  box-shadow: 0 6px 18px rgba(124,45,18,.35);
}
.btn-deep:hover { filter: brightness(1.1); }
.btn-sm { font-size: .95rem; padding: 10px 18px; min-height: 44px; }

/* ============ SECTIONS ============ */
section.band { padding: clamp(48px, 7vw, 84px) 0; }
section.band.alt {
  background: linear-gradient(180deg, rgba(247,233,206,.55), rgba(247,233,206,.15));
  border-top: 1px solid var(--gold-pale); border-bottom: 1px solid var(--gold-pale);
}
.band-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.band-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-top: 8px; }
.band-head p { color: var(--soft); margin-top: 12px; }

/* ============ CARDS ============ */
.grid { display: grid; gap: 22px; }
.grid.g3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid.g2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 3px 14px rgba(124,45,18,.07);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px var(--shadow); }
.card .c-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FDEBD2, var(--gold-pale));
  border: 1px solid var(--gold-lt); margin-bottom: 16px;
}
.card .c-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.card p { color: var(--soft); font-size: 1rem; }

/* Frame card (gold double border, like the booklet cover) */
.frame {
  border: 1px solid var(--gold-lt);
  outline: 1px solid rgba(180,83,9,.45);
  outline-offset: 5px;
  border-radius: 12px;
  background: var(--paper);
}

/* ============ PLAYLIST ============ */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 26px 0 8px;
}
.chip {
  font-family: var(--f-body); font-weight: 600; font-size: .98rem;
  border: 1.5px solid var(--gold-lt); background: var(--paper); color: var(--deep);
  padding: 10px 18px; border-radius: 999px; cursor: pointer; min-height: 44px;
  transition: all .15s;
}
.chip:hover { border-color: var(--saffron); }
.chip[aria-pressed="true"] {
  background: linear-gradient(180deg, var(--flame), var(--saffron));
  color: #FFF7E8; border-color: var(--saffron);
}
.search-box {
  display: flex; align-items: center; gap: 10px; max-width: 480px; margin: 18px auto 0;
  background: var(--paper); border: 1.5px solid var(--gold-lt); border-radius: 999px;
  padding: 4px 8px 4px 20px;
}
.search-box svg { width: 20px; height: 20px; flex: none; color: var(--gold); }
.search-box input {
  flex: 1; border: none; outline: none; background: none;
  font-family: var(--f-body); font-size: 1.05rem; color: var(--ink); padding: 12px 4px; min-width: 0;
}

.sec-head {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin: 40px 0 10px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-lt);
}
.sec-head .sg { font-family: var(--f-guj); font-size: 1.5rem; color: var(--deep); font-weight: 700; }
.sec-head .se { font-size: .82rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-weight: 700; }
.sec-head .count { margin-left: auto; color: var(--soft); font-size: .9rem; }

.b-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 12px; border-bottom: 1px dotted rgba(180,83,9,.35);
  border-radius: 10px;
}
.b-row:hover { background: #FFF4DE; }
.b-num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--flame), var(--saffron));
  color: #FFF7E8; font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; box-shadow: inset 0 1px 2px rgba(255,255,255,.4), 0 2px 5px rgba(124,45,18,.3);
}
.b-titles { flex: 1 1 auto; min-width: 0; }
.b-gu { display: block; font-family: var(--f-guj); font-size: 1.18rem; color: var(--ink); }
.b-en { display: block; font-size: .8rem; color: var(--soft); letter-spacing: .8px; text-transform: uppercase; margin-top: 1px; }
.b-note { font-size: .8rem; color: var(--gold); font-style: italic; }
.b-artist { flex: 0 0 200px; font-size: .92rem; color: var(--deep); text-align: right; }
.b-artist.muted { color: var(--soft); font-style: italic; }
.b-page { flex: 0 0 52px; font-size: .85rem; color: var(--soft); text-align: right; }
.b-play {
  flex: 0 0 96px; text-align: center;
  background: linear-gradient(180deg, var(--flame), var(--saffron)); color: #FFF7E8;
  text-decoration: none; font-size: .95rem; font-weight: 700; font-family: var(--f-body);
  padding: 11px 0; border-radius: 999px; border: none; cursor: pointer; min-height: 44px;
  box-shadow: 0 2px 6px rgba(124,45,18,.35);
}
.b-play:hover { filter: brightness(1.08); }
.b-play.playing { background: linear-gradient(180deg, #93381A, var(--deep)); }
.b-play.none { background: none; color: var(--soft); box-shadow: none; cursor: default; }
.b-yt { flex: 0 0 34px; text-align: center; color: var(--gold); text-decoration: none; font-size: 1.15rem; padding: 8px 0; }
.b-yt:hover { color: var(--saffron); }
.b-embed { display: none; margin: 8px 0 18px 52px; }
.b-embed iframe {
  width: 100%; max-width: 680px; aspect-ratio: 16/9; border: 1px solid var(--gold-lt);
  border-radius: 12px; box-shadow: 0 6px 18px var(--shadow);
}
@media (max-width: 700px) {
  .b-artist, .b-page { display: none; }
  .b-embed { margin-left: 0; }
  .b-gu { font-size: 1.08rem; }
  .b-play { flex-basis: 84px; }
}

/* ============ BOOKLET SHOWCASE ============ */
.booklet-hero { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .booklet-hero { grid-template-columns: 1fr; justify-items: center; text-align: center; } }

.book-mock {
  width: 300px; aspect-ratio: 210/297; position: relative;
  background: linear-gradient(160deg, #FFF9EC, #F9E7C8);
  border: 1px solid var(--gold-lt);
  outline: 1px solid rgba(180,83,9,.5); outline-offset: 6px;
  border-radius: 6px 14px 14px 6px;
  box-shadow: -14px 18px 40px rgba(124,45,18,.28), inset 8px 0 14px -10px rgba(124,45,18,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 30px; text-align: center;
  transform: rotate(-2.5deg);
  transition: transform .3s;
}
.book-mock:hover { transform: rotate(0deg) scale(1.02); }
.book-mock .om { font-size: 3.2rem; background: linear-gradient(180deg, var(--flame), #9A3412); -webkit-background-clip: text; background-clip: text; color: transparent; }
.book-mock .t1 { font-family: var(--f-guj); font-size: 2rem; font-weight: 700; color: var(--deep); margin-top: 8px; }
.book-mock .t2 { font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-top: 6px; font-weight: 700; }
.book-mock .brule { width: 110px; height: 2px; margin: 14px auto 0; background: linear-gradient(90deg, transparent, var(--gold-lt), transparent); }
.book-mock .t3 { font-size: .8rem; color: var(--soft); margin-top: 14px; line-height: 1.6; }

/* Download rows */
.dl-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--paper); border: 1px solid var(--gold-pale); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(124,45,18,.06);
}
.dl-row .d-ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: linear-gradient(135deg, #FDEBD2, var(--gold-pale)); border: 1px solid var(--gold-lt);
  display: flex; align-items: center; justify-content: center;
}
.dl-row .d-ic svg { width: 24px; height: 24px; }
.dl-row .d-body { flex: 1 1 260px; min-width: 0; }
.dl-row .d-body b { font-size: 1.1rem; color: var(--deep); }
.dl-row .d-body span { display: block; color: var(--soft); font-size: .92rem; margin-top: 2px; }
.dl-row .d-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============ ORDER FORM ============ */
.steps {
  display: flex; justify-content: center; gap: 0; margin: 30px auto 36px; max-width: 640px;
  counter-reset: step;
}
.steps li {
  list-style: none; flex: 1; text-align: center; position: relative;
  color: var(--soft); font-size: .85rem; font-weight: 600; padding-top: 44px;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold-lt); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.steps li::after {
  content: ""; position: absolute; top: 17px; left: calc(-50% + 20px); right: calc(50% + 20px);
  height: 2px; background: var(--gold-pale);
}
.steps li:first-child::after { display: none; }
.steps li.active { color: var(--deep); }
.steps li.active::before {
  background: linear-gradient(180deg, var(--flame), var(--saffron));
  border-color: var(--saffron); color: #FFF7E8;
}
.steps li.done::before { background: var(--deep); border-color: var(--deep); color: #FFF7E8; content: "✓"; }

.form-card { max-width: 720px; margin: 0 auto; padding: 34px 30px 38px; }
.form-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.form-card .hint { color: var(--soft); font-size: .98rem; margin-bottom: 24px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; color: var(--deep); margin-bottom: 7px; font-size: 1.02rem; }
.field .opt { color: var(--soft); font-weight: 400; font-size: .88rem; }
.field input[type=text], .field input[type=date], .field input[type=email],
.field input[type=tel], .field input[type=number], .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1.05rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--gold-lt); border-radius: 10px;
  padding: 13px 15px; min-height: 50px;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(232,134,58,.35); border-color: var(--saffron);
}
.field .err { color: #A11D0F; font-size: .9rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select { border-color: #A11D0F; }
.field.invalid .err { display: block; }
.f-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .f-2col { grid-template-columns: 1fr; } }

/* Cover style picker */
.covers { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.cover-opt { cursor: pointer; }
.cover-opt input { position: absolute; opacity: 0; }
.cover-opt .cov {
  aspect-ratio: 210/280; border-radius: 8px; border: 2px solid var(--gold-pale);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px; text-align: center; transition: all .15s; position: relative; overflow: hidden;
}
.cover-opt .cov .cs { font-size: 2rem; }
.cover-opt .cov .cn { font-weight: 700; font-size: .95rem; margin-top: 8px; }
.cover-opt .cov .cd { font-size: .78rem; opacity: .85; margin-top: 3px; line-height: 1.4; }
.cover-opt input:checked + .cov {
  border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,134,58,.3), 0 8px 20px var(--shadow);
  transform: translateY(-2px);
}
.cover-opt input:focus-visible + .cov { outline: 3px solid rgba(232,134,58,.5); }
.cov.marigold { background: linear-gradient(160deg, #FFF3DC, #F6C66A); color: #7C2D12; }
.cov.lotus    { background: linear-gradient(160deg, #FFFDF6, #F3E2E0); color: #8C3A2C; }
.cov.peacock  { background: linear-gradient(160deg, #7C2D12, #4E1B08); color: #F5DFAE; }

/* Quantity + price */
.qty-line { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.qty-line input[type=range] { flex: 1 1 200px; accent-color: var(--saffron); height: 34px; }
.qty-badge {
  font-size: 1.3rem; font-weight: 700; color: var(--deep);
  background: var(--parchment); border: 1px solid var(--gold-lt); border-radius: 10px;
  padding: 8px 16px; min-width: 96px; text-align: center;
}
.price-box {
  margin-top: 18px; background: linear-gradient(180deg, #FFF4DE, #FBEACB);
  border: 1px solid var(--gold-lt); border-radius: 12px; padding: 18px 20px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 22px;
}
.price-box .pb-total { font-size: 1.9rem; font-weight: 700; color: var(--deep); font-family: var(--f-display); }
.price-box .pb-per { color: var(--soft); font-size: .95rem; }
.price-box .pb-note { flex-basis: 100%; color: var(--soft); font-size: .85rem; font-style: italic; }

/* Review block */
.review dl { display: grid; grid-template-columns: 160px 1fr; gap: 10px 18px; }
.review dt { color: var(--soft); font-size: .95rem; }
.review dd { color: var(--ink); font-weight: 600; }
@media (max-width: 520px) { .review dl { grid-template-columns: 1fr; gap: 2px; } .review dt { margin-top: 10px; } }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.trust-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.trust {
  display: flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--gold-pale); border-radius: 999px;
  padding: 9px 18px; color: var(--deep); font-weight: 600; font-size: .95rem;
}
.trust svg { width: 19px; height: 19px; color: var(--gold); flex: none; }

/* Confirmation */
.confirm { text-align: center; max-width: 640px; margin: 0 auto; padding: 50px 26px; }
.confirm .diya { width: 76px; height: 76px; }
.confirm h3 { font-size: 1.7rem; margin-top: 12px; }
.confirm p { color: var(--soft); margin-top: 12px; }

/* ============ QUOTE / VERSE ============ */
.verse {
  text-align: center; max-width: 640px; margin: 0 auto; padding: 10px 20px;
}
.verse .v-guj { font-family: var(--f-guj); font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--deep); line-height: 1.8; }
.verse .v-en { color: var(--soft); font-style: italic; margin-top: 10px; }

/* ============ FOOTER ============ */
footer.site {
  margin-top: 60px; border-top: 1px solid var(--gold-pale);
  background:
    linear-gradient(180deg, rgba(247,233,206,.4), rgba(124,45,18,.06)),
    var(--cream);
  padding: 46px 0 90px; text-align: center; color: var(--soft);
}
footer.site .f-om { font-size: 2rem; background: linear-gradient(180deg, var(--flame), #9A3412); -webkit-background-clip: text; background-clip: text; color: transparent; }
footer.site .f-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin: 16px 0; }
footer.site .f-links a { color: var(--deep); text-decoration: none; font-weight: 600; }
footer.site .f-links a:hover { text-decoration: underline; }
footer.site small { display: block; line-height: 1.8; font-size: .88rem; }

/* Scalloped temple edge above footer */
.temple-edge { height: 26px; overflow: hidden; line-height: 0; }
.temple-edge svg { width: 100%; height: 26px; display: block; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ SING ALONG ============ */
.sing-layout {
  display: grid; grid-template-columns: minmax(340px, 480px) 1fr;
  gap: 34px; align-items: start;
}
@media (max-width: 940px) { .sing-layout { grid-template-columns: 1fr; gap: 0; } }

.video-panel { position: sticky; top: 76px; z-index: 40; }
@media (max-width: 940px) {
  .video-panel {
    top: 58px; margin: 0 -20px; padding: 10px 16px 12px;
    background: rgba(255,248,234,.97); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gold-pale); box-shadow: 0 8px 18px -10px var(--shadow);
  }
}
.video-box {
  border-radius: 14px; overflow: hidden; background: #2A160A;
  border: 1px solid var(--gold-lt); box-shadow: 0 10px 30px var(--shadow);
  aspect-ratio: 16/9; position: relative;
}
.video-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-none {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: #F5DFAE; padding: 20px; gap: 10px;
  background: radial-gradient(ellipse at 50% 30%, #5A2410, #2A160A);
}
.video-none .om { font-size: 2.4rem; opacity: .8; }
.video-none p { font-size: .95rem; opacity: .85; }
.video-none a { color: var(--marigold); }

.sing-ctl { margin-top: 14px; }
.sing-ctl .now {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 10px;
}
.sing-ctl .now .nn {
  flex: none; width: 34px; height: 34px; border-radius: 50%; align-self: center;
  background: radial-gradient(circle at 35% 30%, var(--flame), var(--saffron));
  color: #FFF7E8; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.sing-ctl .now .nt { font-family: var(--f-guj); font-size: 1.25rem; font-weight: 700; color: var(--deep); }
.sing-ctl .now .na { color: var(--soft); font-size: .9rem; }
.sing-nav { display: flex; gap: 10px; align-items: center; }
.sing-nav select {
  flex: 1 1 auto; min-width: 0; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--gold-lt); border-radius: 10px;
  padding: 11px 12px; min-height: 48px;
}
.sing-nav button {
  flex: none; width: 48px; height: 48px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid var(--gold-lt); background: var(--paper); color: var(--deep);
  font-size: 1.15rem; font-weight: 700; transition: all .15s;
}
.sing-nav button:hover { border-color: var(--saffron); background: #FFF4DE; }
.sing-nav button:disabled { opacity: .35; cursor: default; }

.lyr-tools {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin: 14px 0 4px;
}
.lyr-tools .chip { padding: 8px 15px; min-height: 40px; font-size: .92rem; }
.lyr-tools .sizer { margin-left: auto; display: flex; gap: 6px; }
.lyr-tools .sizer button {
  border: 1.5px solid var(--gold-lt); background: var(--paper); color: var(--deep);
  border-radius: 9px; min-width: 42px; min-height: 40px; cursor: pointer; font-weight: 700; font-family: var(--f-body);
}
.lyr-tools .sizer button:hover { border-color: var(--saffron); }

.lyrics { --lyr: 1.22rem; padding: 6px 0 40px; }
@media (max-width: 940px) { .lyrics { padding-top: 20px; } }
.lyr-title { text-align: center; margin-bottom: 6px; }
.lyr-title .tg { font-family: var(--f-guj); font-size: 1.7rem; font-weight: 700; color: var(--deep); display: block; }
.lyr-title .te { font-size: .85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin-top: 3px; }
.lyr-title .tp { color: var(--soft); font-size: .88rem; display: block; margin-top: 6px; }

.lyr-pair { padding: 18px 6px; border-bottom: 1px dotted rgba(180,83,9,.3); text-align: center; }
.lyr-pair:last-child { border-bottom: none; }
.lyr-gu { font-family: var(--f-guj); font-size: var(--lyr); line-height: 1.9; color: var(--ink); }
.lyr-en { font-size: calc(var(--lyr) * .82); line-height: 1.75; color: var(--soft); font-style: italic; margin-top: 10px; }
.lyrics.mode-gu .lyr-en { display: none; }
.lyrics.mode-en .lyr-gu { display: none; }
.lyrics.mode-en .lyr-en { margin-top: 0; color: var(--ink); font-style: normal; }

.lyrics .seclabel {
  display: inline-block; margin: 2px auto 6px; color: var(--deep); font-weight: 700;
  letter-spacing: 2px; font-size: 82%;
  border-top: 1px solid var(--gold-lt); border-bottom: 1px solid var(--gold-lt); padding: 2px 14px;
}
.lyrics .ref { color: var(--saffron); }
.lyrics .byline { color: var(--gold); font-style: italic; font-size: 88%; }
.lyrics .drow { display: flex; align-items: baseline; line-height: 1.9; text-align: left; }
.lyrics .drow > span:first-child { flex: 1 1 48%; }
.lyrics .dmid { flex: 0 0 40px; text-align: center; color: var(--gold); }
.lyrics .dref { flex: 1 1 44%; text-align: right; color: var(--saffron); }

.b-lyr { flex: 0 0 34px; text-align: center; text-decoration: none; font-size: 1.05rem; padding: 8px 0; }
.b-lyr:hover { filter: brightness(1.2); }

/* ============ MISC ============ */
.center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.testimonial { font-style: italic; color: var(--soft); }
.testimonial b { display: block; font-style: normal; color: var(--deep); margin-top: 10px; font-size: .95rem; }
