/* ═══════════════════════════════════════════════════════════════
   FRAGRANCEBOX — PERSISTENT CART DOCK (extracted component)
   Self-contained styles for the floating box dock + drawer.
   Loaded by includes/cart_dock.php on every page (storefront + dashboard)
   so the widget is consistent everywhere. Previously lived in nav.css.
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   PERSISTENT CART DOCK
   Floating trigger (bottom-right, all pages) + slide-in drawer.
   Premium luxury e-commerce pattern: always visible, never pushy.
   ═══════════════════════════════════════════════════════════════ */

/* ── Trigger (the circular floating button) ────────────────── */
.fb-cartdock {
    position: fixed;
    right: clamp(1rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 400;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    pointer-events: auto;
}
/* iOS safe-area support */
@supports (padding: env(safe-area-inset-bottom)) {
    .fb-cartdock { bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 2vw, 1.5rem)); }
}

/* Mobile: the AI pill docks bottom-CENTER, so raise the cart dock above it
   (right-aligned) to avoid overlap. Vars come from fragrance-ai.css :root;
   fallbacks keep this correct if the AI widget is disabled. */
@media (max-width: 560px) {
    .fb-cartdock { bottom: calc(var(--fai-bottom, 16px) + var(--fai-pill-h, 46px) + 12px); right: 12px; }
}

.fb-cartdock-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: #000;
    color: #fff;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.45),
                0 2px 8px -2px rgba(0, 0, 0, 0.2);
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.28s ease,
                background-color 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}
.fb-cartdock-trigger:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 44px -10px rgba(0, 0, 0, 0.5);
}
.fb-cartdock-trigger:active { transform: translateY(0) scale(0.97); }
.fb-cartdock-trigger:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
/* Inline SVG bag icon. Explicit size + color so it always renders crisply
   and centered against the black trigger, independent of any icon script. */
.fb-cartdock-icon {
    position: relative;
    z-index: 2;                       /* above the pulse halo, below the badge */
    width: 24px; height: 24px;
    display: block;
    flex: none;
    color: #fff;                      /* stroke uses currentColor */
    stroke: currentColor;
    fill: none;
    pointer-events: none;
}

/* Animated concentric pulse behind the trigger — draws the eye to
   the cart when it's non-empty, then settles into a quiet halo. */
.fb-cartdock-pulse {
    position: absolute; inset: -4px;
    z-index: 0;                       /* strictly behind the icon */
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}
.fb-cartdock[data-state="filled"] .fb-cartdock-pulse {
    animation: fb-dock-ping 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s 1;
}
@keyframes fb-dock-ping {
    0%   { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 0;   transform: scale(1.6); }
}

/* Count badge — top-right of the trigger. Only rendered when >0. */
.fb-cartdock-count {
    position: absolute;
    top: -2px; right: -2px;
    z-index: 3;                       /* always above icon + pulse */
    min-width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 5px;
    background: #b89a4e;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    border-radius: 999px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    /* ring against the black trigger so the badge reads cleanly when it
       overlaps the circle edge; no layout impact (outline, not border). */
    outline: 2px solid #000;
}
.fb-cartdock[data-state="empty"] .fb-cartdock-count { display: none; }
.fb-cartdock-count.is-bumped { animation: fb-badge-bump 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes fb-badge-bump {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.45); }
    100% { transform: scale(1); }
}

/* Tooltip / ambient label that appears on hover: "3 fragrances in your box" */
.fb-cartdock-tip {
    position: absolute;
    right: calc(100% + 0.625rem);
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    background: #000;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    border-radius: 4px;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateX(6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.fb-cartdock-tip strong { font-weight: 600; }
.fb-cartdock-tip::after {
    content: '';
    position: absolute;
    top: 50%; right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: #000;
}
.fb-cartdock-trigger:hover ~ .fb-cartdock-tip,
.fb-cartdock-trigger:focus-visible ~ .fb-cartdock-tip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 720px) { .fb-cartdock-tip { display: none; } }

/* ── Drawer (the opened cart panel) ──────────────────────────
   Desktop: right-anchored side panel (320px wide).
   Mobile (<720px): bottom sheet filling the width.
   Both use the same DOM, just different positioning via media query. */
