/*
 * flow-test.css
 * Overlay host + VERBATIM prototype screen CSS, chrome stripped.
 * Do NOT modify the #screen-1017-* / .oco-layer* / .oco-drawer* /
 * #screen-success blocks — they are pixel-perfect ports from the validated prototype.
 */

/* =====================================================================
   DESIGN TOKENS — generic + theme-aware.
   Each token falls back to the prototype value but inherits the host
   design system when present: var(--site-token, <default>). Override
   --oco-* (or the site's --accent/--text/...) to re-skin per site.
   ===================================================================== */
.oco-overlay,
.oco-trigger-wrap {
  --oco-surface: var(--bg, #ffffff);
  --oco-surface-subtle: var(--gray-50, #f8fafc);
  --oco-surface-sunken: var(--gray-100, #f1f5f9);
  --oco-border: var(--border, #dcdfe1);
  --oco-border-strong: var(--gray-300, #cad5e2);
  --oco-heading: var(--text-subtle, #344054);
  --oco-text: var(--gray-600, #45556c);
  --oco-text-strong: var(--text, #101828);
  --oco-text-muted: var(--text-muted, #667085);
  --oco-text-faint: var(--gray-400, #98a2b3);
  --oco-accent: var(--accent, #0094e5);
  --oco-accent-bright: var(--accent-subtle, #00a5ff);
  --oco-accent-strong: var(--accent-emphasis, #0086cf);
  --oco-accent-wash: var(--bg-accent, #eff8ff);
  --oco-on-accent: var(--text-on-accent, #ffffff);
  --oco-warning: var(--accent-secondary-subtle, #f46e01);
  --oco-warning-text: var(--text-accent-secondary-subtle, #cb5c01);
  --oco-warning-wash: var(--bg-accent-secondary, #ffeacc);
  --oco-success: var(--accent-success, #06b400);
  --oco-success-text: var(--text-accent-success, #067647);
  --oco-success-wash: var(--bg-accent-success, #dcfce7);
  --oco-danger: #ff4b4b;
  --oco-danger-wash: #ffe0e0;
  --oco-scrim: #a0a0a0;
}



/* =====================================================================
   OVERLAY HOST
   ===================================================================== */
.oco-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  background: rgba(15, 22, 38, 0.6);
}
/* Open = mounted. is-closing plays the reverse, then JS removes is-open (display:none),
   so the closed state never intercepts clics. */
.oco-overlay.oco-is-open { display: block; animation: ocoBackdropIn .24s ease; }
/* E9 mode picker : flow-test passe AU-DESSUS de « Quelle balade ? »
   (.oco-fs-overlay, z-index 100000) qui reste visible derrière. */
.oco-overlay.oco-is-picker { z-index: 100010; }
.oco-overlay.oco-is-open.oco-is-closing { animation: ocoBackdropOut .24s ease forwards; }
@keyframes ocoBackdropIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes ocoBackdropOut { from { opacity: 1; } to { opacity: 0; } }

/* Panel motion: scales in (desktop) or slides up from the bottom (mobile).
   The backdrop opacity is handled above; here we only move the panel. */
.oco-overlay.oco-is-open .oco-stage[data-device="desktop"]    { animation: ocoEnterDesktop .26s cubic-bezier(.2,.7,.2,1); }
.oco-overlay.oco-is-open .oco-stage[data-device="mobile"]     { animation: ocoEnterMobile  .30s cubic-bezier(.32,.72,0,1); }
.oco-overlay.oco-is-closing .oco-stage[data-device="desktop"] { animation: ocoLeaveDesktop .22s ease forwards; }
.oco-overlay.oco-is-closing .oco-stage[data-device="mobile"]  { animation: ocoLeaveMobile  .24s ease forwards; }
@keyframes ocoEnterDesktop { from { transform: scale(.96); } to { transform: none; } }
@keyframes ocoLeaveDesktop { from { transform: none; } to { transform: scale(.96); } }
@keyframes ocoEnterMobile  { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes ocoLeaveMobile  { from { transform: translateY(0); } to { transform: translateY(100%); } }

.oco-stage {
  position: absolute;
  inset: 0;
  transition: opacity .15s ease, transform .15s ease;
}

/* Desktop: center the figma card */
.oco-stage[data-device="desktop"] {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop: figma card as inline-block. background:transparent neutralizes host
   themes that paint bare <section> (e.g. Bricks `section{background:var(--bg)}`),
   which would otherwise show a white square behind the card's rounded corners. */
.oco-stage[data-device="desktop"] .oco-screen { display: inline-block; background: transparent; }

/* Desktop step fade + subtle zoom (mobile uses slides/drawers, not is-fading) */
.oco-stage.oco-is-fading { opacity: 0; transform: scale(.98); }

/* Desktop nested info modal (alternative / waitlist) — overlaid on the calendar.
   The backdrop carries data-action="toDatetime": clicking outside the modal returns
   to the calendar instead of closing the whole flow. */
.oco-nested {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: opacity .15s ease;
}
.oco-nested.oco-is-leaving { opacity: 0; }
.oco-nested__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 38, 0.45);
  cursor: pointer;
}
.oco-nested__modal {
  position: relative;
  z-index: 1;
  animation: ocoNestedIn .18s ease;
}
@keyframes ocoNestedIn {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* Trigger button */
.oco-trigger {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent));
  border-radius: 999px;
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.48px;
  color: var(--oco-surface);
  filter: drop-shadow(0px 3px 1.5px rgba(0, 0, 0, 0.06)) drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.04));
  transition: background 0.14s ease;
}
.oco-trigger:hover {
  background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent-strong));
}
.oco-trigger:active {
  opacity: 0.9;
}

/* =====================================================================
   GLOBAL SCOPED BOX-SIZING (was: * { box-sizing: border-box })
   ===================================================================== */
.oco-overlay * {
  box-sizing: border-box;
}

:root { --sky: var(--oco-accent); --sky-2: var(--oco-accent-bright); }

/* =====================================================================
   MOBILE LAYERS — VERBATIM from prototype chrome block
   ===================================================================== */

/* Each mounted mobile screen is an absolute layer that fills the viewport and
   scrolls internally when its content is taller than the viewport.
   Anchored to .oco-stage (position:absolute context). */
.oco-layer {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--oco-surface);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 34px rgba(16, 24, 40, 0.18);
}
.oco-layer .oco-screen { display: block; flex: none; }
.oco-layer .oco-screen > * { max-width: 100%; }
.oco-layer.oco-is-success { justify-content: center; }

/* ---- Lateral slide between wizard steps ---- */
.oco-layer.oco-slide-in-right  { animation: mslideInRight  .28s cubic-bezier(.4,0,.2,1) both; }
.oco-layer.oco-slide-out-left  { animation: mslideOutLeft  .28s cubic-bezier(.4,0,.2,1) both; }
.oco-layer.oco-slide-in-left   { animation: mslideInLeft   .28s cubic-bezier(.4,0,.2,1) both; }
.oco-layer.oco-slide-out-right { animation: mslideOutRight .28s cubic-bezier(.4,0,.2,1) both; }
@keyframes mslideInRight  { from { transform: translateX(100%);  } to { transform: translateX(0); } }
@keyframes mslideOutLeft  { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes mslideInLeft   { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes mslideOutRight { from { transform: translateX(0); } to { transform: translateX(100%);  } }

/* ---- Nested bottom-sheet drawer ---- */
.oco-drawer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.oco-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}
.oco-drawer__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--oco-surface);
  border: 1px solid var(--oco-border);
  border-radius: 24px 24px 0 0;
  box-shadow: 0px 2px 6px 0px rgba(51, 67, 77, 0.1);
}
.oco-drawer__sheet > .oco-screen { display: block; width: 100%; }
.oco-drawer__sheet #screen-1017-3462 .oco-root,
.oco-drawer__sheet #screen-1017-3845 .oco-inner {
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  height: auto;
  overflow: visible;
}

/* enter / exit animations */
.oco-drawer.oco-drawer-enter .oco-drawer__backdrop { animation: mbackdropIn .28s ease both; }
.oco-drawer.oco-drawer-enter .oco-drawer__sheet    { animation: msheetUp   .28s cubic-bezier(.4,0,.2,1) both; }
.oco-drawer.oco-drawer-exit  .oco-drawer__backdrop { animation: mbackdropOut .28s ease both; }
.oco-drawer.oco-drawer-exit  .oco-drawer__sheet    { animation: msheetDown   .28s cubic-bezier(.4,0,.2,1) both; }
@keyframes mbackdropIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes mbackdropOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes msheetUp     { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes msheetDown   { from { transform: translateY(0); } to { transform: translateY(100%); } }

/* ============ Mobile: every screen is a bottom-sheet ============ */
.oco-layer > .oco-screen { width: 100%; }
/* Cap the fixed-width Figma roots AND their inner containers (402px / 412px) to the
   viewport — prevents horizontal overflow on narrow phones (e.g. iPhone SE, 375px).
   max-width only constrains elements that actually exceed their parent, so flex
   cells/slots and icons are untouched; it beats id-level `width:Npx` cleanly. */
.oco-layer .oco-screen,
.oco-layer .oco-screen * { max-width: 100%; }
.oco-layer #screen-1017-3547 .oco-card {
  width: 100%; border: none; border-radius: 0; box-shadow: none;
}
.oco-layer #screen-1017-3602.oco-screen { height: auto; overflow: visible; background: var(--oco-surface); }
.oco-layer #screen-1017-3602 .oco-card {
  position: static; transform: none; width: 100%; overflow: visible;
  border: none; border-radius: 0; box-shadow: none;
}
.oco-layer #screen-1017-3797 .oco-root { height: auto; overflow: visible; }
.oco-layer #screen-1017-3797 .oco-card {
  position: static; left: auto; top: auto; width: 100%; height: auto; overflow: visible;
  border: none; border-radius: 0; box-shadow: none;
}
/* Footer sticks to the bottom of the scrolling sheet; the scroll content passes
   underneath it (opaque bg + z-index). The content keeps a bottom padding so the
   last field clears the footer instead of touching it. */
.oco-layer #screen-1017-3797 .oco-footer { position: sticky; bottom: 0; left: auto; top: auto; width: 100%; z-index: 2; }

/* ---- V5.65 — UX mobile flow-test : footers sticky + edge-to-edge, code promo
   hors footer, padding cohérent résumé/formulaire. ---- */
/* Datetime (3602) : footer Retour/Suivant sticky en bas de la sheet (sinon il faut
   scroller tout en bas) + edge-to-edge (séparateur haut seulement). */
.oco-layer #screen-1017-3602 .oco-footer {
  position: sticky; bottom: 0; left: auto; top: auto; width: 100%; z-index: 2;
  background: var(--oco-surface);
  border: none; border-top: 1px solid var(--oco-border);
  padding: 12px 16px; margin: 0; border-radius: 0;
}
/* le dernier créneau doit dégager le footer collant */
.oco-layer #screen-1017-3602 .oco-slots-section { padding-bottom: 16px; }
/* Confirmation (3797) : footer collé au bas/bords (pas de boîte bordée). */
.oco-layer #screen-1017-3797 .oco-footer {
  background: var(--oco-surface);
  border: none; border-top: 1px solid var(--oco-border);
  padding: 12px 16px; margin: 0; border-radius: 0;
}
/* Code promo : section dédiée hors footer, même padding latéral que résumé/infos.
   box-sizing + width:100% sur le bloc/row pour que le bouton « Appliquer » ne
   déborde pas à droite ; pas de border-top du bloc (la section sépare déjà). */
.oco-layer #screen-1017-3797 .oco-promo-section { width: 100%; padding: 8px 24px 16px; background: var(--oco-surface); box-sizing: border-box; }
.oco-layer #screen-1017-3797 .ocoflow-promo-block { width: 100%; margin: 0; padding: 0; border-top: none; box-sizing: border-box; }
.oco-layer #screen-1017-3797 .ocoflow-promo-row { width: 100%; box-sizing: border-box; gap: 10px; }
/* Padding input/bouton écrasé à 0 par un reset input/button WP sur mobile → forcer
   (scopé écran + !important pour battre le reset). */
.oco-layer #screen-1017-3797 .ocoflow-promo-input { padding: 0 16px !important; }
.oco-layer #screen-1017-3797 .ocoflow-promo-btn { padding: 0 22px !important; }
/* Padding du formulaire identique au résumé (24px) sur mobile. .oco-info /
   .oco-promo-section / .oco-footer sont imbriqués DANS .oco-recap (div verbatim
   non fermée), donc insérés par son padding:24. On annule le padding du recap et
   on le reporte sur .oco-recap-inner + .oco-btn-back → résumé ET formulaire
   alignés à 24px, footer/promo full-bleed. */
.oco-layer #screen-1017-3797 .oco-recap { padding: 0; background: var(--oco-surface); }
.oco-layer #screen-1017-3797 .oco-recap-inner { padding: 24px; background: var(--oco-surface-subtle); }
.oco-layer #screen-1017-3797 .oco-info-inner { padding: 24px; }
/* .oco-btn-back est déjà dans .oco-recap-inner (padding 24) → pas de marge en plus
   (sinon décalé à 48). Le formulaire (.oco-info) sur fond blanc comme en desktop
   (sinon il hérite du gris du récap → inputs « plus clairs »). */
.oco-layer #screen-1017-3797 .oco-btn-back { margin: 16px 0 0; }
.oco-layer #screen-1017-3797 .oco-info { background: var(--oco-surface); }

/* D8 — barrer les jours INDISPONIBLES (.oco-is-off = passés / sans dispo) dans les
   calendriers flow-test (desktop 3242, mobile 3602). Les jours de remplissage
   (autre mois) ne portent pas .oco-is-off → non barrés. */
#screen-1017-3242 .oco-cell.oco-is-off .oco-num,
#screen-1017-3602 .oco-cell.oco-is-off .oco-num { text-decoration: line-through; text-decoration-thickness: 1px; }

/* ============ iOS-style recess: base layer behind a drawer ============ */
.oco-layer.oco-is-recessed,
.oco-layer.oco-is-recessed-static,
.oco-layer.oco-is-unrecessing { overflow: hidden; transform-origin: 50% 0; }
.oco-layer.oco-is-recessed        { animation: mrecess   .34s cubic-bezier(.32,.72,0,1) both; }
.oco-layer.oco-is-recessed-static { transform: translateY(var(--recess-y,260px)) scale(.9); border-radius: 20px; }
.oco-layer.oco-is-unrecessing     { animation: munrecess .34s cubic-bezier(.32,.72,0,1) both; }
@keyframes mrecess   { from { transform: translateY(0) scale(1); border-radius: 24px 24px 0 0; } to { transform: translateY(var(--recess-y,260px)) scale(.9); border-radius: 20px; } }
@keyframes munrecess { from { transform: translateY(var(--recess-y,260px)) scale(.9); border-radius: 20px; } to { transform: translateY(0) scale(1); border-radius: 24px 24px 0 0; } }

/* =====================================================================
   SUCCESS / CONFIRMATION SCREEN — VERBATIM
   ===================================================================== */
#screen-success { font-family: "Mulish", sans-serif; }
#screen-success * { margin: 0; padding: 0; box-sizing: border-box; }
#screen-success .oco-su-card {
  width: 412px; max-width: 100%;
  background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 24px;
  box-shadow: 0px 2px 6px 0px rgba(51,67,77,0.1);
  padding: 32px 24px; display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
}
#screen-success .oco-su-badge {
  width: 64px; height: 64px; border-radius: 999px; background: var(--oco-success-wash);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
/* En attente de validation manuelle : wash ambre au lieu du vert "confirmé". */
#screen-success .oco-su-badge--pending { background: #fef3c7; }
#screen-success .oco-su-badge svg { width: 34px; height: 34px; display: block; }
#screen-success .oco-su-head { display: flex; flex-direction: column; gap: 6px; align-items: center; }
#screen-success .oco-su-title {
  font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 24px;
  line-height: 1.1; letter-spacing: -0.5px; color: var(--oco-heading);
}
#screen-success .oco-su-sub { font-size: 14px; line-height: 1.35; color: var(--oco-text); max-width: 300px; }
#screen-success .oco-su-recap {
  width: 100%; background: var(--oco-surface-subtle); border: 1px solid var(--oco-surface-sunken); border-radius: 16px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 11px;
}
#screen-success .oco-su-row { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
#screen-success .oco-su-row span { font-size: 14px; color: var(--oco-text-muted); white-space: nowrap; }
#screen-success .oco-su-row strong { font-size: 14px; font-weight: 800; color: var(--oco-heading); text-align: right; }
#screen-success .oco-su-total {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding-top: 13px; margin-top: 2px; border-top: 1px solid var(--oco-border);
}
#screen-success .oco-su-total span { font-size: 14px; color: var(--oco-text); }
#screen-success .oco-su-total strong {
  font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 22px;
  letter-spacing: -0.4px; color: var(--oco-accent);
}
#screen-success .oco-su-btn {
  width: 100%; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 999px; background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent)); cursor: pointer;
  filter: drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-success .oco-su-btn:hover { background: linear-gradient(to bottom, var(--oco-accent), var(--oco-accent-strong)); }
#screen-success .oco-su-btn span {
  font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px;
  letter-spacing: -0.48px; color: var(--oco-surface);
}
/* Mobile: success fills the overlay viewport */
.oco-stage[data-device="mobile"] #screen-success .oco-su-card {
  width: 100%; border: none; box-shadow: none; border-radius: 0;
  justify-content: center; gap: 22px;
}

