/* ═══════════════════════════════════════════════════════
   ODYSSEY THEME — Checkout & Plans Pages Stylesheet
   v2.6.8
═══════════════════════════════════════════════════════ */

/* ── CHECKOUT: no nav, no float bar ── */
body.od-checkout-page .top-nav,
body.od-checkout-page .float-bar { display: none !important; }

/* Ambient gradient orbs — match checkout.html exactly */
.checkout-orbs, .ambient-glows {
  position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden;
}
.checkout-orb, .glow-orb {
  position: absolute; border-radius: 50%; filter: blur(95px); opacity: 0.72;
  animation: orbDrift 20s infinite alternate ease-in-out;
}
.orb-orange { top: -10%; left: 15%; width: 45vw; height: 45vw;
  background: radial-gradient(circle, #ff8a65 0%, rgba(255,138,101,0) 70%); }
.orb-cyan   { bottom: -15%; right: 10%; width: 50vw; height: 50vw;
  background: radial-gradient(circle, #4fc3f7 0%, rgba(79,195,247,0) 70%); animation-delay: -5s; }
.orb-purple { top: 35%; right: 25%; width: 35vw; height: 35vw;
  background: radial-gradient(circle, #b388ff 0%, rgba(179,136,255,0) 70%); animation-delay: -10s; }
@keyframes orbDrift { 0%{transform:translateY(0) scale(1)} 100%{transform:translateY(25px) scale(1.08)} }

/* Checkout pages use scroll, not overflow:hidden */
body.page-template-page-plans,
body.page-template-page-annes,
body.od-checkout-page,
body.od-plans-page {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 40px 16px 60px;
  background: #f0f3f8;
}

/* ── BRAND LOGO (checkout pages) ── */
.checkout-brand-logo {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--ink); margin-bottom: 30px;
  text-align: center; display: flex; justify-content: center; align-items: center;
}
.checkout-brand-logo img { height: 32px; width: auto; display: block; }
.workspace-footer a { color: var(--ink-muted); text-decoration: none; }
.workspace-footer a:hover { text-decoration: underline; }

/* ── STEP TRACK ── */
.step-track-wrapper {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto 36px;
  width: 100%; max-width: 440px;
}
.step-connecting-line {
  position: absolute; top: 19px; left: 10%; right: 10%; height: 3px;
  background: rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
  z-index: 1; border-radius: 4px;
}
.step-connecting-line-progress {
  position: absolute; top: 0; left: 0; width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--melon) 0%, #b388ff 100%);
  transition: width 0.4s var(--ease); border-radius: 4px;
}
.step-circles { display: flex; justify-content: space-between; width: 100%; position: relative; z-index: 2; }
.step-circle-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--border-glass);
  /* WebGL glass — background transparent */
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink-muted);
  cursor: pointer; position: relative;
  transition: all 0.4s var(--ease);
  box-shadow: inset 0 1.5px 1px rgba(255,255,255,0.95), inset 0 10px 15px rgba(255,255,255,0.45), 0 8px 20px rgba(31,38,135,0.04);
}
.step-circle-btn::before {
  content: ''; position: absolute; top: 1.5px; left: 5px; right: 5px; height: 11px;
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 100%);
  border-radius: 50% / 3px; pointer-events: none;
}
.step-circle-btn.active {
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.1) 100%);
  border-color: #fff; color: var(--ink);
  box-shadow: inset 0 2px 2px rgba(255,255,255,1), inset 0 12px 18px rgba(255,255,255,0.5), 0 12px 24px rgba(0,0,0,0.05);
}
.step-circle-btn.active::after {
  content: ''; position: absolute; inset: -4px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(231,111,81,0.22) 0%, transparent 70%);
}
.step-circle-btn.done {
  border-color: #fff; color: var(--ink);
  box-shadow: inset 0 1.5px 1.5px rgba(255,255,255,0.9), inset 0 10px 15px rgba(255,255,255,0.4), 0 8px 16px rgba(0,0,0,0.04);
}
.step-circle-btn.done::after {
  content: ''; position: absolute; inset: -4px; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,195,247,0.22) 0%, transparent 70%);
}