.fb-cartdock-drawer {
    position: fixed;
    inset: 0;
    z-index: 450;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0.28s;
}
.fb-cartdock-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0s;
}

.fb-cartdock-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.32s ease;
}
.fb-cartdock-drawer.is-open .fb-cartdock-backdrop { opacity: 1; }

.fb-cartdock-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 360px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -16px 0 60px -16px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.fb-cartdock-drawer.is-open .fb-cartdock-panel {
    transform: translateX(0);
}

/* Mobile bottom-sheet variant */
@media (max-width: 720px) {
    .fb-cartdock-drawer { justify-content: stretch; align-items: flex-end; }
    .fb-cartdock-panel {
        width: 100%;
        height: auto;
        max-height: 85vh;
        max-height: 85dvh;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -16px 60px -16px rgba(0, 0, 0, 0.3);
        transform: translateY(100%);
    }
    .fb-cartdock-drawer.is-open .fb-cartdock-panel {
        transform: translateY(0);
    }
}

/* Panel header */
.fb-cartdock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.fb-cartdock-eyebrow {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.1875rem;
}
.fb-cartdock-title {
    font-size: 1.125rem;
    font-weight: 200;
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin: 0;
}
.fb-cartdock-close-btn {
    flex: none;
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.fb-cartdock-close-btn:hover { background: #000; color: #fff; border-color: #000; }
.fb-cartdock-close-btn svg { width: 14px; height: 14px; }

/* Progress bar */
.fb-cartdock-progress {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.fb-cartdock-progress-bar {
    display: block;
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    overflow: hidden;
}
.fb-cartdock-progress-fill {
    display: block;
    height: 100%;
    background: #b89a4e;
    border-radius: 999px;
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Body */
.fb-cartdock-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.75rem 0;
}
.fb-cartdock-list { list-style: none; padding: 0; margin: 0; }
.fb-cartdock-empty {
    padding: 2rem 1.25rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.8125rem;
    line-height: 1.65;
    font-weight: 300;
}
.fb-cartdock-empty strong { color: #000; font-weight: 500; }
.fb-cartdock-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 1.25rem 0;
    padding: 0.625rem 0.75rem;
    background: rgba(184, 154, 78, 0.06);
    border: 1px solid rgba(184, 154, 78, 0.28);
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
}
.fb-cartdock-note strong { color: #000; font-weight: 500; }
.fb-cartdock-note svg { width: 14px; height: 14px; color: #b89a4e; flex: none; }

/* Cart item row */
.fb-cartdock-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.625rem 1.25rem;
    transition: background-color 0.18s ease;
}
.fb-cartdock-item:hover { background: rgba(0, 0, 0, 0.02); }
.fb-cartdock-item + .fb-cartdock-item { border-top: 1px solid rgba(0, 0, 0, 0.04); }
.fb-cartdock-item-media {
    width: 44px; height: 56px;
    background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
    overflow: hidden;
    display: block;
    text-decoration: none;
    flex: none;
}
.fb-cartdock-item-media img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.fb-cartdock-item-info {
    min-width: 0;
    display: flex; flex-direction: column;
    gap: 0.125rem;
}
.fb-cartdock-item-brand {
    font-size: 0.5625rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}
.fb-cartdock-item-name {
    font-size: 0.8125rem;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fb-cartdock-item-name:hover { text-decoration: underline; }
.fb-cartdock-item-meta {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}
.fb-cartdock-item-remove {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    flex: none;
}
.fb-cartdock-item-remove:hover { background: #000; color: #fff; border-color: #000; }
.fb-cartdock-item-remove svg { width: 12px; height: 12px; }

/* Footer CTAs */
/* Free-shipping reassurance line above the checkout CTA. */
.fb-cartdock-ship {
    display: flex; align-items: center; gap: 0.5rem;
    margin: 0; padding: 0.75rem 1.25rem 0;
    font-size: 0.75rem; line-height: 1.4; color: rgba(0, 0, 0, 0.6);
}
.fb-cartdock-ship strong { color: #1c7d3f; font-weight: 600; }
.fb-cartdock-ship svg { width: 16px; height: 16px; color: #1c7d3f; flex: none; }

.fb-cartdock-cta {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 0.5rem;
}
.fb-cartdock-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
    min-height: 48px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-family: inherit;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fb-cartdock-primary:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.4);
}
.fb-cartdock-primary svg { width: 14px; height: 10px; }
.fb-cartdock-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    min-height: 42px;
    background: transparent;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.14);
    font-family: inherit;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.fb-cartdock-secondary:hover { background: #000; color: #fff; border-color: #000; }

/* Body scroll lock when drawer is open */
body.fb-cartdock-open { overflow: hidden; }

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
    .fb-cartdock-trigger,
    .fb-cartdock-panel,
    .fb-cartdock-drawer,
    .fb-cartdock-backdrop,
    .fb-cartdock-count,
    .fb-cartdock-tip { transition-duration: 0.12s !important; }
    .fb-cartdock-panel { transform: none !important; }
    .fb-cartdock-pulse { animation: none !important; }
    .fb-cartdock-count.is-bumped { animation: none !important; }
}

/* ==================================================================
   PROMOTION DOCK (bottom-left)
   Persistent affordance that mirrors the cart dock (bottom-right).
   Hidden by default server-side; nav.js toggles visibility once it
   knows whether the visitor has been shown the modal, dismissed it,
   or already claimed the discount. The circle is intentionally the
   same diameter as .fb-cartdock-trigger so the two floating docks
   frame the viewport symmetrically.
   ================================================================== */
.fb-promodock {
    position: fixed;
    left: clamp(1rem, 2vw, 1.5rem);
    bottom: clamp(1rem, 2vw, 1.5rem);
    z-index: 400;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    pointer-events: auto;
    /* Fade/slide in when nav.js un-hides us — same easing as cartdock
       so the two docks settle in feeling like parts of one system. */
    opacity: 0;
    transform: translateY(8px) scale(0.92);
    transition:
        opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.32s;
    visibility: hidden;
}
.fb-promodock.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}
/* iOS safe-area support — identical padding formula to cartdock */
@supports (padding: env(safe-area-inset-bottom)) {
    .fb-promodock { bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(1rem, 2vw, 1.5rem)); }
}
/* Don't render at all while the modal is open — the two would visually
   compete and the click-target overlap confuses assistive tech. */
.fb-promodock[hidden] { display: none; }
body.fb-promo-open .fb-promodock { opacity: 0; pointer-events: none; }

.fb-promodock-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: #000;
    color: #fff;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    box-shadow:
        0 8px 32px -8px rgba(0, 0, 0, 0.45),
        0 2px 8px -2px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.28s ease,
        background-color 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}
.fb-promodock-trigger:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 14px 44px -10px rgba(0, 0, 0, 0.5);
}
.fb-promodock-trigger:active { transform: translateY(0) scale(0.97); }
.fb-promodock-trigger:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.fb-promodock-icon {
    width: 22px; height: 22px;
    font-size: 22px;                  /* iconify sizes via font-size */
    display: inline-block; line-height: 1; vertical-align: middle;
    transition: opacity 0.2s ease, transform 0.25s ease;
}
.fb-promodock-icon--check { display: none; }

/* Applied state — swap icon + tint to green so the success reads
   at a glance without requiring the tooltip. */
.fb-promodock[data-state="applied"] .fb-promodock-trigger {
    background: #1a5c2a;
    box-shadow:
        0 8px 32px -8px rgba(26, 92, 42, 0.5),
        0 2px 8px -2px rgba(26, 92, 42, 0.25);
}
.fb-promodock[data-state="applied"] .fb-promodock-trigger:hover {
    box-shadow: 0 14px 44px -10px rgba(26, 92, 42, 0.55);
}
.fb-promodock[data-state="applied"] .fb-promodock-icon--offer { display: none; }
.fb-promodock[data-state="applied"] .fb-promodock-icon--check { display: block; animation: fbPromoDockCheck 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes fbPromoDockCheck {
    0%   { transform: scale(0.3) rotate(-25deg); opacity: 0; }
    55%  { transform: scale(1.2) rotate(0); opacity: 1; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Pulse halo — identical pattern to cartdock, looped for the
   available state so it keeps drawing the eye until interacted with. */
.fb-promodock-pulse {
    position: absolute; inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}
.fb-promodock[data-state="available"] .fb-promodock-pulse {
    animation: fb-dock-ping 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.fb-promodock[data-state="applied"] .fb-promodock-pulse {
    /* Gentle single-ring confirmation on apply, then quiet */
    animation: fb-dock-ping 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s 1;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Percent badge — top-right of the circle, matches cartdock-count
   positioning so the two docks feel like the same component family. */
.fb-promodock-badge {
    position: absolute;
    top: -2px; right: -2px;
    min-width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 6px;
    background: #b89a4e;
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 999px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    transition: background 0.22s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fb-promodock[data-state="applied"] .fb-promodock-badge {
    background: #fff; color: #1a5c2a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.fb-promodock-trigger:hover .fb-promodock-badge { transform: scale(1.08); }

/* Tooltip — opens to the RIGHT (cart's is mirrored to the left).
   Hidden on touch/small viewports where hover isn't the primary
   interaction; the icon + badge already communicate the offer. */
.fb-promodock-tip {
    position: absolute;
    left: calc(100% + 0.625rem);
    white-space: nowrap;
    padding: 0.5rem 0.75rem 0.5625rem;
    background: #000;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateX(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column; gap: 0.125rem;
    line-height: 1.2;
}
.fb-promodock-tip-title {
    font-size: 0.6875rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
}
.fb-promodock-tip-sub {
    font-size: 0.625rem; font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}
/* Arrow pointing at the trigger (left edge of the tooltip) */
.fb-promodock-tip::before {
    content: '';
    position: absolute;
    top: 50%; left: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: #000;
}
.fb-promodock-trigger:hover ~ .fb-promodock-tip,
.fb-promodock-trigger:focus-visible ~ .fb-promodock-tip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 720px) { .fb-promodock-tip { display: none; } }

/* Reduced-motion respect — turn off the perpetual pulse (can be
   distracting) but keep the fade-in so the dock still feels alive. */
@media (prefers-reduced-motion: reduce) {
    .fb-promodock,
    .fb-promodock-trigger,
    .fb-promodock-badge,
    .fb-promodock-tip { transition-duration: 0.12s !important; }
    .fb-promodock-pulse,
    .fb-promodock-icon--check { animation: none !important; }
}

/* ==================================================================
   PROMOTION WELCOME MODAL + APPLIED BADGE
   Matches the site's editorial-minimal aesthetic: pure white card,
   thin type, subtle borders, one black primary action. Animates in
   with a quiet scale+fade that never fights the content underneath.
   Renders ONLY when an active promo is configured (server-gated).
   ================================================================== */
.fb-promo-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    visibility: hidden; opacity: 0;
    transition: opacity 0.32s ease, visibility 0.32s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
.fb-promo-modal.is-open { visibility: visible; opacity: 1; }

.fb-promo-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px) saturate(115%);
    -webkit-backdrop-filter: blur(4px) saturate(115%);
    cursor: pointer;
}

/* ──────────────────────────────────────────────────────────
   EDITORIAL MODAL CARD
   Reference aesthetic: Le Labo / Aesop / Haus / Allbirds —
   confident typography as the hero, restrained surface, a
   single primary action. No decorative chrome; every element
   carries weight. Card scales fluidly between phone, tablet,
   and desktop thanks to clamp()-driven type.
   ────────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────────
   Iconify web-component defaults.
   The library inherits `color` and sizes from `font-size`, so
   every icon element behaves like ch — no per-icon sizing in JS.
   Setting an explicit width/height prevents layout shift while
   the icon SVG fetches on first use. */
iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    vertical-align: -0.125em;
    flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
   CARD ARCHITECTURE — header / body / footer, no decoration.
   Referenced against premium Shopify themes (Impact, Broadcast,
   Prestige) and Klaviyo's enterprise-grade modal pattern. The
   card expresses three functional zones with one hairline rule
   separating the header from the body — nothing more.
   ────────────────────────────────────────────────────────── */
.fb-promo-modal-card {
    position: relative; z-index: 1;
    width: min(92vw, 440px);
    display: flex; flex-direction: column;
    background: #ffffff;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    box-shadow:
        0 32px 80px -24px rgba(0, 0, 0, 0.3),
        0 12px 32px -12px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transform: translateY(16px);
    opacity: 0;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}
.fb-promo-modal.is-open .fb-promo-modal-card {
    transform: translateY(0);
    opacity: 1;
}
/* Legacy selectors — hide anything lingering from previous designs */
.fb-promo-modal-spark,
.fb-promo-modal-eyebrow,
.fb-promo-modal-hero,
.fb-promo-modal-numeral,
.fb-promo-modal-rule { display: none !important; }

/* ── Header bar ──────────────────────────────────────────── */
.fb-promo-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.125rem 1rem 1.375rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
}
.fb-promo-modal-mark {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: rgba(0, 0, 0, 0.8);
}
.fb-promo-modal-mark img {
    width: 18px; height: auto;
    flex-shrink: 0;
}
.fb-promo-modal-mark-text {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1;
}

/* Close button — same understated styling the cart dock uses so
   the two chrome elements feel like one system. */
.fb-promo-modal-close {
    width: 2rem; height: 2rem; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.22s ease;
    flex-shrink: 0;
}
.fb-promo-modal-close iconify-icon,
.fb-promo-modal-close svg { font-size: 1rem; width: 1rem; height: 1rem; }
.fb-promo-modal-close:hover {
    background: #fafafa;
    border-color: rgba(0, 0, 0, 0.08);
    color: #000;
    transform: rotate(90deg);
}
.fb-promo-modal-close:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.5); outline-offset: 2px;
}

/* ── Body ─────────────────────────────────────────────────── */
.fb-promo-modal-body {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.5rem);
    gap: 0;
}

/* Offer badge — refined pill with a status dot, not a coupon block.
   Feels like a Shopify Checkout eyebrow ("Express checkout", "New!")
   rather than a retail tag. */
.fb-promo-modal-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4375rem 0.875rem 0.4375rem 0.75rem;
    background: #f5f5f4;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.68);
    line-height: 1;
    margin-bottom: 1.25rem;
}
.fb-promo-modal-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #1a5c2a;
    flex-shrink: 0;
    position: relative;
}
.fb-promo-modal-badge-dot::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%;
    background: rgba(26, 92, 42, 0.25);
    animation: fbPromoBadgeDot 2.2s ease-out infinite;
}
@keyframes fbPromoBadgeDot {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.fb-promo-modal-title {
    font-size: clamp(1.375rem, 3.6vw, 1.625rem);
    font-weight: 300;
    letter-spacing: -0.005em;
    line-height: 1.22;
    margin: 0 0 0.625rem;
    color: #000;
    max-width: 22ch;
}
.fb-promo-modal-sub {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin: 0 0 1.5rem;
    max-width: 34ch;
}

.fb-promo-modal-desc {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 36ch;
}

/* ── Code chip (tap-to-copy) ──────────────────────────────
   Stacked card: tiny eyebrow label, monospaced code in the
   middle, a quiet "Tap to copy" action row below. Scales
   cleanly from 320px phones to large desktops because the
   intrinsic sizing uses em/ch units and a max-width cap
   instead of fixed pixel widths that broke the horizontal
   layout at tablet breakpoints. */
.fb-promo-code-pill {
    appearance: none; -webkit-appearance: none;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.4375rem;
    width: auto; max-width: 100%;
    padding: 0.875rem 1.25rem 0.75rem;
    margin: 0 auto 1.5rem;
    background: rgba(0, 0, 0, 0.015);
    border: 1px dashed rgba(0, 0, 0, 0.22);
    border-radius: 6px;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
    position: relative; z-index: 1;
    text-align: center;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.fb-promo-code-pill:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.45);
    border-style: solid;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.2);
}
.fb-promo-code-pill:active { transform: translateY(0); }
.fb-promo-code-pill:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.55);
    outline-offset: 3px;
}
/* Admin preview / no-JS contexts shouldn't look clickable */
.fb-promo-code-pill--static { cursor: default; }
.fb-promo-code-pill--static:hover {
    transform: none; box-shadow: none;
    border-style: dashed; background: rgba(0, 0, 0, 0.015);
}