/* =====================================================================
   INTERACTION AFFORDANCES — VERBATIM
   ===================================================================== */
[data-action] { cursor: pointer; }
[data-action]:focus-visible { outline: 2px solid var(--sky); outline-offset: 2px; }

/* persons stepper buttons */
#screen-1017-3547 .oco-stepbtn[data-action] { transition: background .12s ease, border-color .12s ease, transform .06s ease; }
#screen-1017-3547 .oco-stepbtn[data-action]:hover { background: var(--oco-surface-subtle); border-color: var(--oco-border-strong); }
#screen-1017-3547 .oco-stepbtn[data-action]:active { transform: scale(0.94); background: var(--oco-surface-sunken); }
#screen-1017-3547 .oco-stepbtn.oco-is-disabled { opacity: .4; cursor: not-allowed; }
#screen-1017-3547 .oco-cta[data-action] { transition: background .12s ease, border-color .12s ease; }
#screen-1017-3547 .oco-cta[data-action]:hover { background: var(--oco-surface-subtle); border-color: var(--oco-border-strong); }

/* calendar day cells */
#screen-1017-3242 .oco-cell.oco-is-clickable { cursor: pointer; transition: background .12s ease; }
#screen-1017-3242 .oco-cell.oco-is-clickable:hover:not(.oco-sel) { background: var(--oco-surface-sunken); }
#screen-1017-3602 .oco-cell.oco-is-clickable { cursor: pointer; transition: background .12s ease; }
#screen-1017-3602 .oco-cell.oco-is-clickable:hover:not(.oco-sel) { background: var(--oco-surface-sunken); }

/* slots */
#screen-1017-3242 .oco-input[data-action] { transition: border-color .12s ease, box-shadow .12s ease; }
#screen-1017-3242 .oco-input[data-action]:hover { border-color: var(--sky); }
#screen-1017-3242 .oco-input.oco-is-selected { border-color: var(--sky); background: var(--oco-accent-wash); box-shadow: 0 0 0 2px rgba(0,148,229,0.25); }
#screen-1017-3602 .oco-input[data-action] { transition: border-color .12s ease, box-shadow .12s ease; }
#screen-1017-3602 .oco-input[data-action]:hover { border-color: var(--sky); }
#screen-1017-3602 .oco-slot.oco-is-selected .oco-input { border-color: var(--sky); background: var(--oco-accent-wash); box-shadow: 0 0 0 2px rgba(0,148,229,0.25); }

/* footer / cta buttons */
#screen-1017-3242 .oco-fbtn[data-action]:not(.oco-dim):hover,
#screen-1017-3602 .oco-btn[data-action]:not(.oco-dim):hover { background: var(--oco-surface-subtle); }
#screen-1017-3242 .oco-fbtn.oco-dim, #screen-1017-3602 .oco-btn.oco-dim { cursor: not-allowed; }

/* alternative buttons */
#screen-1017-3436 .oco-btn[data-action] { transition: filter .12s ease, opacity .12s ease; }
#screen-1017-3436 .oco-btn[data-action]:hover { filter: brightness(1.04); }
#screen-1017-3436 .oco-btn[data-action]:active { opacity: .9; }
#screen-1017-3845 .oco-mbtn[data-action] { transition: filter .12s ease, opacity .12s ease; }
#screen-1017-3845 .oco-mbtn[data-action]:hover { filter: brightness(1.04); }
#screen-1017-3845 .oco-mbtn[data-action]:active { opacity: .9; }

