/* Carly & Evan — Garden Elegant
 * Design tokens + components ported from the Claude Design handoff (Direction A).
 * Light theme only; dark mode and Direction B/C variants are intentionally omitted.
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Italiana&display=swap');

:root {
    --cream:        #f6f0e6;
    --cream-2:      #ece3d2;
    --ink:          #2a2e2a;
    --ink-soft:     #4a4e48;
    --muted:        #8b8a82;
    --line:         rgba(42, 46, 42, 0.12);

    --accent-blue:      #8fa6cc;
    --accent-blue-deep: #5a72a0;
    --accent-sage:      #93a688;
    --accent-leaf:      #3f5a3a;

    --accent:      var(--accent-blue-deep);
    --accent-soft: var(--accent-blue);

    --radius:    14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(42, 46, 42, 0.04), 0 1px 3px rgba(42, 46, 42, 0.06);
    --shadow-md: 0 4px 14px rgba(42, 46, 42, 0.08), 0 2px 6px rgba(42, 46, 42, 0.05);
    --shadow-lg: 0 20px 50px rgba(42, 46, 42, 0.14), 0 8px 20px rgba(42, 46, 42, 0.08);

    --font-display: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
    --font-script:  'Italiana', 'Cormorant Garamond', serif;
    --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.01em;
}
p { margin: 0; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ─── Buttons ──────────────────────────────────────────────────── */
.ce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: 14px;
    transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid color-mix(in oklab, var(--accent) 90%, black);
    text-decoration: none;
}
.ce-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.ce-btn:active { transform: translateY(0); }
.ce-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.ce-btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none;
}
.ce-btn-ghost:hover { background: color-mix(in oklab, var(--ink) 4%, transparent); }
.ce-btn-lg { padding: 16px 28px; font-size: 15px; }
.ce-btn-sm { padding: 8px 14px; font-size: 12.5px; }
.ce-btn-block { width: 100%; }

/* ─── Form fields ──────────────────────────────────────────────── */
.ce-input, .ce-textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: color-mix(in oklab, var(--cream) 50%, white);
    color: var(--ink);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.ce-input:focus, .ce-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
}
.ce-textarea { min-height: 80px; resize: vertical; line-height: 1.5; }
.ce-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

/* ─── Card ─────────────────────────────────────────────────────── */
.ce-card {
    background: color-mix(in oklab, var(--cream) 60%, white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ─── Divider w/ ornament label ────────────────────────────────── */
.ce-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.ce-divider::before, .ce-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ─── Tag (per-guest summary chip) ─────────────────────────────── */
.ce-tag {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

/* ─── Pill toggle (RSVP "All / None" shortcut) ─────────────────── */
.ce-pill-group {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--ink) 6%, transparent);
    gap: 2px;
}
.ce-pill {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--ink-soft);
    transition: background .15s ease, color .15s ease;
    cursor: pointer;
}
.ce-pill[data-active="true"] {
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

/* ─── Per-guest accept/decline pill ────────────────────────────── */
.ce-attend {
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12.5px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .15s;
}
.ce-attend[data-active="true"] {
    border-color: var(--accent);
    background: color-mix(in oklab, var(--accent) 14%, transparent);
    color: var(--accent);
    font-weight: 600;
}
.ce-attend[data-active="true"][data-negative="true"] {
    border-color: var(--muted);
    background: color-mix(in oklab, var(--muted) 12%, transparent);
    color: var(--ink);
}

/* ─── Custom checkbox ──────────────────────────────────────────── */
.ce-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 12.5px;
    color: var(--ink-soft);
}
.ce-check input { position: absolute; opacity: 0; pointer-events: none; }
.ce-check-box {
    width: 18px; height: 18px;
    border-radius: 5px;
    border: 1px solid var(--line);
    background: color-mix(in oklab, var(--cream) 50%, white);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s ease, border-color .15s ease;
}
.ce-check-box svg { opacity: 0; }
.ce-check input:checked + .ce-check-box { background: var(--accent); border-color: var(--accent); }
.ce-check input:checked + .ce-check-box svg { opacity: 1; }

/* ─── Filter pills (registry categories) ───────────────────────── */
.ce-filter {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    background: transparent;
    cursor: pointer;
}
.ce-filter[data-active="true"] {
    border-color: var(--accent);
    color: var(--accent);
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    font-weight: 600;
}