.fb-promo-code-label {
    font-size: 0.5rem; font-weight: 500;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: rgba(0, 0, 0, 0.42);
    line-height: 1;
}
.fb-promo-code-val {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    /* fluid type: 14 → 18px across 360 → 600px viewport, capped cleanly */
    font-size: clamp(0.875rem, 1rem + 0.4vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.28em; color: #000;
    line-height: 1.1;
    /* Trim the right-side letter-spacing so the optical centre matches the card's axis */
    padding-left: 0.28em;
}
.fb-promo-code-action {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.375rem;
    margin-top: 0.1875rem;
    font-size: 0.5625rem; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(0, 0, 0, 0.42);
    line-height: 1;
    transition: color 0.18s ease;
}
.fb-promo-code-pill:hover .fb-promo-code-action { color: rgba(0, 0, 0, 0.72); }
.fb-promo-code-icon--copy,
.fb-promo-code-icon--done {
    font-size: 0.8125rem;             /* iconify sizes via font-size */
    flex-shrink: 0;
    transition: color 0.18s ease, transform 0.25s ease;
}
.fb-promo-code-icon--done { display: none; color: #1a7f37; }
.fb-promo-code-action-text--done { display: none; color: #1a7f37; }

/* Copied state: flip icon + text, lock border to solid green,
   lightly scale the code for a celebratory beat. */
.fb-promo-code-pill.is-copied {
    border-style: solid;
    border-color: rgba(26, 127, 55, 0.55);
    background: rgba(26, 127, 55, 0.04);
}
.fb-promo-code-pill.is-copied .fb-promo-code-icon--copy,
.fb-promo-code-pill.is-copied [data-copy-idle] { display: none; }
.fb-promo-code-pill.is-copied .fb-promo-code-icon--done,
.fb-promo-code-pill.is-copied [data-copy-done]  { display: inline-flex; }
.fb-promo-code-pill.is-copied .fb-promo-code-icon--done { animation: fbPromoCheck 0.35s ease; }
.fb-promo-code-pill.is-copied .fb-promo-code-val {
    animation: fbPromoCodePulse 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes fbPromoCodePulse {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Desktop / tablet refinement — a touch more breathing room so
   the chip reads as an intentional CTA, not a crowded label. */
@media (min-width: 481px) {
    .fb-promo-code-pill {
        padding: 1rem 1.5rem 0.875rem;
        gap: 0.5rem;
    }
    .fb-promo-code-val { letter-spacing: 0.32em; }
}

/* Tight phones — relax the letter-spacing + padding so the
   code never has to truncate on a 320px viewport. */
@media (max-width: 360px) {
    .fb-promo-code-pill { padding: 0.75rem 0.875rem 0.625rem; }
    .fb-promo-code-val  { letter-spacing: 0.22em; font-size: 0.9375rem; }
    .fb-promo-code-action { font-size: 0.5rem; }
}

/* ── Footer zone ──────────────────────────────────────────── */
.fb-promo-modal-foot {
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem clamp(1.25rem, 4vw, 2rem) clamp(1.125rem, 3vw, 1.5rem);
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 0.75rem;
    text-align: center;
}

/* Primary CTA — full-width black pill, same treatment as the
   site's .btn-primary and .wiz-cta-btn so the promo modal speaks
   the product language instead of inventing its own. */
.fb-promo-modal-cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.9375rem 1.75rem;
    font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    background: #000; color: #fff;
    border: 1px solid #000; border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    position: relative;
    min-height: 48px;
    overflow: hidden;
    isolation: isolate;
}
.fb-promo-modal-cta::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.16) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
    z-index: -1;
}
.fb-promo-modal-cta:hover::before { transform: translateX(120%); }
.fb-promo-modal-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.5);
}
.fb-promo-modal-cta:active { transform: translateY(0); }
.fb-promo-modal-cta:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.55); outline-offset: 3px;
}
.fb-promo-modal-cta[disabled] { opacity: 0.75; cursor: progress; }