/* waitlist buttons + date cards */
#screen-1017-3462 .oco-btn-alert[data-action]:hover,
#screen-1017-3462 .oco-btn-secondary[data-action]:hover { filter: brightness(1.03); }
#screen-1017-3462 .oco-date-card[data-action] { cursor: pointer; transition: background .12s ease; }
#screen-1017-3462 .oco-date-card[data-action]:hover { background: var(--oco-accent-wash); }
#screen-1017-3462 .oco-waitlist-success {
  font-weight: 800; font-size: 14px; letter-spacing: -0.42px;
  color: var(--oco-success-text); margin-top: 2px;
}

/* recap + confirmation primary buttons */
#screen-1017-3500 .oco-btn-confirm[data-action]:hover,
#screen-1017-3500 .oco-btn-retour[data-action]:hover { filter: brightness(1.04); }
#screen-1017-3797 .oco-btn-confirm[data-action]:hover,
#screen-1017-3797 .oco-btn-back[data-action]:hover { filter: brightness(1.04); }


/* =====================================================================
   SCREEN 3547 — PERSONS COUNTER — VERBATIM
   ===================================================================== */
#screen-1017-3547 *,
#screen-1017-3547 *::before,
#screen-1017-3547 *::after { box-sizing: border-box; margin: 0; padding: 0; }

#screen-1017-3547 {
  font-family: "Mulish", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#screen-1017-3547 .oco-card {
  width: 412px;
  background: var(--oco-surface);
  border: 1px solid var(--oco-border);
  border-radius: 24px;
  box-shadow: 0px 2px 3px rgba(51, 67, 77, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

#screen-1017-3547 .oco-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: 100%;
  word-break: break-word;
}
#screen-1017-3547 .oco-header__title {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.48px;
  color: var(--oco-heading);
  text-align: center;
  white-space: nowrap;
}
#screen-1017-3547 .oco-header__sub {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.42px;
  color: var(--oco-text);
  width: 100%;
}

#screen-1017-3547 .oco-rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
#screen-1017-3547 .oco-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#screen-1017-3547 .oco-row__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
#screen-1017-3547 .oco-row__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
#screen-1017-3547 .oco-row__name {
  font-weight: 800;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  color: var(--oco-heading);
  white-space: nowrap;
}
#screen-1017-3547 .oco-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border: 1px solid var(--oco-border-strong);
  border-radius: 999px;
}
#screen-1017-3547 .oco-pill__txt {
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  letter-spacing: -0.36px;
  color: var(--oco-heading);
  white-space: nowrap;
}
#screen-1017-3547 .oco-row__sub {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.48px;
  color: rgba(49, 65, 88, 0.65);
  white-space: nowrap;
}

#screen-1017-3547 .oco-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#screen-1017-3547 .oco-stepbtn {
  width: 40px;
  height: 40px;
  background: var(--oco-surface);
  border: 1px solid var(--oco-border-strong);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow:
    0px 19px 2.5px rgba(0, 0, 0, 0),
    0px 12px 2.5px rgba(0, 0, 0, 0),
    0px 7px 2px rgba(0, 0, 0, 0.01),
    0px 3px 1.5px rgba(0, 0, 0, 0.02),
    0px 1px 1px rgba(0, 0, 0, 0.02);
}
#screen-1017-3547 .oco-stepbtn svg { width: 24px; height: 24px; display: block; }
#screen-1017-3547 .oco-count {
  font-weight: 800;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
  color: var(--oco-heading);
  white-space: nowrap;
}
#screen-1017-3547 .oco-count--muted { font-weight: 400; color: var(--oco-text); }

#screen-1017-3547 .oco-divider { width: 100%; height: 1px; background: var(--oco-border); }

#screen-1017-3547 .oco-warn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  background: rgba(244, 110, 1, 0.1);
  border-radius: 16px;
  word-break: break-word;
}
#screen-1017-3547 .oco-warn__title {
  font-weight: 800;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--oco-warning-text);
  width: 100%;
}
#screen-1017-3547 .oco-warn__body {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: -0.42px;
  color: rgba(178, 80, 1, 0.75);
  width: 100%;
}

#screen-1017-3547 .oco-totals {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
  word-break: break-word;
}
#screen-1017-3547 .oco-totals__col { display: flex; flex-direction: column; gap: 4px; }
#screen-1017-3547 .oco-totals__col--right { align-items: flex-end; }
#screen-1017-3547 .oco-totals__label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.48px;
  color: rgba(49, 65, 88, 0.65);
}
#screen-1017-3547 .oco-totals__value {
  font-weight: 800;
  font-size: 18px;
  line-height: normal;
  letter-spacing: -0.54px;
  color: var(--oco-heading);
}
#screen-1017-3547 .oco-totals__price {
  font-weight: 800;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -0.72px;
  color: var(--oco-heading);
}

#screen-1017-3547 .oco-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  padding: 12px 20px;
  background: var(--oco-surface);
  border: 1px solid var(--oco-border-strong);
  border-radius: 999px;
  box-shadow:
    0px 19px 2.5px rgba(0, 0, 0, 0),
    0px 12px 2.5px rgba(0, 0, 0, 0),
    0px 7px 2px rgba(0, 0, 0, 0.01),
    0px 3px 1.5px rgba(0, 0, 0, 0.02),
    0px 1px 1px rgba(0, 0, 0, 0.02);
}
#screen-1017-3547 .oco-cta__txt {
  font-family: "Poetsen One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--oco-heading);
  white-space: nowrap;
}


/* =====================================================================
   SCREEN 3242 — DATETIME DESKTOP — VERBATIM
   ===================================================================== */
#screen-1017-3242 * { margin: 0; padding: 0; box-sizing: border-box; }
#screen-1017-3242 {
  font-family: "Mulish", sans-serif;
  -webkit-font-smoothing: antialiased;
}
#screen-1017-3242 .oco-root {
  width: 652px; height: 538px;
  background: var(--oco-surface);
  border: 1px solid var(--oco-border);
  border-radius: 24px;
  box-shadow: 0px 2px 6px 0px rgba(51,67,77,0.1);
  display: flex; flex-direction: column; align-items: flex-start;
  overflow: hidden;
  position: relative;
}
#screen-1017-3242 .oco-top { display: flex; align-items: stretch; position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; }
#screen-1017-3242 .oco-calpanel {
  width: 412px;
  border-right: 1px solid var(--oco-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
}
#screen-1017-3242 .oco-datepicker {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  width: 100%; overflow: hidden;
}
#screen-1017-3242 .oco-title {
  color: var(--oco-heading); font-size: 16px; font-weight: 800; line-height: 24px;
  letter-spacing: -0.48px; text-align: center; white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-month {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
#screen-1017-3242 .oco-navbtn {
  display: flex; align-items: center; justify-content: center;
  padding: 8px; border-radius: 8px; overflow: hidden;
}
#screen-1017-3242 .oco-navbtn svg { width: 20px; height: 20px; display: block; }
#screen-1017-3242 .oco-monthlabel {
  color: var(--oco-heading); font-size: 16px; font-weight: 800; line-height: 24px;
  letter-spacing: -0.48px; text-align: center; white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-content { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-calendar { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-dates { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-row { display: flex; align-items: flex-start; width: 100%; border-radius: 20px; overflow: hidden; }
#screen-1017-3242 .oco-headrow { display: flex; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-cell {
  flex: 1 0 0; min-width: 1px; height: 40px;
  position: relative; border-radius: 20px;
}
#screen-1017-3242 .oco-cell .oco-num {
  position: absolute; left: 50%; top: calc(50% - 10px); transform: translateX(-50%);
  width: 24px; font-size: 14px; line-height: 20px; letter-spacing: -0.42px;
  text-align: center; font-weight: 400; color: var(--oco-heading); white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-cell .oco-dow {
  position: absolute; left: 50%; top: calc(50% - 10px); transform: translateX(-50%);
  font-size: 14px; line-height: 20px; letter-spacing: -0.42px;
  text-align: center; font-weight: 400; color: var(--oco-heading); white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-num.oco-muted { color: var(--oco-text-muted); }
#screen-1017-3242 .oco-num.oco-semi { font-weight: 800; }
#screen-1017-3242 .oco-cell.oco-sel { background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent)); }
#screen-1017-3242 .oco-cell.oco-sel .oco-num { color: var(--oco-surface); font-weight: 800; }
#screen-1017-3242 .oco-cell.oco-today { background: var(--oco-surface-sunken); }
#screen-1017-3242 .oco-cell.oco-soft { background: var(--oco-surface-subtle); }
#screen-1017-3242 .oco-daydot {
  position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
}
#screen-1017-3242 .oco-dot-green { background: var(--oco-success); }
#screen-1017-3242 .oco-dot-orange { background: var(--oco-warning-text); }
#screen-1017-3242 .oco-legend { display: flex; gap: 16px; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-legitem { display: flex; gap: 6px; align-items: center; }
#screen-1017-3242 .oco-legdot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
#screen-1017-3242 .oco-legitem p {
  color: var(--oco-text); font-size: 12px; font-weight: 400; letter-spacing: -0.36px;
  line-height: normal; white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-slotswrap {
  display: flex; flex-direction: row; align-items: center; align-self: stretch;
}
#screen-1017-3242 .oco-slots {
  background: var(--oco-surface-subtle); width: 240px; height: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
#screen-1017-3242 .oco-slots-inner {
  flex: 1 0 0; min-height: 1px; width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#screen-1017-3242 .oco-slots-stack {
  flex: 1 0 0; min-height: 1px; width: 100%;
  display: flex; flex-direction: column; align-items: flex-start;
}
#screen-1017-3242 .oco-slots-groups { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-slots-group { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; width: 100%; }
#screen-1017-3242 .oco-slots-group.oco-dim { opacity: 0.5; }
#screen-1017-3242 .oco-input {
  background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 999px;
  box-shadow: 0px 1px 2px 0px rgba(16,24,40,0.05);
  display: flex; align-items: center; overflow: hidden;
  padding: 8px 14px; width: 100%;
}
#screen-1017-3242 .oco-input-content {
  flex: 1 0 0; min-width: 1px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