/* ── WORKSPACE ── */
.workspace {
  display: grid; grid-template-columns: 1fr 1.15fr;
  width: 100%; max-width: 1100px; min-height: 680px;
  /* WebGL canvas renders the glass — background transparent so canvas shows through */
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 28px; overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(0,0,0,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.35),
    0 40px 100px rgba(31,38,135,0.12);
}
.workspace::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.016;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── LEFT PANE ── */
.canvas-pane {
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.08) 100%);
  border-right: 1px solid var(--border-glass);
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.canvas-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
 color: var(--ink-muted);
}
.pass-viewport { flex: 1; display: flex; align-items: center; justify-content: center; margin: 28px 0; }
.access-pass {
  position: relative; width: 300px; height: 185px;
  /* WebGL glass — transparent so canvas shows through */
  background: transparent;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.95), inset 0 -1px 0 rgba(0,0,0,0.05), 0 30px 60px rgba(31,38,135,0.08);
  transition: transform 0.5s var(--ease); overflow: hidden;
}
.access-pass::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.45) 40%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.access-pass:hover { transform: translateY(-6px) scale(1.02); }
.pass-wordmark { font-family: var(--font-head); font-size: 10px; font-weight: 400; letter-spacing: 0.22em; color: var(--ink-muted); }
.pass-name { font-family: var(--font-head); font-size: 20px; font-weight: 400; color: var(--ink); line-height: 1.2; }
.pass-address { font-size: 11px; font-weight: 500; color: var(--ink-mid); margin-top: 3px; }
.summary-widget {
  background: rgba(255,255,255,0.40);
  border: 1px solid var(--border-glass);
  border-radius: 18px; padding: 20px;
  display: flex; flex-direction: column; gap: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 20px rgba(0,0,0,0.02);
}
.summary-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; }
.summary-row .sr-label { color: var(--ink-mid); font-weight: 500; }
.summary-row .sr-value { color: var(--ink); font-weight: 600; }
.summary-row.total { border-top: 1px solid rgba(255,255,255,0.5); padding-top: 11px; margin-top: 2px; }
.summary-row.total .sr-label { color: var(--ink); font-weight: 600; }
.summary-row.total .sr-value { font-size: 18px; }
.shipping-block {
  margin-top: 14px;
  background: rgba(231,111,81,0.08);
  border: 1.5px solid rgba(231,111,81,0.2);
  border-radius: 16px; padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.shipping-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--melon); margin-bottom: 5px; }
.shipping-name { font-family: var(--font-head); font-size: 15px; font-weight: 400; color: var(--ink); }
.shipping-addr { font-size: 12px; font-weight: 500; color: var(--ink-mid); margin-top: 3px; line-height: 1.4; }