/* ── Three-state label stack ──────────────────────────────
   Three spans live in a vertical "shaft" inside the CTA; only
   one is visible at a time. Class changes on the parent button
   slide one in from the bottom while the previous one slides
   out the top — same mechanic Shopify's "Add to cart" button
   uses when it transitions through adding / added / viewing. */
/* CSS Grid stack — all three labels share the same grid cell.
   The container auto-sizes to the *widest* child in the natural
   layout pass, so the button can never truncate regardless of
   what copy an admin sets. This replaces the previous absolute-
   positioning trick that relied on a fixed ch-based min-width
   (which clipped "Claim Discount" to "IM DISCO" on any label
   longer than the hardcoded cap).

   Pattern reference: the same grid-stacking technique used by
   Radix UI Toast, shadcn's button-with-loading states, and
   Stripe's Checkout "Complete purchase" success animation. */
.fb-promo-cta-labels {
    display: grid;
    grid-template-areas: "stack";
    align-items: center;
    justify-items: center;
    overflow: hidden;
    line-height: 1;
    vertical-align: middle;
    /* 1.2em gives enough vertical room for the slide-in/out
       animation without vertically clipping glyph ascenders. */
    min-height: 1.2em;
}
.fb-promo-cta-label {
    grid-area: stack;                     /* all children overlap */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 0;                         /* allow the grid to size us */
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease;
    /* Will-change: the GPU hint is only needed while the modal
       is open, but setting it here is cheap and safe. */
    will-change: transform, opacity;
}
/* Default state — idle label visible, others waiting below */
.fb-promo-cta-label--idle { transform: translateY(0);      opacity: 1; }
.fb-promo-cta-label--done,
.fb-promo-cta-label--next { transform: translateY(120%);   opacity: 0; }