#screen-1017-3242 .oco-input-time { display: flex; gap: 10px; align-items: center; width: 100%; }
#screen-1017-3242 .oco-input-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
#screen-1017-3242 .oco-input-time p {
  color: var(--oco-text-strong); font-size: 16px; font-weight: 800; letter-spacing: -0.48px;
  line-height: normal; white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-input-sub {
  display: flex; align-items: center; justify-content: center; width: 100%;
  padding-left: 16px;
}
#screen-1017-3242 .oco-input-sub p {
  flex: 1 0 0; min-width: 1px;
  font-size: 12px; font-weight: 400; letter-spacing: -0.36px; line-height: normal;
  word-break: break-word;
}
#screen-1017-3242 .oco-sub-gray { color: var(--oco-text); }
#screen-1017-3242 .oco-sub-orange { color: var(--oco-warning-text); }
#screen-1017-3242 .oco-footer {
  background: var(--oco-surface); border: 1px solid var(--oco-border);
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 12px 24px; width: 100%;
}
#screen-1017-3242 .oco-footer-row {
  display: flex; align-items: flex-start; justify-content: space-between; width: 100%;
}
#screen-1017-3242 .oco-fbtn {
  background: var(--oco-surface); border: 1px solid var(--oco-border-strong); border-radius: 999px;
  display: flex; gap: 8px; align-items: center; justify-content: center;
  padding: 12px 20px;
  filter: drop-shadow(0px 19px 2.5px rgba(0,0,0,0)) drop-shadow(0px 12px 2.5px rgba(0,0,0,0)) drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3242 .oco-fbtn.oco-dim { opacity: 0.5; }
#screen-1017-3242 .oco-fbtn p {
  font-family: "Poetsen One", sans-serif;
  color: var(--oco-heading); font-size: 16px; font-weight: 400; letter-spacing: -0.48px;
  line-height: normal; white-space: nowrap; word-break: break-word;
}
#screen-1017-3242 .oco-fbtn .oco-fico { width: 24px; height: 24px; display: block; flex-shrink: 0; }
#screen-1017-3242 .oco-fbtn .oco-fico.oco-flip { transform: rotate(180deg); }


/* =====================================================================
   SCREEN 3436 — ALTERNATIVE DESKTOP — VERBATIM
   ===================================================================== */
#screen-1017-3436.oco-screen {
  font-family: "Mulish", sans-serif;
  display: inline-block;
}
#screen-1017-3436 *,
#screen-1017-3436 *::before,
#screen-1017-3436 *::after { box-sizing: border-box; }
#screen-1017-3436 .oco-root {
  width: 412px; height: 373px;
  background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 24px;
  box-shadow: 0px 2px 6px 0px rgba(51, 67, 77, 0.1);
  overflow: hidden; display: flex; flex-direction: column; align-items: stretch;
}
#screen-1017-3436 .oco-header {
  display: flex; gap: 12px; align-items: flex-start; padding: 24px;
  border-bottom: 1px solid var(--oco-border);
}
#screen-1017-3436 .oco-icon-circle {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 999px; background: var(--oco-warning-wash);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
#screen-1017-3436 .oco-icon-circle svg { width: 24px; height: 24px; display: block; }
#screen-1017-3436 .oco-header-text {
  flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
}
#screen-1017-3436 .oco-header-title {
  margin: 0; font-weight: 800; font-size: 16px; line-height: 24px; letter-spacing: -0.48px; color: var(--oco-heading);
}
#screen-1017-3436 .oco-header-sub {
  margin: 0; font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); width: 100%;
}
#screen-1017-3436 .oco-body {
  display: flex; flex-direction: column; gap: 24px; align-items: stretch; padding: 24px;
}
#screen-1017-3436 .oco-alt-block { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
#screen-1017-3436 .oco-alt-caption {
  margin: 0; font-weight: 400; font-size: 14px; line-height: 1.2;
  letter-spacing: -0.42px; color: var(--oco-text); width: 316px; max-width: 100%;
}
#screen-1017-3436 .oco-alt-card {
  width: 100%; background: var(--oco-surface-sunken); border-radius: 12px; padding: 12px; display: flex; align-items: center;
}
#screen-1017-3436 .oco-alt-card-inner { display: flex; gap: 12px; align-items: flex-start; }
#screen-1017-3436 .oco-alt-thumb { flex-shrink: 0; width: 48px; height: 48px; border-radius: 8px; object-fit: cover; display: block; }
#screen-1017-3436 .oco-alt-info { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; justify-content: center; padding-top: 4px; }
#screen-1017-3436 .oco-alt-title { margin: 0; font-weight: 800; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3436 .oco-alt-meta { display: flex; gap: 4px; align-items: center; }
#screen-1017-3436 .oco-dot { flex-shrink: 0; width: 5px; height: 5px; border-radius: 999px; background: var(--oco-success); }
#screen-1017-3436 .oco-alt-meta-text { margin: 0; font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); white-space: nowrap; }
#screen-1017-3436 .oco-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
#screen-1017-3436 .oco-btn {
  height: 44px; width: 100%; border-radius: 999px;
  display: flex; gap: 8px; align-items: center; justify-content: center; padding: 12px 20px;
  filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3436 .oco-btn-secondary { background: var(--oco-surface); border: 1px solid var(--oco-border-strong); }
#screen-1017-3436 .oco-btn-primary { background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent)); border: none; }
#screen-1017-3436 .oco-btn-label { margin: 0; font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; white-space: nowrap; }
#screen-1017-3436 .oco-btn-secondary .oco-btn-label { color: var(--oco-heading); }
#screen-1017-3436 .oco-btn-primary .oco-btn-label { color: var(--oco-surface); }


/* =====================================================================
   SCREEN 3462 — WAITLIST — VERBATIM
   ===================================================================== */
#screen-1017-3462 * { margin: 0; padding: 0; box-sizing: border-box; }
#screen-1017-3462 { font-family: "Mulish", sans-serif; }
#screen-1017-3462 .oco-root {
  width: 412px; min-height: 435px;
  background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 24px;
  box-shadow: 0px 2px 6px 0px rgba(51, 67, 77, 0.1);
  overflow: hidden; display: flex; flex-direction: column; align-items: stretch;
}
#screen-1017-3462 .oco-header { display: flex; gap: 12px; align-items: flex-start; padding: 24px; border-bottom: 1px solid var(--oco-border); }
#screen-1017-3462 .oco-icon-badge {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 999px; background: var(--oco-danger-wash);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
#screen-1017-3462 .oco-icon-badge svg { width: 24px; height: 24px; display: block; }
#screen-1017-3462 .oco-header-text { flex: 1 0 0; min-width: 0; display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
#screen-1017-3462 .oco-title { font-weight: 800; font-size: 16px; line-height: 24px; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3462 .oco-subtitle { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); width: 100%; word-break: break-word; }
#screen-1017-3462 .oco-body { display: flex; flex-direction: column; gap: 24px; align-items: stretch; padding: 24px; }
#screen-1017-3462 .oco-alert-block { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
#screen-1017-3462 .oco-label { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); word-break: break-word; }
#screen-1017-3462 .oco-alert-row { display: flex; gap: 8px; align-items: stretch; width: 100%; }
#screen-1017-3462 .oco-email-input { flex: 1 0 0; min-width: 0; display: flex; align-items: center; padding: 16px; background: var(--oco-surface-sunken); border-radius: 12px; }
#screen-1017-3462 .oco-email-input span { font-weight: 400; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3462 .oco-btn-alert {
  flex-shrink: 0; height: 52px; display: flex; gap: 8px; align-items: center; justify-content: center; padding: 16px 24px;
  border-radius: 999px; background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent));
  filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3462 .oco-btn-alert span { font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; color: var(--oco-surface); white-space: nowrap; }
#screen-1017-3462 .oco-avail-block { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
#screen-1017-3462 .oco-dates-row { display: flex; gap: 8px; align-items: stretch; width: 100%; white-space: nowrap; }
#screen-1017-3462 .oco-date-card {
  flex: 1 0 0; min-width: 0; aspect-ratio: 106 / 106; background: var(--oco-surface-sunken); border-radius: 12px;
  display: flex; flex-direction: column; gap: 2px; align-items: center; justify-content: center;
}
#screen-1017-3462 .oco-date-dow,
#screen-1017-3462 .oco-date-mon { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-heading); }
#screen-1017-3462 .oco-date-num {
  font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 28px; line-height: 1; letter-spacing: -0.56px;
  background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
#screen-1017-3462 .oco-btn-secondary {
  width: 100%; height: 44px; display: flex; gap: 8px; align-items: center; justify-content: center;
  padding: 12px 20px; background: var(--oco-surface); border: 1px solid var(--oco-border-strong); border-radius: 999px;
  filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3462 .oco-btn-secondary span { font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; word-break: break-word; }


/* =====================================================================
   SCREEN 3500 — RECAP DESKTOP — VERBATIM
   ===================================================================== */
#screen-1017-3500.oco-screen { font-family: "Mulish", sans-serif; color: var(--oco-heading); }
#screen-1017-3500 * { box-sizing: border-box; }
#screen-1017-3500 .oco-root {
  width: 721px; min-height: 420px;
  background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 24px;
  box-shadow: 0px 2px 6px 0px rgba(51, 67, 77, 0.1);
  display: flex; align-items: stretch; overflow: hidden; position: relative;
}
#screen-1017-3500 .oco-left {
  width: 309px; background: var(--oco-surface-subtle); border-right: 1px solid var(--oco-border);
  padding: 24px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; flex-shrink: 0;
}
#screen-1017-3500 .oco-left-top { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; width: 100%; }
#screen-1017-3500 .oco-panel-title { font-weight: 800; font-size: 16px; line-height: 24px; letter-spacing: -0.48px; color: var(--oco-heading); text-align: center; white-space: nowrap; margin: 0; }
#screen-1017-3500 .oco-summary-grid { display: grid; grid-template-columns: fit-content(100%) minmax(0, 1fr); column-gap: 32px; row-gap: 16px; width: 100%; }
#screen-1017-3500 .oco-sum-label { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); margin: 0; align-self: start; }
#screen-1017-3500 .oco-sum-label.oco-fixed-w { width: 72px; }
#screen-1017-3500 .oco-sum-value { font-weight: 800; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-heading); margin: 0; align-self: start; }
#screen-1017-3500 .oco-grid-divider { grid-column: 1 / span 2; height: 0; border-top: 1px solid var(--oco-border); }
#screen-1017-3500 .oco-total-label { grid-column: 1; font-weight: 800; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-heading); margin: 0; align-self: center; }
#screen-1017-3500 .oco-total-value { grid-column: 2; font-weight: 800; font-size: 20px; line-height: 1.2; letter-spacing: -0.6px; color: var(--oco-heading); text-align: right; margin: 0; align-self: start; }
#screen-1017-3500 .oco-btn-retour {
  background: var(--oco-surface); border: 1px solid var(--oco-border-strong);
  display: flex; gap: 8px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 999px; flex-shrink: 0;
  filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3500 .oco-btn-retour .oco-icon { width: 24px; height: 24px; flex-shrink: 0; display: block; color: var(--oco-heading); }
