/* ============================================================
   KZ SUPREME — All-in-one premium layer
   Dark mode + Hebcal + Memorial Wall + Donate + Voice + Push
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   1. DARK MODE — variables override
   ───────────────────────────────────────────────────────────── */
html[data-theme="dark"]{
  --bg:        #0a1124;
  --bg-2:      #0f172e;
  --bg-3:      #161e3a;
  --ink:       #f8e8b8;
  --ink-2:     #e9d5a0;
  --muted:     #b8a878;
  --muted-2:   #8a8060;
  --gold:      #d4b07a;
  --gold-2:    #f1d597;
  --gold-soft: #3a2e18;
  --gold-deep: #f1d597;
  --cream:     #1a2342;
  --border:    #2c3a5e;
  --border-strong: #3d4f80;
  --white:     #1a2342;
  --shadow-sm: 0 6px 20px rgba(0,0,0,.4);
  --shadow:    0 18px 48px rgba(0,0,0,.5);
  --shadow-lg: 0 36px 80px rgba(0,0,0,.6);
}
html[data-theme="dark"] body{
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(212,176,122,.12), transparent 60%),
    radial-gradient(900px 500px at -5% 10%, rgba(241,213,151,.08), transparent 55%),
    linear-gradient(180deg, #0f172e 0%, #0a1124 50%, #0f172e 100%) !important;
  color: var(--ink);
}
html[data-theme="dark"] .topbar{
  background: linear-gradient(180deg, rgba(15,23,46,.92), rgba(15,23,46,.85)) !important;
  border-bottom-color: rgba(212,176,122,.18);
}
html[data-theme="dark"] .nav-drop,
html[data-theme="dark"] .kz-lang-menu{
  background: rgba(15,23,46,.96) !important;
  border-color: rgba(212,176,122,.22) !important;
}
html[data-theme="dark"] .card,
html[data-theme="dark"] .fr-card{
  background: linear-gradient(180deg, rgba(22,30,58,.9), rgba(15,23,46,.95)) !important;
  border-color: rgba(212,176,122,.18);
  color: var(--ink);
}
html[data-theme="dark"] .modal-card,
html[data-theme="dark"] .fr-modal-card{
  background: linear-gradient(180deg, #1a2342, #0f172e) !important;
  color: var(--ink);
}
html[data-theme="dark"] .btn-primary{
  background: linear-gradient(135deg, var(--gold-2), var(--gold)) !important;
  color: #0a1124 !important;
}
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea{
  background: #0f172e !important;
  color: var(--ink) !important;
  border-color: rgba(212,176,122,.25) !important;
}
html[data-theme="dark"] .kz-vocalized{
  background: linear-gradient(180deg, #f1d597 0%, #d4b07a 50%, #b8935a 100%) !important;
  -webkit-background-clip: text;
  background-clip: text;
}

/* Theme toggle button */
.kz-theme-btn{
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .35s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
  overflow: hidden;
  margin-inline-start: 4px;
}
.kz-theme-btn:hover{
  transform: rotate(15deg) scale(1.08);
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(184,147,90,.25);
}
.kz-theme-btn .kz-sun,
.kz-theme-btn .kz-moon{
  position: absolute;
  transition: transform .5s var(--ease-spring, cubic-bezier(.34,1.56,.64,1)), opacity .3s;
}
.kz-theme-btn .kz-sun{ color: #f5a623; }
.kz-theme-btn .kz-moon{ color: #f1d597; }
html:not([data-theme="dark"]) .kz-theme-btn .kz-moon{ transform: scale(0) rotate(180deg); opacity: 0; }
html[data-theme="dark"]      .kz-theme-btn .kz-sun { transform: scale(0) rotate(-180deg); opacity: 0; }

/* ─────────────────────────────────────────────────────────────
   2. HEBCAL CALENDAR WIDGET
   ───────────────────────────────────────────────────────────── */
.kz-cal-widget{
  position: relative;
  margin: clamp(20px, 3vw, 40px) auto;
  max-width: var(--container-max, min(1480px, 92vw));
  padding: 0 clamp(16px, 2vw, 32px);
}
.kz-cal-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.kz-cal-card{
  position: relative;
  padding: 20px;
  background: linear-gradient(180deg, var(--cream), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
}
.kz-cal-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover, 0 24px 60px rgba(11,31,58,.16));
}
.kz-cal-card::before{
  content: "";
  position: absolute;
  inset-inline-end: -30px;
  top: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--cat-color, rgba(212,176,122,.18));
  opacity: .25;
  pointer-events: none;
}
.kz-cal-tag{
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.kz-cal-name{
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw + 12px, 22px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.kz-cal-name .gold{
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kz-cal-meta{
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.kz-cal-large{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--ink), var(--ink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kz-cal-shabbat-times{
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.kz-shabbat-city-select{
  background: rgba(212,176,122,.1);
  border: 1px solid rgba(212,176,122,.3);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color .25s, background .25s;
  max-width: 140px;
}
.kz-shabbat-city-select:hover,
.kz-shabbat-city-select:focus{
  border-color: var(--gold);
  background: rgba(212,176,122,.18);
}
.kz-cal-shabbat-times > span{
  flex: 1;
  min-width: 0;
  background: rgba(212,176,122,.12);
  border: 1px solid rgba(212,176,122,.25);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  text-align: center;
  color: var(--ink-2);
}
.kz-cal-shabbat-times strong{
  display: block;
  color: var(--gold-deep);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────────────────
   3. GLOBAL MEMORIAL WALL
   ───────────────────────────────────────────────────────────── */
.kz-memorial{
  /* Force always visible — never affected by reveal animations */
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  position: relative;
  margin: clamp(40px, 5vw + 20px, 80px) auto;
  max-width: var(--container-max, min(1480px, 92vw));
  padding: clamp(28px, 4vw + 16px, 56px) clamp(20px, 2vw + 10px, 40px);
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,176,122,.12), transparent 60%),
    linear-gradient(180deg, #0a1124 0%, #0f172e 100%);
  border: 1px solid rgba(212,176,122,.2);
  border-radius: clamp(20px, 2vw + 14px, 32px);
  color: #fff;
  overflow: hidden;
}
.kz-memorial::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(212,176,122,.08) 0%, transparent 30%),
                    radial-gradient(circle at 80% 20%, rgba(241,213,151,.06) 0%, transparent 30%);
  pointer-events: none;
}
.kz-memorial-head{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.kz-memorial-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,176,122,.15);
  color: #f1d597;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .14em;
  border: 1px solid rgba(212,176,122,.3);
  font-weight: 600;
  margin-bottom: 12px;
}
.kz-memorial-eyebrow::before{
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #ffb84d;
  box-shadow: 0 0 8px #ff7a18;
  animation: ping-soft 2s infinite;
}
.kz-memorial-title{
  font-family: var(--serif);
  font-size: clamp(28px, 4vw + 12px, 48px);
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.kz-memorial-title .gold{
  background: linear-gradient(120deg, #f1d597, #c6a054, #f1d597);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shift 6s ease-in-out infinite;
}
.kz-memorial-lead{
  color: rgba(255,255,255,.75);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.kz-memorial-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 30px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px){ .kz-memorial-stats{ grid-template-columns: repeat(2, 1fr); } }
.kz-mem-stat{
  text-align: center;
  padding: 18px;
  background: rgba(212,176,122,.06);
  border: 1px solid rgba(212,176,122,.18);
  border-radius: 14px;
}
.kz-mem-stat-num{
  font-family: var(--serif);
  font-size: clamp(22px, 2vw + 12px, 32px);
  font-weight: 700;
  color: #f1d597;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kz-mem-stat-label{
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  letter-spacing: .04em;
}

.kz-memorial-wall{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
  max-height: 540px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-color: rgba(212,176,122,.4) transparent;
}
.kz-memorial-candle{
  position: relative;
  text-align: center;
  padding: 18px 10px 12px;
  background: rgba(212,176,122,.06);
  border: 1px solid rgba(212,176,122,.2);
  border-radius: 14px;
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.kz-memorial-candle:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.4), 0 0 24px rgba(241,213,151,.15);
  background: rgba(212,176,122,.1);
}
.kz-mem-flame{
  width: 30px;
  height: 44px;
  margin: 0 auto 12px;
  position: relative;
}
.kz-mem-flame::before{
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 28px;
  background: linear-gradient(180deg, #f5e3b0, #b8935a);
  border-radius: 2px 2px 6px 6px;
  box-shadow: inset -3px 0 6px rgba(0,0,0,.25);
}
.kz-mem-flame::after{
  content: "";
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 18px;
  background: radial-gradient(ellipse at center bottom, #fffaeb 0%, #ffd66e 35%, #ff7a18 75%, transparent 100%);
  border-radius: 50% 50% 35% 35%;
  box-shadow: 0 0 20px rgba(255,180,80,.8), 0 0 40px rgba(255,140,60,.4);
  animation: flame-flicker 1.6s ease-in-out infinite, flame-sway 3.4s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.kz-mem-name{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 13px;
  color: #f1d597;
  line-height: 1.3;
  margin-bottom: 4px;
}
.kz-mem-by{
  font-size: 10px;
  color: rgba(255,255,255,.5);
  line-height: 1.3;
}

.kz-memorial-cta{
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.kz-mem-light-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f1d597, #c6a054);
  color: #0a1124;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  box-shadow: 0 8px 24px rgba(241,213,151,.3);
}
.kz-mem-light-btn:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(241,213,151,.5);
}

/* ─────────────────────────────────────────────────────────────
   4. DONATE SECTION
   ───────────────────────────────────────────────────────────── */
.kz-donate{
  position: relative;
  margin: clamp(40px, 5vw + 20px, 80px) auto;
  max-width: var(--container-max, min(1480px, 92vw));
  padding: clamp(28px, 4vw + 16px, 56px) clamp(20px, 2vw + 10px, 40px);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(212,176,122,.18), transparent 60%),
    linear-gradient(135deg, var(--cream), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: clamp(20px, 2vw + 14px, 32px);
  text-align: center;
  overflow: hidden;
}
.kz-donate-title{
  font-family: var(--serif);
  font-size: clamp(26px, 3vw + 14px, 40px);
  margin: 12px 0 10px;
  line-height: 1.1;
}
.kz-donate-title .gold{
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kz-donate-lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.kz-donate-options{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.kz-donate-card{
  position: relative;
  padding: 24px 18px;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 16px;
  cursor: pointer;
  transition: all .3s var(--ease-spring);
  text-decoration: none;
  color: inherit;
  display: block;
}
.kz-donate-card:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(184,147,90,.2);
}
.kz-donate-amount{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.kz-donate-purpose{
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 4px;
}
.kz-donate-meaning{
  font-size: 12px;
  color: var(--muted);
}
.kz-donate-providers{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}
.kz-donate-provider{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  transition: all .25s;
}
.kz-donate-provider:hover{
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 6px 14px rgba(184,147,90,.2);
}

/* ─────────────────────────────────────────────────────────────
   5. VOICE SEARCH MIC
   ───────────────────────────────────────────────────────────── */
.kz-voice-btn{
  position: absolute;
  top: 50%;
  inset-inline-end: 90px;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  z-index: 5;
  color: var(--gold-deep);
}
.kz-voice-btn:hover{
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.kz-voice-btn.is-listening{
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: #ef4444;
  color: #fff;
  animation: kz-mic-pulse 1.2s ease-in-out infinite;
}
@keyframes kz-mic-pulse{
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  50%      { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
}

/* ─────────────────────────────────────────────────────────────
   6. PUSH NOTIFICATIONS PERMISSION CARD
   ───────────────────────────────────────────────────────────── */
.kz-push-card{
  position: fixed;
  bottom: 16px;
  inset-inline-end: 16px;
  width: min(360px, 92vw);
  z-index: 8500;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11,31,58,.4);
  border: 1px solid rgba(212,176,122,.3);
  display: none;
  animation: install-rise .4s var(--ease-spring);
}
.kz-push-card.is-visible{ display: block; }
.kz-push-card h4{
  font-family: var(--serif);
  font-size: 16px;
  margin: 0 0 6px;
  color: #f1d597;
}
.kz-push-card p{
  font-size: 13px;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
  line-height: 1.5;
}
.kz-push-actions{ display: flex; gap: 8px; }
.kz-push-btn{
  flex: 1;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s;
}
.kz-push-btn:hover{ transform: translateY(-1px); }
.kz-push-btn.primary{
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #0a1124;
}
.kz-push-btn.ghost{
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}

/* ─────────────────────────────────────────────────────────────
   7a. PAYMENT MODALS (Bit + Bank)
   ───────────────────────────────────────────────────────────── */
.kz-pay-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.kz-pay-back{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(11,31,58,.55), rgba(11,31,58,.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kz-pay-card{
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 60px 140px rgba(11,31,58,.32);
  animation: install-rise .4s var(--ease-spring, cubic-bezier(.34,1.56,.64,1));
}
.kz-pay-close{
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}
.kz-pay-close:hover{
  background: var(--gold-soft);
  transform: rotate(90deg);
}
.kz-pay-card h2{
  font-family: var(--serif);
  font-size: 24px;
  margin: 8px 0 6px !important;
}
.kz-pay-card p{
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 14px;
}
.kz-bit-phone-card{
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,0,255,.08), rgba(0,0,255,.02));
  border: 1.5px solid #4a90e2;
  border-radius: 14px;
  padding: 14px 20px;
  margin: 18px 0;
}
.kz-bit-phone{
  flex: 1;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #4a90e2;
  letter-spacing: .04em;
}
.kz-pay-copy{
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: transform .2s;
}
.kz-pay-copy:hover{ transform: translateY(-1px); }
.kz-pay-qr{
  margin: 18px auto;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.kz-pay-qr img{ display: block; max-width: 100%; height: auto; }
.kz-bank-details{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
  text-align: start;
}
.kz-bank-details > div{
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 10px;
}
.kz-bank-details span{
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.kz-bank-details strong{
  font-size: 17px;
  color: var(--ink);
  font-family: ui-monospace, 'SF Mono', monospace;
}
.kz-bank-copy{ width: 100%; padding: 12px; font-size: 14px; margin-top: 10px; }

/* ─────────────────────────────────────────────────────────────
   7b. CANDLE PHOTO UPLOAD
   ───────────────────────────────────────────────────────────── */
.kz-candle-upload-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.kz-candle-upload-card{
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  background: linear-gradient(180deg, #1a2342, #0a1124);
  color: #fff;
  border: 1px solid rgba(212,176,122,.3);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}
.kz-candle-upload-card h2{
  font-family: var(--serif);
  font-size: 22px;
  color: #f1d597;
  margin: 0 0 12px;
}
.kz-candle-upload-card label{
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  margin: 14px 0 6px;
  text-align: start;
}
.kz-candle-upload-card input[type="text"]{
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,176,122,.3);
  border-radius: 10px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
}
.kz-candle-upload-card input[type="text"]::placeholder{ color: rgba(255,255,255,.4); }
.kz-candle-photo-drop{
  margin: 16px 0;
  border: 2px dashed rgba(212,176,122,.4);
  border-radius: 14px;
  padding: 28px;
  cursor: pointer;
  transition: all .25s;
  background: rgba(255,255,255,.03);
}
.kz-candle-photo-drop:hover{
  border-color: #f1d597;
  background: rgba(212,176,122,.08);
}
.kz-candle-photo-drop.has-image{
  border-style: solid;
  padding: 8px;
}
.kz-candle-photo-preview{
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.kz-candle-photo-text{
  color: rgba(255,255,255,.6);
  font-size: 13px;
}
.kz-candle-photo-text strong{ color: #f1d597; display: block; font-size: 16px; margin-bottom: 4px; }
.kz-candle-upload-actions{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.kz-candle-upload-actions button{
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform .2s;
}
.kz-candle-upload-actions .primary{
  background: linear-gradient(135deg, #f1d597, #c6a054);
  color: #0a1124;
}
.kz-candle-upload-actions .ghost{
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}

/* Memorial candle WITH photo */
.kz-memorial-candle.has-photo .kz-mem-flame{
  display: none;
}
.kz-memorial-candle.has-photo .kz-mem-photo{
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 2px solid rgba(212,176,122,.4);
}

/* ─────────────────────────────────────────────────────────────
   7. AUDIO TOGGLE — small icon in topbar
   ───────────────────────────────────────────────────────────── */
.kz-audio-toggle{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  transition: all .25s;
  margin-inline-start: 4px;
}
.kz-audio-toggle:hover{
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: scale(1.08);
}
.kz-audio-toggle.is-muted{ opacity: .5; }