/* ─── Modal ────────────────────────────────────────────────────── */
.ce-modal-veil {
    position: fixed; inset: 0;
    background: color-mix(in oklab, var(--ink) 55%, transparent);
    backdrop-filter: blur(2px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    z-index: 50;
}
.ce-modal {
    width: 100%;
    max-width: 420px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

/* ─── Toast ────────────────────────────────────────────────────── */
.ce-toast {
    position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
    background: var(--ink); color: var(--cream);
    padding: 10px 18px; border-radius: 999px;
    font-size: 13px; box-shadow: var(--shadow-lg);
    z-index: 60;
    animation: ce-fadein .25s ease both;
}
@keyframes ce-fadein {
    from { opacity: 0; transform: translate(-50%, 6px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.ce-screen-enter { animation: ce-fadein2 .35s ease both; }
@keyframes ce-fadein2 {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
}

/* ─── Top nav ──────────────────────────────────────────────────── */
.ce-topnav {
    position: sticky; top: 0; z-index: 30;
    background: color-mix(in oklab, var(--cream) 88%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.ce-topnav__inner {
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.ce-topnav__brand {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 26px;
    color: var(--ink);
}
.ce-topnav__brand svg { width: 20px; height: 20px; }
.ce-topnav__links {
    display: flex; align-items: center; gap: 4px;
}
.ce-topnav__link {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    cursor: pointer;
}
.ce-topnav__link[aria-current="page"] {
    color: var(--accent);
    font-weight: 600;
}
.ce-topnav__sep {
    width: 1px; height: 18px;
    background: var(--line);
    margin: 0 10px;
}
.ce-topnav__account {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--ink-soft);
    cursor: pointer;
}
.ce-topnav__account[aria-current="page"] { color: var(--accent); }
.ce-topnav__account svg { width: 13px; height: 13px; }
.ce-topnav__menu-btn {
    display: none;
    padding: 8px;
    color: var(--ink);
}
.ce-topnav__menu-btn svg { width: 22px; height: 22px; }

.ce-topnav__menu {
    display: none;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow-md);
    padding: 8px 18px 20px;
}
.ce-topnav__menu a, .ce-topnav__menu button {
    display: block; width: 100%; text-align: left;
    padding: 14px 8px;
    font-family: var(--font-display); font-size: 22px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}
.ce-topnav__menu a[aria-current="page"] { color: var(--accent); }
.ce-topnav__menu .ce-topnav__menu-auth {
    margin-top: 10px;
    padding: 10px 8px;
    font-family: var(--font-body); font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted);
    border: none;
}

@media (max-width: 767px) {
    .ce-topnav__inner { padding: 12px 18px; }
    .ce-topnav__brand { font-size: 22px; }
    .ce-topnav__links { display: none; }
    .ce-topnav__menu-btn { display: inline-flex; }
    .ce-topnav[data-menu-open="true"] .ce-topnav__menu { display: block; }
}

/* ─── Footer ───────────────────────────────────────────────────── */
.ce-footer {
    padding: 40px 60px 50px;
    text-align: center;
    border-top: 1px solid var(--line);
    margin-top: auto;
}
.ce-footer__bloom {
    width: 36px; height: 36px;
    margin: 0 auto 10px;
    color: var(--accent-soft);
    opacity: 0.75;
}
.ce-footer__monogram {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 4px;
}
.ce-footer__meta {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (max-width: 767px) {
    .ce-footer { padding: 24px 18px 30px; }
}

/* ─── Floral corner ornaments ──────────────────────────────────── */
.ce-floral-corner {
    position: absolute;
    pointer-events: none;
    color: var(--accent-soft);
}
.ce-floral-corner svg { width: 100%; height: 100%; display: block; }
.ce-floral-tl { top: -24px; left: -24px; transform: rotate(180deg); }
.ce-floral-br { bottom: -24px; right: -24px; }
.ce-floral-tl-inset { top: 6px; left: 6px; transform: rotate(180deg); }
.ce-floral-br-inset { bottom: 6px; right: 6px; }
.ce-floral-medium { width: 150px; height: 150px; opacity: 0.8; }
.ce-floral-subtle { width: 90px; height: 90px; opacity: 0.55; }

/* ─── Hero (postcard variant) ──────────────────────────────────── */
.ce-hero {
    position: relative;
    padding: 56px 60px 0;
    /* Match the topnav container so the postcard fills wider screens.
       The arch image scales with the postcard, but .ce-hero__postcard's
       padding-top scales with it (see below) so the names stay clear. */
    max-width: 1200px;
    margin: 0 auto;
}
.ce-hero__welcome {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    text-align: center;
}
.ce-hero__postcard {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    /* padding-top tracks the postcard's own width: % resolves against the
       parent's content width, which is exactly what the 100%-wide arch image
       scales by, so padding and arch grow together. 16% leaves comfortable
       breathing room above the names at the 1200px max width — the dangling
       flower clusters dip lower than the arch's central dome.
       The 70px floor keeps phone-scale layouts safe. */
    padding: max(70px, 16%) 60px 56px;
    text-align: center;
    background: color-mix(in oklab, var(--cream) 50%, white);
    overflow: hidden;
}
.ce-hero__arch {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}
.ce-hero__inner {
    position: relative;
    z-index: 1;
}
.ce-hero__names {
    font-size: 112px;
    line-height: 1;
    font-weight: 300;
    margin: 0;
}
.ce-hero__names .name { font-style: italic; display: block; }
.ce-hero__amp {
    display: block;
    font-family: var(--font-script);
    font-size: 60px;
    letter-spacing: 0.15em;
    margin: 2px 0;
    color: var(--accent);
}
.ce-hero__date {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 22px;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.1em;
}
.ce-hero__date-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
}
.ce-hero__venue {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 28px;
}
.ce-hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.ce-hero__photo {
    margin: 32px auto 0;
    text-align: center;
    padding: 0 60px 36px;
    max-width: 1200px;
}
.ce-hero__photo-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    aspect-ratio: 21 / 9;
}
.ce-hero__photo-frame img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
    user-select: none;
}
.ce-hero__photo-caption {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (max-width: 767px) {
    .ce-hero { padding: 28px 18px 0; }
    .ce-hero__welcome { margin-bottom: 16px; }
    .ce-hero__postcard { padding-left: 20px; padding-right: 20px; padding-bottom: 36px; }
    .ce-hero__names { font-size: 58px; }
    .ce-hero__amp { font-size: 36px; }
    .ce-hero__date { font-size: 18px; }
    .ce-hero__venue { font-size: 11px; }
    .ce-hero__photo { padding: 0 18px 28px; margin-top: 20px; }
    .ce-hero__photo-frame { aspect-ratio: 4 / 3; }
}

/* ─── Section / page chrome ────────────────────────────────────── */
.ce-section {
    padding: 48px 60px 80px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.ce-section--wide { max-width: 1160px; }
.ce-section--narrow { max-width: 460px; }
.ce-section__head {
    text-align: center;
    margin-bottom: 26px;
}
.ce-section__divider {
    margin: 0 auto 18px;
    max-width: 240px;
}
.ce-section__title {
    font-size: 50px;
    font-style: italic;
    margin-bottom: 10px;
}
.ce-section__lede {
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto;
    font-size: 14.5px;
}

@media (max-width: 767px) {
    .ce-section { padding: 28px 18px 56px; }
    .ce-section__title { font-size: 36px; }
}

/* ─── RSVP rows ────────────────────────────────────────────────── */
.ce-rsvp__bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.ce-rsvp__rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ce-rsvp__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: color-mix(in oklab, var(--cream) 70%, white);
    gap: 12px;
    flex-wrap: wrap;
}
.ce-rsvp__name {
    display: flex; align-items: center; gap: 12px;
    min-width: 0;
}
.ce-rsvp__name-text {
    font-family: var(--font-display);
    font-size: 19px;
    font-style: italic;
}
.ce-rsvp__avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: color-mix(in oklab, var(--accent-soft) 70%, var(--cream));
    color: white;
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--cream);
    font-family: var(--font-display);
    font-style: italic;
}
.ce-rsvp__choices { display: flex; gap: 6px; }
.ce-rsvp__inputs {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 767px) {
    .ce-rsvp__inputs { grid-template-columns: 1fr; }
}
.ce-rsvp__footer {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── Registry grid ────────────────────────────────────────────── */
.ce-registry__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.ce-registry__filters {
    display: flex; gap: 6px; flex-wrap: wrap;
}
.ce-registry__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 767px) {
    .ce-registry__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}
.ce-registry__card {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 767px) {
    .ce-registry__card { padding: 10px; }
}
.ce-registry__name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .ce-registry__name { font-size: 17px; }
}
.ce-registry__name-btn {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.2;
    color: var(--ink);
    background: none;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
}
.ce-registry__name-btn:hover { text-decoration: underline; }
@media (max-width: 767px) {
    .ce-registry__name-btn { font-size: 17px; }
}
.ce-registry__price {
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 2px;
}
.ce-registry__claimed-by {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    padding: 8px 10px;
    border-radius: 8px;
    background: color-mix(in oklab, var(--muted) 10%, transparent);
}

.ce-registry__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream-2);
}
.ce-registry__image--claimed { filter: saturate(0.35) brightness(0.92); }
.ce-registry__image-label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: ui-monospace, monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    opacity: 0.85;
}
.ce-registry__image-tag {
    position: absolute; top: 8px; right: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
}