#screen-1017-3500 .oco-btn-retour .oco-label { font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; margin: 0; }
#screen-1017-3500 .oco-right { width: 412px; display: flex; flex-direction: column; align-items: stretch; border-radius: 24px; flex-shrink: 0; }
#screen-1017-3500 .oco-right-content { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; gap: 32px; align-items: flex-start; padding: 24px 24px 0; width: 100%; overflow: hidden; }
#screen-1017-3500 .oco-form-fields { flex: 0 1 auto; min-height: 0; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; width: 100%; max-height: 60vh; overflow-y: auto; padding-right: 8px; padding-bottom: 24px; }
#screen-1017-3500 .oco-field { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; width: 100%; }
#screen-1017-3500 .oco-field-label { font-weight: 400; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-text); width: 316px; margin: 0; }
#screen-1017-3500 .oco-field-input { background: var(--oco-surface-sunken); display: flex; align-items: center; padding: 16px; border-radius: 12px; width: 100%; }
#screen-1017-3500 .oco-field-input.oco-textarea { height: 96px; align-items: flex-start; }
#screen-1017-3500 .oco-field-input .oco-placeholder { font-weight: 400; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-heading); opacity: 0.65; white-space: nowrap; margin: 0; }
#screen-1017-3500 .oco-right-footer { position: static; width: 100%; background: var(--oco-surface); border-top: 1px solid var(--oco-border); padding: 24px; display: flex; flex-direction: column; align-items: flex-start; flex-shrink: 0; }
#screen-1017-3500 .oco-btn-confirm {
  background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent)); height: 44px;
  display: flex; gap: 8px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 999px; width: 100%;
  filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3500 .oco-btn-confirm .oco-label { font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; color: var(--oco-surface); white-space: nowrap; margin: 0; }


/* =====================================================================
   SCREEN 3602 — DATETIME MOBILE — VERBATIM
   ===================================================================== */
#screen-1017-3602.oco-screen * { box-sizing: border-box; margin: 0; padding: 0; }
#screen-1017-3602.oco-screen {
  width: 402px; height: 874px; position: relative; overflow: hidden;
  background: var(--oco-scrim);
  font-family: "Mulish", sans-serif;
  -webkit-font-smoothing: antialiased; text-rendering: geometricPrecision;
}
#screen-1017-3602 .oco-card {
  position: absolute; left: 50%; top: 164px; transform: translateX(-50%);
  width: 402px; display: flex; flex-direction: column; align-items: stretch;
  background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 24px 24px 0 0;
  box-shadow: 0px 2px 6px 0px rgba(51,67,77,0.1); overflow: hidden;
}
#screen-1017-3602 .oco-cal-section { border-bottom: 1px solid var(--oco-border); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
#screen-1017-3602 .oco-datepicker { width: 100%; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
#screen-1017-3602 .oco-dp-title { width: 100%; color: var(--oco-heading); font-size: 16px; line-height: 24px; font-weight: 800; letter-spacing: -0.48px; text-align: center; white-space: nowrap; }
#screen-1017-3602 .oco-month { width: 100%; display: flex; align-items: center; justify-content: space-between; }
#screen-1017-3602 .oco-month .oco-nav { display: flex; align-items: center; justify-content: center; padding: 8px; border-radius: 8px; }
#screen-1017-3602 .oco-month .oco-nav svg { width: 20px; height: 20px; display: block; }
#screen-1017-3602 .oco-month .oco-month-label { color: var(--oco-heading); font-size: 16px; line-height: 24px; font-weight: 800; letter-spacing: -0.48px; text-align: center; white-space: nowrap; }
#screen-1017-3602 .oco-cal-content { width: 100%; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
#screen-1017-3602 .oco-calendar { width: 100%; display: flex; flex-direction: column; }
#screen-1017-3602 .oco-dates { width: 100%; display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
#screen-1017-3602 .oco-row { width: 100%; display: flex; align-items: flex-start; border-radius: 20px; overflow: hidden; }
#screen-1017-3602 .oco-cell { flex: 1 0 0; min-width: 1px; height: 40px; position: relative; border-radius: 20px; }
#screen-1017-3602 .oco-cell .oco-num { position: absolute; left: 50%; top: calc(50% - 10px); transform: translateX(-50%); width: 24px; color: var(--oco-heading); font-size: 14px; line-height: 20px; font-weight: 400; letter-spacing: -0.42px; text-align: center; white-space: nowrap; }
#screen-1017-3602 .oco-cell .oco-wd { position: absolute; left: 50%; top: calc(50% - 10px); transform: translateX(-50%); color: var(--oco-heading); font-size: 14px; line-height: 20px; font-weight: 400; letter-spacing: -0.42px; text-align: center; white-space: nowrap; }
#screen-1017-3602 .oco-cell .oco-num.oco-muted { color: var(--oco-text-muted); }
#screen-1017-3602 .oco-cell.oco-sel { background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent)); }
#screen-1017-3602 .oco-cell.oco-sel .oco-num { color: var(--oco-surface); font-weight: 800; }
#screen-1017-3602 .oco-cell.oco-fill-200 { background: var(--oco-surface-sunken); }
#screen-1017-3602 .oco-cell.oco-fill-200 .oco-num { font-weight: 800; }
#screen-1017-3602 .oco-cell.oco-fill-50 { background: var(--oco-surface-subtle); }
#screen-1017-3602 .oco-cell.oco-fill-50 .oco-num { font-weight: 800; }
#screen-1017-3602 .oco-cell .oco-dot { position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; }
#screen-1017-3602 .oco-dot-green { background: var(--oco-success); }
#screen-1017-3602 .oco-dot-orange { background: var(--oco-warning); }
#screen-1017-3602 .oco-dot-grey { background: var(--oco-text-faint); }
#screen-1017-3602 .oco-legend { width: 100%; display: flex; gap: 16px; align-items: flex-start; }
#screen-1017-3602 .oco-legend .oco-item { display: flex; gap: 6px; align-items: center; }
#screen-1017-3602 .oco-legend .oco-ldot { width: 6px; height: 6px; border-radius: 50%; }
#screen-1017-3602 .oco-legend .oco-ltxt { color: var(--oco-text); font-size: 12px; line-height: normal; font-weight: 400; letter-spacing: -0.36px; white-space: nowrap; }
#screen-1017-3602 .oco-slots-section { background: var(--oco-surface-subtle); padding: 24px; display: flex; flex-direction: column; align-items: stretch; }
#screen-1017-3602 .oco-slots-grid { width: 100%; display: flex; flex-direction: column; gap: 12px; }
#screen-1017-3602 .oco-slots-row { width: 100%; display: flex; gap: 8px; align-items: stretch; }
#screen-1017-3602 .oco-slot { flex: 1 0 0; min-width: 1px; display: flex; }
#screen-1017-3602 .oco-slot.oco-dim { opacity: 0.5; }
#screen-1017-3602 .oco-input {
  width: 100%; background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 999px;
  box-shadow: 0px 1px 2px 0px rgba(16,24,40,0.05);
  padding: 8px 14px; overflow: hidden; display: flex; flex-direction: column; justify-content: center;
}
#screen-1017-3602 .oco-slot-top { width: 100%; display: flex; gap: 10px; align-items: center; }
#screen-1017-3602 .oco-slot-top .oco-sdot { width: 5px; height: 5px; border-radius: 50%; flex: none; }
#screen-1017-3602 .oco-slot-time { color: var(--oco-text-strong); font-size: 16px; line-height: normal; font-weight: 800; letter-spacing: -0.48px; white-space: nowrap; }
#screen-1017-3602 .oco-slot-sub-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding-left: 16px; }
#screen-1017-3602 .oco-slot-sub { flex: 1 0 0; min-width: 1px; font-size: 12px; line-height: normal; font-weight: 400; letter-spacing: -0.36px; }
#screen-1017-3602 .oco-slot-sub.oco-green { color: var(--oco-text); }
#screen-1017-3602 .oco-slot-sub.oco-orange { color: var(--oco-warning-text); }
#screen-1017-3602 .oco-footer { width: 100%; background: var(--oco-surface); border: 1px solid var(--oco-border); padding: 12px 24px; display: flex; flex-direction: column; align-items: stretch; }
#screen-1017-3602 .oco-btn-row { width: 100%; display: flex; gap: 8px; align-items: stretch; }
#screen-1017-3602 .oco-btn {
  flex: 1 0 0; min-width: 1px; background: var(--oco-surface); border: 1px solid var(--oco-border-strong); border-radius: 999px;
  padding: 12px 20px; display: flex; gap: 8px; align-items: center; justify-content: center;
  filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02));
}
#screen-1017-3602 .oco-btn.oco-dim { opacity: 0.5; }
#screen-1017-3602 .oco-btn svg { width: 24px; height: 24px; display: block; flex: none; }
#screen-1017-3602 .oco-btn .oco-blabel { color: var(--oco-heading); font-size: 16px; line-height: normal; letter-spacing: -0.48px; white-space: nowrap; font-family: "Poetsen One", sans-serif; font-weight: 400; }
#screen-1017-3602 .oco-btn .oco-rot { transform: rotate(180deg); }


/* =====================================================================
   SCREEN 3845 — ALTERNATIVE MOBILE — VERBATIM
   ===================================================================== */