/* ── RIGHT PANE ── */
.form-pane { padding: 52px 52px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.panel-title { font-family: var(--font-head); font-size: 30px; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 24px; color: var(--ink); }

/* ── PLAN CARDS (checkout step 1) ── */
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.plan-node {
  /* WebGL canvas renders glass at this position — transparent background */
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 18px; padding: 22px;
  min-height: 148px; cursor: pointer; opacity: 0.55;
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.plan-node::before {
  content: ''; position: absolute; top: 1.5px; left: 6px; right: 6px; height: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  border-radius: 50% / 3px; pointer-events: none;
}
.plan-node.active {
  background: rgba(255,255,255,0.85);
  border: 2px solid #fff; opacity: 1;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06), inset 0 2px 2px rgba(255,255,255,1), inset 0 12px 18px rgba(255,255,255,0.4);
}
.plan-check {
  position: absolute; top: 18px; right: 18px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.03); transition: all 0.25s;
}
.plan-node.active .plan-check { background: var(--melon); border-color: var(--melon); }
.plan-check-svg { width: 9px; height: 9px; color: #fff; display: none; }
.plan-node.active .plan-check-svg { display: block; }
.plan-title { font-family: var(--font-head); font-size: 15px; font-weight: 400; color: var(--ink); margin-bottom: 3px; }
.plan-desc { font-size: 12px; font-weight: 500; color: var(--ink-mid); line-height: 1.4; margin: 3px 0; }
.plan-price { font-size: 19px; font-weight: 600; color: var(--ink); margin-top: auto; padding-top: 8px; }
.plan-badge { display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 0.08em; background: var(--ink); color: #fff; padding: 3px 9px; border-radius: 4px; margin-top: 6px; width: fit-content; }
.plan-promo { font-size: 11px; font-weight: 500; color: var(--melon); margin-top: 4px; }

/* ── FORM FIELDS ── */
.field-grid { display: grid; gap: 13px; }
.field-grid.c2 { grid-template-columns: 1fr 1fr; }
.field-grid.c3 { grid-template-columns: 2fr 1fr 1fr; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13px; font-weight: 500; color: var(--ink); }
.field-input {
  width: 100%; height: 50px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px; padding: 0 15px;
  font-size: 14px; font-weight: 500; font-family: var(--font-body);
  color: var(--ink); outline: none;
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 1.5px 3px rgba(0,0,0,0.04), 0 1px 0 rgba(255,255,255,0.9);
}
.field-input::placeholder { color: var(--ink-muted); opacity: 0.65; }
.field-input:focus { border-color: rgba(0,0,0,0.22); background: rgba(255,255,255,0.92); box-shadow: 0 0 0 3px rgba(231,111,81,0.10), inset 0 1.5px 3px rgba(0,0,0,0.04); }
.field-error { border-color: rgba(231,111,81,0.7) !important; background: rgba(231,111,81,0.04) !important; }

/* ── TOGGLES ── */
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  margin: 18px 0; cursor: pointer; user-select: none;
}
.toggle-text { display: flex; flex-direction: column; gap: 2px; }
.toggle-title { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.toggle-sub { font-size: 12px; font-weight: 400; color: var(--ink-mid); }
.toggle-switch {
  width: 48px; height: 28px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px; padding: 2px;
  position: relative; transition: all 0.3s;
  box-shadow: inset 0 1.5px 2px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.toggle-thumb {
  width: 24px; height: 24px; background: #fff; border-radius: 50%;
  transition: all 0.3s var(--ease);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1), inset 0 1px 1px rgba(255,255,255,0.9);
}
.toggle-row.is-on .toggle-switch { background: var(--melon); border-color: var(--melon); }
.toggle-row.is-on .toggle-thumb { transform: translateX(20px); }

/* ── STEP 3 REVIEW ── */
.review-card {
  background: rgba(255,255,255,0.40);
  border: 1px solid var(--border-glass);
  border-radius: 16px; padding: 20px; margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.review-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.5); font-size: 13px;
}
.review-row:last-child { border: none; padding-bottom: 0; }
.review-row-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 2px; }
.review-row-val { color: var(--ink); font-weight: 500; }
.review-row-price { font-weight: 600; color: var(--ink); flex-shrink: 0; margin-left: 16px; }
.edit-link {
  font-size: 11px; color: var(--melon); text-decoration: underline;
  text-underline-offset: 2px; cursor: pointer; flex-shrink: 0; margin-left: 12px;
  background: none; border: none; font-family: var(--font-body);
}
.promo-row { color: var(--melon); }

/* ── ACTIONS ── */
.actions {
  display: flex; justify-content: flex-end;
  align-items: center; gap: 14px; margin-top: 28px;
  position: relative;
}
.actions .btn-back { margin-right: auto; }
.actions::before {
  content: ''; position: absolute;
  right: 0; top: -15px; bottom: -15px; width: 86px;
  background: radial-gradient(circle, rgba(231,111,81,0.28) 0%, rgba(236,72,153,0.24) 50%, transparent 100%);
  filter: blur(20px); z-index: 1; pointer-events: none;
}
.btn-next {
  height: 52px; padding: 0 32px;
  border-radius: 26px;
  border: 1px solid rgba(177,177,177,0.35);
  background: var(--cobalt-glass);
  color: #f7f7f7;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; position: relative; z-index: 2;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: opacity 0.2s;
}
.btn-next:hover { opacity: 0.88; }
.btn-submit {
  width: auto !important; padding: 0 36px !important;
  border-radius: 28px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important; font-weight: 500 !important;
  height: 56px !important;
}
.btn-back {
  height: 50px; padding: 0 24px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 25px;
  background: rgba(255,255,255,0.06);
  color: var(--ink); font-family: var(--font-body); font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-back:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); }
.secure-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-muted); margin-top: 14px; font-weight: 500;
}
.workspace-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 18px; font-size: 11px; color: var(--ink-muted); font-weight: 500;
}

