:root {
    --bf-burgundy: #a91435;
    --bf-burgundy-dark: #8b112c;
    --bf-burgundy-soft: #f9eef1;
    --bf-gold: #d2aa53;
    --bf-gold-hover: #e0bc6a;
    --bf-text: #1f1f1f;
    --bf-muted: #3d3d3d;
    --bf-border: #e8e2dc;
    --bf-bg: #faf8f6;
    --bf-max-width: 1360px;
    --bf-body-size: 1rem;
    --bf-label-size: 0.875rem;
    --bf-heading-size: clamp(1.875rem, 2.5vw, 2.25rem);
    --bf-radius: 16px;
    --bf-radius-sm: 12px;
    --bf-shadow: 0 10px 30px rgba(31, 31, 31, 0.08);
    --bf-shadow-hover: 0 16px 40px rgba(169, 20, 53, 0.12);
}

.bf-page-shell {
    width: 100%;
    max-width: var(--bf-max-width);
    margin: 0 auto;
    padding-left: clamp(1.25rem, 3vw, 2rem);
    padding-right: clamp(1.25rem, 3vw, 2rem);
    box-sizing: border-box;
}

.bf-card {
    background: #fff;
    border: 1px solid var(--bf-border);
    border-radius: var(--bf-radius);
    box-shadow: var(--bf-shadow);
}

.bf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    padding: 0.9rem 1.85rem;
    border: 2px solid var(--bf-burgundy);
    border-radius: 999px;
    background: var(--bf-burgundy);
    color: #fff;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bf-btn:hover,
.bf-btn:focus-visible {
    background: var(--bf-burgundy-dark);
    border-color: var(--bf-burgundy-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(169, 20, 53, 0.22);
    outline: none;
}

.bf-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bf-btn--secondary {
    background: #fff;
    color: var(--bf-burgundy);
}

.bf-btn--secondary:hover,
.bf-btn--secondary:focus-visible {
    background: var(--bf-burgundy-soft);
    color: var(--bf-burgundy);
}

.bf-btn--gold {
    background: var(--bf-gold);
    border-color: var(--bf-gold);
}

.bf-btn--gold:hover,
.bf-btn--gold:focus-visible {
    background: var(--bf-gold-hover);
    border-color: var(--bf-gold-hover);
}

.bf-btn--block {
    width: 100%;
}

.bf-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.bf-progress__item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: "Raleway", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #4b5563;
}

.bf-progress__item.is-complete,
.bf-progress__item.is-active {
    color: var(--bf-burgundy);
}

.bf-progress__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    border-radius: 50%;
    background: #e5e7eb;
    color: #4b5563;
    font-size: 1.25rem;;
    font-weight: 700;
}

.bf-progress__item.is-complete .bf-progress__dot,
.bf-progress__item.is-active .bf-progress__dot {
    background: var(--bf-burgundy);
    color: #fff;
}

@media (max-width: 640px) {
    .bf-progress {
        gap: 0.65rem 1rem;
    }

    .bf-progress__item {
        font-size: 1.25rem;;
    }

    .bf-progress__dot {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
        min-height: 2.25rem;
        font-size: 1.25rem;;
    }
}

.bf-summary-card {
    padding: clamp(1.5rem, 2.5vw, 2rem);
}

.bf-summary-card__title {
    margin: 0 0 1.5rem;
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--bf-text);
    line-height: 1.3;
}

.bf-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;;
    line-height: 1.6;
    color: var(--bf-text);
}

.bf-summary-row__label {
    color: var(--bf-text);
    font-weight: 500;
}

.bf-summary-row__value {
    font-weight: 700;
    text-align: right;
    color: var(--bf-text);
}

.bf-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 3px solid var(--bf-border);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--bf-text);
}

.bf-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--bf-muted);
}

.bf-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.bf-trust-badges i {
    color: var(--bf-gold);
}

.bf-deposit-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid #e8d2d9;
    border-radius: var(--bf-radius-sm, 12px);
    background: var(--bf-burgundy-soft, #f9eef1);
    color: var(--bf-text, #1f1f1f);
}

.bf-deposit-notice i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.25rem;
    color: var(--bf-burgundy, #a91435);
}

.bf-deposit-notice__title {
    display: block;
    margin-bottom: 0.35rem;
    font-family: "Cinzel", serif;
    font-size: 1.25rem;;
    font-weight: 700;
    color: var(--bf-burgundy, #a91435);
}

.bf-deposit-notice__text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 1.25rem;;
    line-height: 1.6;
    color: var(--bf-text, #1f1f1f);
}

.wc-cart-hold-timer {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    border: 1px solid #d4e8dd;
    border-radius: var(--bf-radius-sm, 12px);
    background: #f3faf6;
    color: var(--bf-text, #1f1f1f);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.wc-cart-hold-timer.is-urgent {
    border-color: #f0c987;
    background: #fff8eb;
}

.wc-cart-hold-timer.is-expired {
    border-color: #f0c2c2;
    background: #fef2f2;
}

.wc-cart-hold-timer i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.25rem;
    color: #2f7a55;
}

.wc-cart-hold-timer.is-urgent i {
    color: #b7791f;
}

.wc-cart-hold-timer.is-expired i {
    color: #991b1b;
}

.wc-cart-hold-timer__title {
    display: block;
    margin-bottom: 0.35rem;
    font-family: "Cinzel", serif;
    font-size: 1.25rem;;
    font-weight: 700;
    color: #2f7a55;
}

.wc-cart-hold-timer.is-urgent .wc-cart-hold-timer__title {
    color: #b7791f;
}

.wc-cart-hold-timer.is-expired .wc-cart-hold-timer__title {
    color: #991b1b;
}

.wc-cart-hold-timer__text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 1.25rem;;
    line-height: 1.6;
}

.wc-cart-hold-timer__countdown {
    display: inline-block;
    min-width: 3.25rem;
    font-family: "Cinzel", serif;
    font-size: 1.25rem;;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--bf-burgundy, #a91435);
}

.wc-cart-hold-timer.is-urgent .wc-cart-hold-timer__countdown {
    color: #b7791f;
}

.wc-cart-hold-timer.is-expired .wc-cart-hold-timer__countdown {
    color: #991b1b;
}

.wc-cart-page .bf-btn.is-disabled {
    pointer-events: none;
    opacity: 0.55;
    cursor: not-allowed;
}

.wc-cart-hold-timer--compact {
    margin: 0;
    padding: 0.85rem 0.95rem;
}

.wc-cart-hold-timer--compact .wc-cart-hold-timer__title {
    font-size: 1.15rem;
}

.wc-cart-hold-timer--compact .wc-cart-hold-timer__text {
    font-size: 1.15rem;;
    line-height: 1.5;
}

.wc-cart-hold-timer--compact .wc-cart-hold-timer__countdown {
    font-size: 1.25rem;;
}

.bookly-sidebar__hold-timer:not([hidden]) {
    margin-bottom: 0.75rem;
}

.bookly-deposit-notice {
    margin: 0 0 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: var(--bf-radius-sm, 12px);
    background: var(--bf-burgundy-soft, #f9eef1);
    font-family: "Raleway", sans-serif;
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--bf-text, #1f1f1f);
}