#screen-1017-3845 * { margin: 0; padding: 0; box-sizing: border-box; }
#screen-1017-3845 { font-family: "Mulish", sans-serif; -webkit-font-smoothing: antialiased; }
#screen-1017-3845 .oco-root { position: relative; width: 402px; height: 874px; background: var(--oco-scrim); overflow: hidden; }
#screen-1017-3845 .oco-cal-sheet { position: absolute; top: 486px; left: 50%; transform: translateX(-50%); width: 374px; background: var(--oco-surface); border: 0.93px solid var(--oco-border); border-radius: 22.328px 22.328px 0 0; box-shadow: 0px 1.861px 5.582px 0px rgba(51,67,77,0.1); overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; }
#screen-1017-3845 .oco-cal-col { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; width: 100%; }
#screen-1017-3845 .oco-cal-pad { border-bottom: 0.93px solid var(--oco-border); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22.328px; width: 100%; }
#screen-1017-3845 .oco-datepicker { display: flex; flex-direction: column; gap: 11.164px; align-items: flex-start; overflow: hidden; width: 100%; }
#screen-1017-3845 .oco-dp-title { font-weight: 800; font-size: 14.886px; line-height: 22.328px; letter-spacing: -0.4466px; color: var(--oco-heading); text-align: center; white-space: nowrap; width: 100%; }
#screen-1017-3845 .oco-month-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
#screen-1017-3845 .oco-month-btn { display: flex; align-items: center; justify-content: center; padding: 7.443px; border-radius: 7.443px; overflow: hidden; }
#screen-1017-3845 .oco-month-btn svg { width: 18.607px; height: 18.607px; display: block; }
#screen-1017-3845 .oco-month-label { font-weight: 800; font-size: 14.886px; line-height: 22.328px; letter-spacing: -0.4466px; color: var(--oco-heading); text-align: center; white-space: nowrap; }
#screen-1017-3845 .oco-cal-content { display: flex; flex-direction: column; gap: 14.886px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-cal-grid { display: flex; flex-direction: column; gap: 3.721px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-cal-row { display: flex; align-items: flex-start; width: 100%; border-radius: 18.607px; overflow: hidden; }
#screen-1017-3845 .oco-cell { flex: 1 0 0; min-width: 1px; height: 37.214px; position: relative; border-radius: 18.607px; }
#screen-1017-3845 .oco-cell .oco-num { position: absolute; left: calc(50% - 0.27px); top: calc(50% - 9.3px); transform: translateX(-50%); width: 22.328px; font-weight: 400; font-size: 13.025px; line-height: 18.607px; letter-spacing: -0.3907px; text-align: center; color: var(--oco-heading); }
#screen-1017-3845 .oco-cell .oco-hdr { position: absolute; left: calc(50% - 0.27px); top: calc(50% - 9.3px); transform: translateX(-50%); font-weight: 400; font-size: 13.025px; line-height: 18.607px; letter-spacing: -0.3907px; text-align: center; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3845 .oco-cell .oco-num.oco-muted { color: var(--oco-text-muted); }
#screen-1017-3845 .oco-cell.oco-sel { background: linear-gradient(180deg, var(--oco-accent-bright) 0%, var(--oco-accent) 100%); }
#screen-1017-3845 .oco-cell.oco-sel .oco-num { color: var(--oco-surface); font-weight: 800; }
#screen-1017-3845 .oco-cell.oco-today { background: var(--oco-surface-sunken); }
#screen-1017-3845 .oco-cell.oco-today .oco-num { font-weight: 800; }
#screen-1017-3845 .oco-cell.oco-faint { background: var(--oco-surface-subtle); }
#screen-1017-3845 .oco-cell.oco-faint .oco-num { font-weight: 800; }
#screen-1017-3845 .oco-cell .oco-dot { position: absolute; bottom: 3.72px; left: calc(50% - 0.27px); transform: translateX(-50%); width: 4.652px; height: 4.652px; border-radius: 50%; }
#screen-1017-3845 .oco-dot-grey { background: var(--oco-text-faint); }
#screen-1017-3845 .oco-dot-green { background: var(--oco-success); }
#screen-1017-3845 .oco-dot-orange { background: var(--oco-warning); }
#screen-1017-3845 .oco-dot-pale { background: var(--oco-border); }
#screen-1017-3845 .oco-legend { display: flex; gap: 14.886px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-legend-item { display: flex; gap: 5.582px; align-items: center; }
#screen-1017-3845 .oco-legend-dot { width: 5.582px; height: 5.582px; border-radius: 50%; }
#screen-1017-3845 .oco-legend-label { font-weight: 400; font-size: 11.164px; letter-spacing: -0.3349px; color: var(--oco-text); white-space: nowrap; }
#screen-1017-3845 .oco-slots-wrap { display: flex; flex-direction: column; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-slots-bg { background: var(--oco-surface-subtle); display: flex; flex-direction: column; align-items: flex-start; padding: 22.328px; width: 100%; }
#screen-1017-3845 .oco-slots-stack { display: flex; flex-direction: column; gap: 11.164px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-slots-line { display: flex; gap: 7.443px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-field { flex: 1 0 0; min-width: 1px; display: flex; flex-direction: column; gap: 5.582px; align-items: flex-start; }
#screen-1017-3845 .oco-field.oco-stretch { align-self: stretch; }
#screen-1017-3845 .oco-field.oco-dim { opacity: 0.5; }
#screen-1017-3845 .oco-input { background: var(--oco-surface); border: 0.93px solid var(--oco-border); border-radius: 929.418px; box-shadow: 0px 0.93px 1.861px 0px rgba(16,24,40,0.05); display: flex; align-items: center; overflow: hidden; padding: 7.443px 13.025px; width: 100%; }
#screen-1017-3845 .oco-field.oco-stretch .oco-input { flex: 1 0 0; min-height: 1px; align-items: flex-start; }
#screen-1017-3845 .oco-input-content { flex: 1 0 0; min-width: 1px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
#screen-1017-3845 .oco-input-top { display: flex; gap: 9.303px; align-items: center; width: 100%; }
#screen-1017-3845 .oco-input-dot { width: 4.652px; height: 4.652px; border-radius: 50%; flex-shrink: 0; }
#screen-1017-3845 .oco-input-time { font-weight: 800; font-size: 14.886px; letter-spacing: -0.4466px; color: var(--oco-text-strong); white-space: nowrap; }
#screen-1017-3845 .oco-input-sub-row { display: flex; align-items: center; justify-content: center; padding-left: 14.886px; width: 100%; }
#screen-1017-3845 .oco-input-sub { flex: 1 0 0; min-width: 1px; font-weight: 400; font-size: 11.164px; letter-spacing: -0.3349px; color: var(--oco-text); }
#screen-1017-3845 .oco-input-sub.oco-orange { color: var(--oco-warning-text); }
#screen-1017-3845 .oco-cal-foot { background: var(--oco-surface); border: 0.93px solid var(--oco-border); display: flex; flex-direction: column; align-items: flex-start; padding: 11.164px 22.328px; width: 100%; }
#screen-1017-3845 .oco-cal-foot-row { display: flex; gap: 7.443px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-ftbtn { flex: 1 0 0; min-width: 1px; background: var(--oco-surface); border: 0.93px solid var(--oco-border-strong); border-radius: 929.418px; display: flex; gap: 7.443px; align-items: center; justify-content: center; padding: 11.164px 18.607px; filter: drop-shadow(0px 0.93px 0.93px rgba(0,0,0,0.02)) drop-shadow(0px 2.791px 1.396px rgba(0,0,0,0.02)) drop-shadow(0px 6.512px 1.861px rgba(0,0,0,0.01)); }
#screen-1017-3845 .oco-ftbtn.oco-dim { opacity: 0.5; }
#screen-1017-3845 .oco-ftbtn svg { width: 22.328px; height: 22.328px; display: block; }
#screen-1017-3845 .oco-ftbtn .oco-lbl { font-family: "Poetsen One", cursive; font-weight: 400; font-size: 14.886px; letter-spacing: -0.4466px; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3845 .oco-flip { transform: rotate(180deg); }
#screen-1017-3845 .oco-overlay { position: absolute; top: 0; left: 0; width: 402px; height: 874px; background: rgba(0,0,0,0.25); }
#screen-1017-3845 .oco-modal { position: absolute; top: 501px; left: 0; width: 402px; background: var(--oco-surface); border: 1px solid var(--oco-border); border-radius: 24px 24px 0 0; box-shadow: 0px 2px 6px 0px rgba(51,67,77,0.1); display: flex; align-items: flex-start; overflow: hidden; }
#screen-1017-3845 .oco-inner { border: 1px solid var(--oco-border); display: flex; flex-direction: column; align-items: flex-start; width: 412px; flex-shrink: 0; }
#screen-1017-3845 .oco-dp { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; overflow: hidden; width: 100%; }
#screen-1017-3845 .oco-head { border-bottom: 1px solid var(--oco-border); display: flex; gap: 12px; align-items: flex-start; padding: 24px; width: 100%; }
#screen-1017-3845 .oco-alert-badge { background: var(--oco-warning-wash); border-radius: 999px; flex-shrink: 0; width: 40px; height: 40px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; }
#screen-1017-3845 .oco-alert-badge svg { width: 24px; height: 24px; display: block; }
#screen-1017-3845 .oco-head-txt { flex: 1 0 0; min-width: 1px; display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
#screen-1017-3845 .oco-head-title { font-weight: 800; font-size: 16px; line-height: 24px; letter-spacing: -0.48px; color: var(--oco-heading); text-align: center; white-space: nowrap; }
#screen-1017-3845 .oco-head-sub { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); width: 100%; }
#screen-1017-3845 .oco-body { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; padding: 0 24px 24px; width: 100%; }
#screen-1017-3845 .oco-sec { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-avail { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); width: 316px; }
#screen-1017-3845 .oco-ride-card { background: var(--oco-surface-sunken); border-radius: 12px; display: flex; align-items: center; padding: 12px; width: 100%; }
#screen-1017-3845 .oco-ride-inner { display: flex; gap: 12px; align-items: flex-start; }
#screen-1017-3845 .oco-ride-img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; display: block; pointer-events: none; flex-shrink: 0; }
#screen-1017-3845 .oco-ride-txt { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; justify-content: center; padding-top: 4px; }
#screen-1017-3845 .oco-ride-title { font-weight: 800; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3845 .oco-ride-meta { display: flex; gap: 4px; align-items: center; }
#screen-1017-3845 .oco-ride-meta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--oco-success); flex-shrink: 0; }
#screen-1017-3845 .oco-ride-meta-txt { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); white-space: nowrap; }
#screen-1017-3845 .oco-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; width: 100%; }
#screen-1017-3845 .oco-mbtn { height: 44px; border-radius: 999px; width: 100%; display: flex; gap: 8px; align-items: center; justify-content: center; padding: 12px 20px; filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.02)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 7px 2px rgba(0,0,0,0.01)); }
#screen-1017-3845 .oco-mbtn.oco-secondary { background: var(--oco-surface); border: 1px solid var(--oco-border-strong); }
#screen-1017-3845 .oco-mbtn.oco-primary { background: linear-gradient(180deg, var(--oco-accent-bright) 0%, var(--oco-accent) 100%); }
#screen-1017-3845 .oco-mbtn .oco-mlbl { font-family: "Poetsen One", cursive; font-weight: 400; font-size: 16px; letter-spacing: -0.48px; white-space: nowrap; }
#screen-1017-3845 .oco-mbtn.oco-secondary .oco-mlbl { color: var(--oco-heading); }
#screen-1017-3845 .oco-mbtn.oco-primary .oco-mlbl { color: var(--oco-surface); }


