/* ─── CART RECOVERY ───────────────────────────────── */
/* Sticky bottom banner driven by /cart-recovery.js for return visitors.
   Palette tokens match the rest of the site (--coral, --cream-dark, --dark,
   --text-muted, --warm-white). Z-index 1000 keeps this below
   .bok-exit-overlay (1100) and above default-flow content. */

.bok-cr-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--warm-white, #FAF6F1);
    border-top: 1.5px solid var(--cream-dark, #EDE4D6);
    box-shadow: 0 -10px 30px rgba(44, 32, 24, 0.10);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark, #2C2018);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.bok-cr-banner.bok-cr-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}

.bok-cr-count {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--coral, #E8694A);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(232, 105, 74, 0.10);
    border: 1px dashed rgba(232, 105, 74, 0.35);
}

.bok-cr-items {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--dark, #2C2018);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bok-cr-items .bok-cr-prefix {
    color: var(--text-muted, #7A6855);
    margin-right: 6px;
}

.bok-cr-cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral, #E8694A);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.bok-cr-cta:hover {
    background: var(--terracotta, #C05A3A);
    transform: translateY(-1px);
}

.bok-cr-close {
    flex: 0 0 auto;
    background: none;
    border: none;
    color: var(--text-muted, #7A6855);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.bok-cr-close:hover {
    color: var(--dark, #2C2018);
    background: var(--cream-dark, #EDE4D6);
}

.bok-cr-dismiss-label {
    flex: 0 0 auto;
    background: none;
    border: none;
    color: var(--text-muted, #7A6855);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 4px;
    text-decoration: underline;
    transition: color 0.2s;
}

.bok-cr-dismiss-label:hover {
    color: var(--coral, #E8694A);
}

@media (max-width: 640px) {
    .bok-cr-banner { padding: 10px 14px; gap: 10px; }
    .bok-cr-items { display: none; }
    .bok-cr-cta { padding: 9px 14px; font-size: 12px; }
    .bok-cr-count { font-size: 10px; padding: 5px 10px; }
    .bok-cr-dismiss-label { display: none; }
}