/* ── STEP SLIDE ANIMATION ── */
.step-slide { display: none !important; }
.step-slide.active { display: flex !important; flex-direction: column; animation: stepIn 0.45s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); filter: blur(3px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

/* ── PROCESSING SPINNER ── */
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .workspace { grid-template-columns: 1fr; border-radius: 20px; }
  .canvas-pane { display: none; }
  .form-pane { padding: 36px 24px 28px; }
  .field-grid.c2, .field-grid.c3 { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   ANNE'S FAMILY CHECKOUT — identity layer
   Same glass system as Odyssey; visually independent.
═══════════════════════════════════════════════════════ */

/* Anne's ambient orbs: fuchsia + coral + lavender */
.orb-fuchsia { top: -10%; left: 15%; width: 45vw; height: 45vw; background: radial-gradient(circle, #ec4899 0%, rgba(236,72,153,0) 70%) !important; }
.orb-coral   { bottom: -15%; right: 10%; width: 50vw; height: 50vw; background: radial-gradient(circle, #f87171 0%, rgba(248,113,113,0) 70%) !important; animation-delay: -5s; }

/* Anne's logo bar */
.checkout-top-bar--annes { padding-bottom: 4px; }
.annes-wordmark {
  font-family: var(--font-head); font-size: 17px; font-weight: 400;
  letter-spacing: 0.12em; color: var(--ink); text-align: center;
}

/* Anne's left pane — warm rose tint */
.canvas-pane--annes {
  background: linear-gradient(135deg, rgba(255,220,230,0.25) 0%, rgba(255,255,255,0.10) 100%);
}

/* Anne's access pass — fuchsia accent */
.access-pass--annes {
  background: linear-gradient(135deg, rgba(255,220,230,0.75) 0%, rgba(255,255,255,0.30) 100%);
}
.access-pass--annes .pass-wordmark { letter-spacing: 0.10em; }

/* ── PLAN EXTRA NOTE (add-on price) ── */
.plan-add-note {
  font-size: 11px; font-weight: 500; color: var(--ink-muted); margin-top: 4px;
}

/* ── PROMO BANNER ── */
.ck-promo-banner {
  display: flex; align-items: center; gap: 10px;
  background: rgba(231,111,81,0.08);
  border: 1.5px solid rgba(231,111,81,0.24);
  border-radius: 14px; padding: 13px 16px;
  font-size: 13px; font-weight: 500; color: var(--melon);
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
#ck-promo-slot:empty { display: none; }

/* ── SUB-SECTION DIVIDER + HEAD ── */
.sub-section-divider {
  height: 1px; background: rgba(255,255,255,0.45);
  margin: 24px 0 20px; border-radius: 1px;
}
.sub-section-head {
  font-family: var(--font-head); font-size: 17px; font-weight: 400;
  color: var(--ink); margin-bottom: 14px; letter-spacing: -0.005em;
}

/* ── SUBSCRIPTION 1 MODE TOGGLE ── */
.sub1-section { margin-bottom: 4px; }
.sub1-mode-btns {
  display: flex; gap: 4px; flex-wrap: wrap;
  width: 100%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid var(--border-glass);
  border-radius: 22px; padding: 4px;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.sub1-mode-btn {
  padding: 9px 22px; border-radius: 18px; border: none;
  background: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 500; color: var(--ink-muted);
  transition: all 0.22s; white-space: nowrap;
}
.sub1-mode-btn.active {
  background: rgba(255,255,255,0.92);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,1), 0 4px 14px rgba(0,0,0,0.10);
  color: var(--ink); font-weight: 600;
}
.sub1-me-note {
  font-size: 12.5px; font-weight: 400; color: var(--ink-mid);
  line-height: 1.5; margin-bottom: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.25); border: 1px solid var(--border-glass);
  border-radius: 12px;
}

/* ── ADD LOVED ONE — sits inside the tab bar ── */
.add-slot-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  border: none; border-radius: 18px; cursor: pointer;
  background: none;
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--fuchsia);
  transition: all 0.22s; white-space: nowrap;
  margin-left: 4px;
  border-left: 1.5px solid rgba(236,72,153,0.25);
  padding-left: 16px;
}
.add-slot-btn:hover {
  background: rgba(236,72,153,0.10);
  color: var(--fuchsia);
}

/* ── RECIPIENT SLOTS ── */
.recipient-slot {
  background: rgba(255,255,255,0.22);
  border: 1px solid var(--border-glass);
  border-radius: 18px; padding: 20px 20px 16px;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.slot-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.slot-title {
  font-family: var(--font-head); font-size: 14px; font-weight: 400; color: var(--ink);
}
.slot-price {
  font-size: 13px; font-weight: 600; color: var(--ink-mid);
}
.slot-remove {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,0.04); border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink-mid); transition: all 0.2s;
  flex-shrink: 0; margin-left: 10px;
}
.slot-remove:hover { background: rgba(231,111,81,0.08); border-color: rgba(231,111,81,0.3); color: var(--melon); }
.slot-postcard {
  margin-top: 14px; font-size: 13px; color: var(--ink-mid);
}
.slot-postcard > summary {
  cursor: pointer; font-weight: 500; color: var(--ink);
  list-style: none; padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.4);
}
.slot-postcard > summary::-webkit-details-marker { display: none; }
.slot-postcard-note {
  font-size: 12px; color: var(--ink-muted); line-height: 1.5;
  margin-bottom: 4px;
}

/* ── ANNE'S RESPONSIVE ── */
@media(max-width:960px) {
  .add-slot-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sub1-mode-btns { width: 100%; }
  .sub1-mode-btn { flex: 1; text-align: center; }
}

/* ── TOGGLE ATTENTION SHAKE (validation) ── */
@keyframes toggle-shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-5px); }
  40%,80% { transform: translateX(5px); }
}
.toggle-attention { animation: toggle-shake 0.5s ease; }