/* =====================================================================
   SCREEN 3797 — RECAP MOBILE — VERBATIM
   ===================================================================== */
#screen-1017-3797 *,
#screen-1017-3797 *::before,
#screen-1017-3797 *::after { box-sizing: border-box; margin: 0; padding: 0; }
#screen-1017-3797 { font-family: "Mulish", sans-serif; }
#screen-1017-3797 .oco-root { position: relative; width: 402px; height: 874px; background: var(--oco-scrim); overflow: hidden; }
#screen-1017-3797 .oco-card { position: absolute; left: 0; top: 48px; width: 402px; height: 826px; display: flex; flex-direction: column; align-items: flex-start; background: var(--oco-surface); border: 1px solid var(--oco-border); border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 2px 6px 0px rgba(51,67,77,0.1); overflow: hidden; }
#screen-1017-3797 .oco-recap { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; width: 100%; padding: 24px; background: var(--oco-surface-subtle); border-right: 1px solid var(--oco-border); }
#screen-1017-3797 .oco-recap-inner { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; width: 100%; }
#screen-1017-3797 .oco-section-title { font-weight: 800; font-size: 16px; line-height: 24px; letter-spacing: -0.48px; color: var(--oco-heading); text-align: center; white-space: nowrap; }
#screen-1017-3797 .oco-grid { display: grid; grid-template-columns: fit-content(100%) minmax(0, 1fr); column-gap: 32px; row-gap: 16px; width: 100%; align-items: start; }
#screen-1017-3797 .oco-label { font-weight: 400; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-text); }
#screen-1017-3797 .oco-label-fixed { width: 72px; }
#screen-1017-3797 .oco-value { font-weight: 800; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-heading); }
#screen-1017-3797 .oco-divider { grid-column: 1 / span 2; height: 0; border-top: 1px solid var(--oco-border); }
#screen-1017-3797 .oco-total-label { font-weight: 800; font-size: 14px; line-height: 1.2; letter-spacing: -0.42px; color: var(--oco-heading); }
#screen-1017-3797 .oco-total-value { font-weight: 800; font-size: 20px; line-height: 1.2; letter-spacing: -0.6px; color: var(--oco-heading); text-align: right; }
#screen-1017-3797 .oco-btn-back { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; background: var(--oco-surface); border: 1px solid var(--oco-border-strong); border-radius: 999px; filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02)); }
#screen-1017-3797 .oco-btn-back svg { width: 24px; height: 24px; display: block; }
#screen-1017-3797 .oco-btn-back-label { font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; color: var(--oco-heading); white-space: nowrap; }
#screen-1017-3797 .oco-info { display: flex; flex-direction: column; align-items: center; width: 100%; border-radius: 24px; }
#screen-1017-3797 .oco-info-inner { display: flex; flex-direction: column; gap: 32px; align-items: flex-start; width: 100%; padding: 24px; overflow: hidden; }
#screen-1017-3797 .oco-fields { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; width: 100%; }
#screen-1017-3797 .oco-field { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; width: 100%; }
#screen-1017-3797 .oco-field-label { font-weight: 400; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-text); width: 316px; }
#screen-1017-3797 .oco-input { display: flex; align-items: center; width: 100%; padding: 16px; background: var(--oco-surface-sunken); border-radius: 12px; }
#screen-1017-3797 .oco-input.oco-textarea { height: 96px; align-items: flex-start; }
#screen-1017-3797 .oco-input-text { font-weight: 400; font-size: 16px; line-height: 1.2; letter-spacing: -0.48px; color: var(--oco-heading); opacity: 0.65; white-space: nowrap; }
#screen-1017-3797 .oco-footer { position: absolute; left: -1px; top: 733px; width: 412px; display: flex; flex-direction: column; align-items: flex-start; padding: 24px; background: var(--oco-surface); border: 1px solid var(--oco-border); }
#screen-1017-3797 .oco-btn-confirm { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 44px; padding: 12px 20px; background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent)); border-radius: 999px; filter: drop-shadow(0px 7px 2px rgba(0,0,0,0.01)) drop-shadow(0px 3px 1.5px rgba(0,0,0,0.02)) drop-shadow(0px 1px 1px rgba(0,0,0,0.02)); }
#screen-1017-3797 .oco-btn-confirm-label { font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px; line-height: normal; letter-spacing: -0.48px; color: var(--oco-surface); white-space: nowrap; }

/* Champs de saisie réels du récap (formulaire client) — reset fort pour
   neutraliser les styles d'input hérités du thème (Bricks/WordPress). */
#screen-1017-3500 .oco-field-control,
#screen-1017-3797 .oco-field-control {
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  color: var(--oco-heading);
  -webkit-appearance: none;
  appearance: none;
}
#screen-1017-3500 .oco-field-control::placeholder,
#screen-1017-3797 .oco-field-control::placeholder { color: var(--oco-text-muted); opacity: 1; }
#screen-1017-3500 .oco-field-control--area { resize: none; min-height: 72px; }
#screen-1017-3797 .oco-field-control--area { resize: none; min-height: 64px; }

/* Champ optionnel : mention discrète à côté du label */
#screen-1017-3500 .oco-field-opt,
#screen-1017-3797 .oco-field-opt { color: var(--oco-text-muted); font-weight: 400; font-size: 0.82em; }

/* Validation inline : contour rouge du champ (inset = pas de reflow) + message */
#screen-1017-3500 .oco-wrap-error,
#screen-1017-3797 .oco-wrap-error { box-shadow: inset 0 0 0 1.5px var(--oco-danger); }
#screen-1017-3500 .oco-field-error,
#screen-1017-3797 .oco-field-error { margin: 0; color: #c81e1e; font-size: 12px; line-height: 1.3; font-weight: 600; }

/* Bannière d'erreur de soumission (échec serveur/réseau), affichée sur le récap */
#screen-1017-3500 .oco-recap-error,
#screen-1017-3797 .oco-recap-error {
  width: 100%; margin-bottom: 12px; padding: 10px 14px;
  background: var(--oco-danger-wash); border-radius: 12px;
  color: #c81e1e; font-size: 13px; line-height: 1.35; font-weight: 600;
}

/* Créneaux non réservables (complet / trop petit) : pastille grise + opacité réduite */
#screen-1017-3242 .oco-dot-grey,
#screen-1017-3602 .oco-dot-grey { background: var(--oco-text-muted, #98a2b3) !important; }
#screen-1017-3242 .oco-input.oco-is-unbookable,
#screen-1017-3602 .oco-input.oco-is-unbookable { opacity: 0.5; }
/* Jour de calendrier sans disponibilité : grisé, non cliquable */
#screen-1017-3242 .oco-cell.oco-is-off,
#screen-1017-3602 .oco-cell.oco-is-off { opacity: 0.4; cursor: default; }
/* Pastilles de disponibilité du calendrier : couleur forcée + au-dessus du numéro */
#screen-1017-3242 .oco-cell .oco-daydot { display: block !important; z-index: 3; }
#screen-1017-3242 .oco-daydot.oco-dot-green { background: #12b76a !important; }
#screen-1017-3242 .oco-daydot.oco-dot-orange { background: #f59e0b !important; }

/* Vignette alternative sans image réelle : placeholder neutre (pas de 404) */
#screen-1017-3436 .oco-alt-thumb--ph,
#screen-1017-3845 .oco-alt-thumb--ph {
  background: linear-gradient(135deg, var(--oco-surface-sunken, #f2f4f7), var(--oco-border, #e4e7ec));
  position: relative;
}
#screen-1017-3436 .oco-alt-thumb--ph::after,
#screen-1017-3845 .oco-alt-thumb--ph::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--oco-accent, #f46e01);
  opacity: 0.45;
}

/* Mobile — créneau complet : opacité réduite + sous-texte gris */
#screen-1017-3602 .oco-slot.oco-is-unbookable { opacity: 0.5; }
#screen-1017-3602 .oco-slot-sub.oco-gray { color: var(--oco-text-muted, #98a2b3); }

/* Mobile — vignette alternative sans image réelle : placeholder neutre */
#screen-1017-3845 .oco-ride-img--ph {
  background: linear-gradient(135deg, var(--oco-surface-sunken, #f2f4f7), var(--oco-border, #e4e7ec));
  position: relative;
}
#screen-1017-3845 .oco-ride-img--ph::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--oco-accent, #f46e01);
  opacity: 0.45;
}

/* =====================================================================
   Inputs décomposés (Participants · Date & créneau · Réserver)
   Composants placés dans la page ; chacun ouvre le flux à son étape.
   ===================================================================== */