/* ─── Account ──────────────────────────────────────────────────── */
.ce-account__head {
    text-align: center;
    margin-bottom: 26px;
}
.ce-account__head h2 {
    font-size: 44px;
    font-style: italic;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .ce-account__head h2 { font-size: 34px; }
}
.ce-account__head .meta {
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.06em;
}
.ce-account__head code {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    padding: 2px 6px;
    background: color-mix(in oklab, var(--ink) 6%, transparent);
    border-radius: 4px;
}
.ce-account__card { padding: 26px; margin-bottom: 14px; }
@media (max-width: 767px) {
    .ce-account__card { padding: 18px; }
}
.ce-account__row {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.ce-account__row + .ce-account__row { margin-top: 8px; }

/* ─── Quantity stepper (claim modal) ───────────────────────────── */
.ce-stepper {
    display: inline-flex; align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.ce-stepper button {
    padding: 6px 14px;
    font-size: 16px;
    cursor: pointer;
}
.ce-stepper output {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
}

/* ─── Form errors ──────────────────────────────────────────────── */
.ce-error { font-size: 12.5px; color: #a34b4b; }

/* ─── Confirmation banner ──────────────────────────────────────── */
.ce-confirm {
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    background: color-mix(in oklab, var(--cream) 60%, white);
}
.ce-confirm__check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