/* Claimed state: idle slides up + out, done slides in */
.fb-promo-modal-cta.is-claimed .fb-promo-cta-label--idle { transform: translateY(-120%); opacity: 0; }
.fb-promo-modal-cta.is-claimed .fb-promo-cta-label--done { transform: translateY(0);     opacity: 1; }
.fb-promo-modal-cta.is-claimed .fb-promo-cta-label--next { transform: translateY(120%);  opacity: 0; }

/* Next state: idle + done both above, next slides in */
.fb-promo-modal-cta.is-next .fb-promo-cta-label--idle { transform: translateY(-120%); opacity: 0; }
.fb-promo-modal-cta.is-next .fb-promo-cta-label--done { transform: translateY(-120%); opacity: 0; }
.fb-promo-modal-cta.is-next .fb-promo-cta-label--next { transform: translateY(0);     opacity: 1; }

/* ── Icons (arrow vs check) ────────────────────────────── */
.fb-promo-cta-arrow {
    font-size: 0.9375rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.fb-promo-modal-cta:hover .fb-promo-cta-arrow { transform: translateX(3px); }
.fb-promo-cta-check { font-size: 1rem; display: none; }

/* Claimed state — green surface + check icon */
.fb-promo-modal-cta.is-claimed {
    background: #1a5c2a; border-color: #1a5c2a;
}
.fb-promo-modal-cta.is-claimed .fb-promo-cta-arrow { display: none; }
.fb-promo-modal-cta.is-claimed .fb-promo-cta-check { display: inline-flex; animation: fbPromoCheck 0.42s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes fbPromoCheck {
    0%  { transform: scale(0.3) rotate(-30deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(0); opacity: 1; }
    100%{ transform: scale(1) rotate(0); opacity: 1; }
}

/* Next state — return to the brand black, restore arrow, swap to
   a navigation cursor so the button telegraphs "link-like". The
   bg/border transition animates smoothly thanks to the existing
   transition rule on .fb-promo-modal-cta. */
.fb-promo-modal-cta.is-next {
    background: #000; border-color: #000;
    cursor: pointer;
}
.fb-promo-modal-cta.is-next .fb-promo-cta-arrow { display: inline-flex; animation: fbPromoArrowSlide 0.42s cubic-bezier(0.22, 1, 0.36, 1); }
.fb-promo-modal-cta.is-next .fb-promo-cta-check { display: none; }
@keyframes fbPromoArrowSlide {
    0%   { transform: translateX(-8px); opacity: 0; }
    100% { transform: translateX(0);    opacity: 1; }
}

/* Reassurance line — the small-print Shopify-native brands put
   under the primary CTA. Icon + copy read as one unit thanks to
   the vertical-align adjustment on the inline web component. */
.fb-promo-modal-fineprint {
    display: inline-flex; align-items: center; gap: 0.4375rem;
    margin: 0;
    font-size: 0.625rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}
.fb-promo-modal-fineprint iconify-icon {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.45);
    flex-shrink: 0;
}

.fb-promo-modal-dismiss {
    margin: 0;
    padding: 0.375rem 0.75rem;
    background: transparent; border: none;
    font-size: 0.5625rem; color: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 500;
    transition: color 0.15s ease;
    font-family: inherit;
}
.fb-promo-modal-dismiss:hover { color: #000; }
.fb-promo-modal-dismiss:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.35); outline-offset: 2px;
}

/* ── Responsive tuning ────────────────────────────────────── */
/* Tablet: keep the premium 440px column */
@media (min-width: 601px) {
    .fb-promo-modal-card { width: min(92vw, 440px); }
}
/* Phone: compress paddings + keep the brand mark visible (it
   always fits — the old display:none made the modal look broken). */
@media (max-width: 480px) {
    .fb-promo-modal-card { width: min(94vw, 380px); border-radius: 3px; }
    .fb-promo-modal-head { padding: 0.875rem 1rem 0.875rem 1.125rem; }
    .fb-promo-modal-body { padding: 1.5rem 1.25rem 1.25rem; }
    .fb-promo-modal-title { font-size: 1.25rem; }
    .fb-promo-modal-sub   { font-size: 0.75rem; margin-bottom: 1.25rem; }
    .fb-promo-modal-desc  { font-size: 0.6875rem; line-height: 1.6; max-width: 30ch; margin-bottom: 1.25rem; }
    .fb-promo-modal-foot  { padding: 0.875rem 1.25rem 1.125rem; }
    .fb-promo-modal-cta {
        padding: 0.8125rem 1.25rem;
        min-height: 46px;
        letter-spacing: 0.22em;
    }
    .fb-promo-modal-fineprint { font-size: 0.5625rem; }
}
/* Very small phones — drop the badge margin further so the body
   stack stays tight inside a 320px viewport. */
@media (max-width: 360px) {
    .fb-promo-modal-body { padding: 1.25rem 1rem 1rem; }
    .fb-promo-modal-badge { font-size: 0.5625rem; letter-spacing: 0.14em; }
}

/* Lock body scroll while modal is open */
body.fb-promo-open { overflow: hidden; }

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
    .fb-promo-modal,
    .fb-promo-modal-card,
    .fb-promo-modal-close,
    .fb-promo-modal-cta { transition-duration: 0.12s !important; }
    .fb-promo-modal-card { transform: none !important; }
    .fb-promo-modal-cta::before { display: none; }
    .fb-promo-cta-arrow { transition: none !important; }
}