.oco-inputs-bar {
  display: inline-flex; align-items: stretch; gap: 6px; flex-wrap: wrap;
  padding: 6px; background: var(--oco-surface, #fff);
  border: 1px solid var(--oco-border, #e4e7ec); border-radius: 999px;
  box-shadow: 0 2px 8px rgba(51,67,77,0.08);
  font-family: "Mulish", sans-serif;
}
.oco-input-field {
  appearance: none; border: 0; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 2px; min-width: 148px; padding: 8px 20px;
  background: transparent; border-radius: 999px;
  transition: background 0.12s ease;
}
.oco-input-field:hover { background: var(--oco-surface-sunken, #f2f4f7); }
.oco-input-field:focus-visible { outline: 2px solid var(--oco-accent, #0094e5); outline-offset: 2px; }
.oco-input-field__label {
  font-size: 12px; font-weight: 700; letter-spacing: -0.2px;
  color: var(--oco-text-muted, #98a2b3);
}
.oco-input-field__value {
  font-size: 15px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--oco-heading, #1d2939); white-space: nowrap;
}
.oco-input-field--cta {
  flex-direction: row; align-items: center; justify-content: center;
  min-width: 0; padding: 12px 28px;
  background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent));
  filter: drop-shadow(0px 3px 1.5px rgba(0,0,0,0.06)) drop-shadow(0px 1px 1px rgba(0,0,0,0.04));
}
.oco-input-field--cta:hover { background: linear-gradient(to bottom, var(--oco-accent), var(--oco-accent-strong)); }
.oco-input-field__cta {
  font-family: "Poetsen One", sans-serif; font-weight: 400; font-size: 16px;
  letter-spacing: -0.48px; color: var(--oco-surface); white-space: nowrap;
}
@media (max-width: 640px) {
  .oco-inputs-bar { display: flex; flex-direction: column; width: 100%; border-radius: 24px; }
  .oco-input-field { width: 100%; min-width: 0; }
  .oco-input-field--cta { padding: 14px 28px; }
}

/* Inputs INDÉPENDANTS (flow-test) : chaque contrôle est autonome (bordure, fond
   et ombre propres), pas fusionné dans une pill. Réutilise la base .oco-input-field. */
.oco-inputs {
  display: inline-flex; align-items: stretch; gap: 12px; flex-wrap: wrap;
  font-family: "Mulish", sans-serif;
}
.oco-input-field--solo {
  background: var(--oco-surface, #fff);
  border: 1px solid var(--oco-border, #e4e7ec);
  box-shadow: 0 2px 8px rgba(51,67,77,0.08);
  padding: 12px 24px;
}
.oco-input-field--solo:hover {
  background: var(--oco-surface-sunken, #f2f4f7);
  border-color: var(--oco-border-strong, #d0d5dd);
}
.oco-input-field--solo.oco-input-field--cta {
  border: 0;
  background: linear-gradient(to bottom, var(--oco-accent-bright), var(--oco-accent));
}
.oco-input-field--solo.oco-input-field--cta:hover {
  background: linear-gradient(to bottom, var(--oco-accent), var(--oco-accent-strong));
}
@media (max-width: 640px) {
  .oco-inputs { display: flex; flex-direction: column; width: 100%; }
  .oco-input-field--solo { width: 100%; }
}

/* =====================================================================
   PROMO-CODE BLOCK (recap step)
   Affiché uniquement quand plugin-promotions est actif (guard PHP + JS).
   ===================================================================== */
.ocoflow-promo-block {
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--oco-border, #dcdfe1);
}
.ocoflow-promo-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ocoflow-promo-input {
  flex: 1 1 0;
  min-width: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--oco-border-strong, #cad5e2);
  border-radius: 8px;
  background: var(--oco-surface, #fff);
  color: var(--oco-text-strong, #101828);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.ocoflow-promo-input:focus {
  border-color: var(--oco-accent, #0094e5);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--oco-accent, #0094e5) 14%, transparent);
}
.ocoflow-promo-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border: 1px solid var(--oco-accent, #0094e5);
  border-radius: 8px;
  background: transparent;
  color: var(--oco-accent, #0094e5);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.ocoflow-promo-btn:hover:not([disabled]) {
  background: var(--oco-accent, #0094e5);
  color: var(--oco-on-accent, #fff);
}
.ocoflow-promo-btn[disabled] {
  opacity: 0.55;
  cursor: default;
}
.ocoflow-promo-feedback {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.4;
}
.ocoflow-promo-feedback--error {
  color: var(--oco-danger, #ff4b4b);
}
.ocoflow-promo-feedback--ok {
  color: var(--oco-success-text, #067647);
}
/* Discount value shown in recap grid (both desktop and mobile) */
.ocoflow-discount-value {
  color: var(--oco-success-text, #067647);
}

/* =====================================================================
   CHAMPS PERSONNALISÉS — PILLS (radio + checkbox) + SWITCH (toggle)
   + SELECT CHEVRON + NUMBER (pas de spinners)
   Scopé sur les deux récaps : desktop #screen-1017-3500,
   mobile  #screen-1017-3797.
   ===================================================================== */

/* ---------- Conteneur pills ------------------------------------------ */
#screen-1017-3500 .oco-choices,
#screen-1017-3797 .oco-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

/* ---------- Pill individuelle ----------------------------------------- */
#screen-1017-3500 .oco-choice,
#screen-1017-3797 .oco-choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--oco-surface-sunken);
  border: 1px solid var(--oco-border);
  border-radius: 10px;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--oco-heading);
  line-height: 1.2;
  letter-spacing: -0.28px;
  user-select: none;
  transition: border-color 0.14s ease, background 0.14s ease;
  position: relative;
}

#screen-1017-3500 .oco-choice:hover,
#screen-1017-3797 .oco-choice:hover {
  border-color: var(--oco-border-strong);
}

/* Pill sélectionnée (via :has — graceful degradation si non supporté) */
#screen-1017-3500 .oco-choice:has(.oco-choice-input:checked),
#screen-1017-3797 .oco-choice:has(.oco-choice-input:checked) {
  border-color: var(--oco-accent);
  background: var(--oco-accent-wash);
}

/* ---------- Input caché ----------------------------------------------- */
#screen-1017-3500 .oco-choice-input,
#screen-1017-3797 .oco-choice-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ---------- Indicateur visuel (marque) --------------------------------- */
#screen-1017-3500 .oco-choice-mark,
#screen-1017-3797 .oco-choice-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--oco-border-strong);
  background: var(--oco-surface);
  transition: border-color 0.14s ease, background 0.14s ease, box-shadow 0.14s ease;
  position: relative;
}

/* Radio : cercle */
#screen-1017-3500 .oco-choices--radio .oco-choice-mark,
#screen-1017-3797 .oco-choices--radio .oco-choice-mark {
  border-radius: 50%;
}

/* Radio checked : dot accent via box-shadow interne */
#screen-1017-3500 .oco-choices--radio .oco-choice-input:checked ~ .oco-choice-mark,
#screen-1017-3797 .oco-choices--radio .oco-choice-input:checked ~ .oco-choice-mark {
  border-color: var(--oco-accent);
  box-shadow: inset 0 0 0 4px var(--oco-accent);
}

/* Checkbox : carré arrondi */
#screen-1017-3500 .oco-choices--checkbox .oco-choice-mark,
#screen-1017-3797 .oco-choices--checkbox .oco-choice-mark {
  border-radius: 5px;
}

/* Checkbox checked : fond accent + coche blanche */
#screen-1017-3500 .oco-choices--checkbox .oco-choice-input:checked ~ .oco-choice-mark,
#screen-1017-3797 .oco-choices--checkbox .oco-choice-input:checked ~ .oco-choice-mark {
  border-color: var(--oco-accent);
  background: var(--oco-accent);
}

#screen-1017-3500 .oco-choices--checkbox .oco-choice-input:checked ~ .oco-choice-mark::after,
#screen-1017-3797 .oco-choices--checkbox .oco-choice-input:checked ~ .oco-choice-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--oco-on-accent);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

/* Texte de la pill */
#screen-1017-3500 .oco-choice-text,
#screen-1017-3797 .oco-choice-text {
  flex: 1;
  min-width: 0;
}

/* Erreur au-dessus des pills (pas dans un wrapper sunken) */
#screen-1017-3500 .oco-choices-error,
#screen-1017-3797 .oco-choices-error {
  margin-bottom: 4px;
}

/* ---------- Toggle switch --------------------------------------------- */
#screen-1017-3500 .oco-field-switch,
#screen-1017-3797 .oco-field-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--oco-heading);
  line-height: 1.2;
  letter-spacing: -0.28px;
}

/* Input caché */
#screen-1017-3500 .oco-switch-input,
#screen-1017-3797 .oco-switch-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Track (44×26 px) */
#screen-1017-3500 .oco-switch-track,
#screen-1017-3797 .oco-switch-track {
  flex-shrink: 0;
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: var(--oco-border-strong);
  transition: background 0.18s ease;
}

#screen-1017-3500 .oco-switch-input:checked ~ .oco-switch-track,
#screen-1017-3797 .oco-switch-input:checked ~ .oco-switch-track {
  background: var(--oco-accent);
}

/* Knob (20×20 px, centré verticalement, décalé à droite quand on) */
#screen-1017-3500 .oco-switch-knob,
#screen-1017-3797 .oco-switch-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--oco-on-accent);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.18);
  transition: transform 0.18s ease;
}

#screen-1017-3500 .oco-switch-input:checked ~ .oco-switch-track .oco-switch-knob,
#screen-1017-3797 .oco-switch-input:checked ~ .oco-switch-track .oco-switch-knob {
  transform: translateX(18px);
}

/* Libellé du switch (Oui / Non ou label perso) */
#screen-1017-3500 .oco-switch-text,
#screen-1017-3797 .oco-switch-text {
  color: var(--oco-text);
}

/* Bascule Oui/Non du switch, pilotée par :checked (pas de re-render JS) */
#screen-1017-3500 .oco-switch-on,
#screen-1017-3797 .oco-switch-on { display: none; }
#screen-1017-3500 .oco-switch-input:checked ~ .oco-switch-text .oco-switch-on,
#screen-1017-3797 .oco-switch-input:checked ~ .oco-switch-text .oco-switch-on { display: inline; }
#screen-1017-3500 .oco-switch-input:checked ~ .oco-switch-text .oco-switch-off,
#screen-1017-3797 .oco-switch-input:checked ~ .oco-switch-text .oco-switch-off { display: none; }

/* ---------- Select + chevron ------------------------------------------ */
#screen-1017-3500 .oco-select-wrap,
#screen-1017-3797 .oco-select-wrap {
  position: relative;
}

/* Flèche bas (chevron SVG inliné comme background) */
#screen-1017-3500 .oco-select-wrap::after,
#screen-1017-3797 .oco-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2398a2b3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Padding droit pour éviter que le texte chevauche la flèche */
#screen-1017-3500 .oco-field-control--select,
#screen-1017-3797 .oco-field-control--select {
  padding-right: 36px !important;
  cursor: pointer;
}

/* ---------- Number : masquer les spinners natifs ----------------------- */
#screen-1017-3500 .oco-field-control--number::-webkit-inner-spin-button,
#screen-1017-3500 .oco-field-control--number::-webkit-outer-spin-button,
#screen-1017-3797 .oco-field-control--number::-webkit-inner-spin-button,
#screen-1017-3797 .oco-field-control--number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#screen-1017-3500 .oco-field-control--number,
#screen-1017-3797 .oco-field-control--number {
  -moz-appearance: textfield;
}