/* ── Promo claimed toast ─────────────────────────────────── */
.fb-promo-toast {
    position: fixed; z-index: 2100;
    left: 50%; bottom: 2rem; transform: translateX(-50%) translateY(16px);
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.125rem;
    background: #000; color: #fff;
    font-size: 0.6875rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 14px 32px -8px rgba(0, 0, 0, 0.4);
    opacity: 0; visibility: hidden;
    transition: opacity 0.22s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s;
    pointer-events: none;
    font-family: 'Inter', system-ui, sans-serif;
}
.fb-promo-toast.is-visible {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.fb-promo-toast-icon {
    font-size: 0.9375rem;
    color: #7be08e;
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .fb-promo-toast { bottom: 5.25rem; font-size: 0.625rem; padding: 0.625rem 0.875rem; }
}

/* ── Promo chip inside the cart drawer ──────────────────── */
.fb-cartdock-promo {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.75rem;
    margin: 0 1.5rem 1rem;
    padding: 0.75rem 0.875rem;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    font-size: 0.75rem;
}
.fb-cartdock-promo-text {
    display: flex; flex-direction: column; gap: 0.1875rem;
    line-height: 1.3;
}
.fb-cartdock-promo-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.5625rem;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
}
.fb-cartdock-promo-label {
    font-weight: 400; color: #000; font-size: 0.75rem;
}
.fb-cartdock-promo-remove {
    background: transparent; border: none; cursor: pointer;
    font-size: 0.5625rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(0, 0, 0, 0.45);
    padding: 0.25rem 0.5rem;
    font-family: inherit;
    transition: color 0.15s ease;
}
.fb-cartdock-promo-remove:hover { color: #000; }
