:root {
    --bh-breakfast-bg: #f7fbf7;
    --bh-breakfast-card: #ffffff;
    --bh-breakfast-primary: #1f7a5c;
    --bh-breakfast-accent: #f7c948;
    --bh-breakfast-berry: #ef6a5b;
    --bh-breakfast-text: #14312a;
    --bh-breakfast-muted: #5b6b67;
    --bh-breakfast-border: #e3efe8;
}

* {
    box-sizing: border-box;
}

.bh-breakfast-body {
    margin: 0;
    color: var(--bh-breakfast-text);
    background: radial-gradient(circle at top left, #ffffff 0%, #f4fbf6 45%, #f7fbf7 100%);
}

.bh-breakfast {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 20px 140px;
    font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
}

.bh-breakfast--invalid {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-breakfast-invalid {
    max-width: 520px;
    padding: 32px;
    border-radius: 20px;
    background: var(--bh-breakfast-card);
    border: 1px solid var(--bh-breakfast-border);
    box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.35);
    text-align: center;
}

.bh-breakfast-invalid h1 {
    margin: 0 0 12px 0;
    font-size: 26px;
}

.bh-breakfast-invalid p {
    margin: 0;
    color: var(--bh-breakfast-muted);
    line-height: 1.6;
}

.bh-breakfast-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: center;
    background: linear-gradient(128deg, rgba(236, 251, 242, 0.98) 0%, rgba(250, 245, 223, 0.98) 58%, rgba(255, 249, 236, 0.96) 100%);
    border: 1px solid rgba(227, 239, 232, 0.9);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 44px -34px rgba(20, 49, 42, 0.35);
}

.bh-breakfast-hero h1 {
    font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}

.bh-breakfast-hero p {
    color: var(--bh-breakfast-muted);
    line-height: 1.6;
}

.bh-breakfast-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.bh-breakfast-brand__badge {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 26px -24px rgba(20, 49, 42, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    backdrop-filter: blur(6px);
}

.bh-breakfast-brand__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bh-breakfast-brand__copy {
    display: grid;
    gap: 4px;
}

.bh-breakfast-brand__eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(20, 49, 42, 0.68);
    font-weight: 700;
}

.bh-breakfast-brand__name {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bh-breakfast-text);
}

.bh-breakfast-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 122, 92, 0.12);
    color: var(--bh-breakfast-primary);
    font-weight: 600;
    font-size: 13px;
}

.bh-breakfast-hero__art {
    position: relative;
    min-height: 140px;
    filter: saturate(0.92);
}

.bh-breakfast-hero__blob {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 46% 54% 60% 40% / 50% 40% 60% 50%;
    background: rgba(31, 122, 92, 0.18);
    top: -40px;
    right: 10px;
}

.bh-breakfast-hero__blob--alt {
    width: 160px;
    height: 160px;
    background: rgba(247, 201, 72, 0.4);
    top: 40px;
    right: 120px;
}

.bh-breakfast-date {
    margin: 28px 0 20px;
    display: grid;
    gap: 12px;
}

.bh-breakfast-date__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.bh-date-btn {
    border: none;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    color: var(--bh-breakfast-primary);
    box-shadow: 0 8px 16px -12px rgba(20, 49, 42, 0.3);
    min-height: 40px;
}

.bh-date-btn.is-active {
    background: var(--bh-breakfast-primary);
    color: #ffffff;
}

.bh-date-btn:disabled,
.bh-date-btn.is-disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.bh-date-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.bh-date-btn--picker {
    background: #f1f8f5;
}

.bh-date-picker__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
    pointer-events: none;
}

.bh-breakfast-calendar {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--bh-breakfast-border);
    padding: 12px;
    box-shadow: 0 16px 30px -24px rgba(20, 49, 42, 0.35);
}

.bh-breakfast-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.bh-breakfast-calendar__title {
    font-weight: 700;
}

.bh-calendar-nav {
    border: none;
    background: #f1f8f5;
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
}

.bh-breakfast-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    color: var(--bh-breakfast-muted);
    margin-bottom: 6px;
}

.bh-breakfast-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.bh-calendar-day {
    border: 1px solid transparent;
    background: #f7fbf7;
    border-radius: 10px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
}

.bh-calendar-day.is-disabled {
    color: #c0c7c3;
    background: #f2f4f3;
    cursor: not-allowed;
}

.bh-calendar-day.is-selected {
    border-color: var(--bh-breakfast-primary);
    background: rgba(31, 122, 92, 0.12);
}

.bh-breakfast-date__note {
    color: var(--bh-breakfast-berry);
    font-weight: 600;
}

.bh-breakfast-date__info {
    color: var(--bh-breakfast-berry);
    font-weight: 600;
}

.bh-breakfast-testmode {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: #fff7ed;
    color: #9a3412;
    line-height: 1.55;
}

.bh-breakfast-testmode strong {
    color: #7c2d12;
}

.bh-breakfast-items {
    margin-top: 12px;
}

.bh-breakfast-items__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.bh-breakfast-items__header h2 {
    font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 800;
}

.bh-breakfast-items__list {
    display: grid;
    gap: 14px;
}

.bh-breakfast-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    background: var(--bh-breakfast-card);
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--bh-breakfast-border);
    box-shadow: 0 10px 24px -20px rgba(20, 49, 42, 0.35);
}

.bh-breakfast-item__image {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: #f1f5f4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-breakfast-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-breakfast-item__info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.bh-breakfast-item__info p {
    margin: 0;
    color: var(--bh-breakfast-muted);
    font-size: 14px;
}

.bh-breakfast-item__price {
    font-weight: 700;
    color: var(--bh-breakfast-primary);
    font-size: 16px;
}

.bh-breakfast-item__stock {
    font-size: 12px;
    color: var(--bh-breakfast-berry);
    margin-top: 6px;
}

.bh-breakfast-qty {
    display: grid;
    grid-template-columns: 32px 48px 32px;
    align-items: center;
    gap: 6px;
}

.bh-breakfast-qty button {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(31, 122, 92, 0.25);
    background: #f1f8f5;
    font-weight: 700;
    cursor: pointer;
    color: var(--bh-breakfast-primary);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.bh-breakfast-qty input {
    text-align: center;
    border: 1px solid var(--bh-breakfast-border);
    border-radius: 8px;
    height: 32px;
    font-family: inherit;
    appearance: textfield;
}

.bh-breakfast-summary {
    margin-top: 32px;
}

.bh-breakfast-summary__card {
    background: var(--bh-breakfast-card);
    border-radius: 20px;
    border: 1px solid var(--bh-breakfast-border);
    padding: 20px;
    box-shadow: 0 18px 36px -28px rgba(20, 49, 42, 0.4);
}

.bh-breakfast-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 18px;
    margin-bottom: 12px;
}

.bh-breakfast-total strong {
    font-size: 24px;
    color: var(--bh-breakfast-primary);
}

.bh-breakfast-form {
    display: grid;
    gap: 12px;
}

#bh-booking-root .bh-popup .bh-breakfast-form,
#bh-booking-root .bh-popup .bh-breakfast-form__row,
#bh-booking-root .bh-popup .bh-breakfast-form label,
#bh-booking-root .bh-popup .bh-breakfast-form input,
#bh-booking-root .bh-popup .bh-breakfast-form textarea {
    float: none !important;
    clear: none !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    margin: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
}

.bh-breakfast-form__row {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.bh-breakfast-form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: var(--bh-breakfast-muted);
}

.bh-breakfast-form input,
.bh-breakfast-form textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--bh-breakfast-border);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: inherit;
}

.bh-breakfast-submit {
    border: none;
    background: var(--bh-breakfast-primary);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.bh-breakfast-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bh-breakfast-error {
    background: #fff1f0;
    border: 1px solid #fecaca;
    color: #b42318;
    padding: 10px 12px;
    border-radius: 10px;
}

.bh-breakfast-loading {
    padding: 20px;
    text-align: center;
    color: var(--bh-breakfast-muted);
}

.bh-breakfast-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.bh-breakfast-popup.is-visible {
    display: flex;
}

.bh-breakfast-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 25, 22, 0.55);
}

.bh-breakfast-popup__card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    max-width: 520px;
    width: calc(100% - 40px);
    z-index: 1;
}

.bh-breakfast-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

.bh-qr-codebox {
    text-align: center;
}

.bh-qrcode {
    width: 160px;
    height: 160px;
}
.bh-order-status {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 12px 0 4px;
}

.bh-order-failed,
.bh-order-succes {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.bh-order-failed {
    background: rgba(239, 106, 91, 0.16);
    border: 2px solid rgba(239, 106, 91, 0.5);
}

.bh-order-succes {
    background: rgba(31, 122, 92, 0.16);
    border: 2px solid rgba(31, 122, 92, 0.5);
}

.bh-payment-status {
    font-weight: 700;
    color: var(--bh-breakfast-text);
}

.bh-order-details {
    margin-top: 0;
}

.bh-booking-details,
.bh-custom-fields {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: grid;
    gap: 6px;
    color: var(--bh-breakfast-muted);
}

.bh-booking-details li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    color: var(--bh-breakfast-text);
}

.bh-booking-details__qty {
    font-weight: 700;
    color: #39555d;
    white-space: nowrap;
}

.bh-booking-details__name {
    min-width: 0;
}

.bh-booking-details__price {
    white-space: nowrap;
    color: #39555d;
}

.bh-custom-fields li {
    display: grid;
    grid-template-columns: minmax(130px, 170px) minmax(0, 1fr);
    align-items: start;
    gap: 8px 16px;
    font-size: 14px;
}

.bh-order-confirmation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: start;
}

.bh-order-confirmation__main {
    min-width: 0;
}

.bh-order-confirmation__main > * {
    width: 100%;
}

.bh-order-confirmation__aside {
    display: flex;
    justify-content: flex-end;
}

.bh-order-section-title,
.bh-breakfast-confirmation .bh-order-section-title,
#bh-booking-root .bh-popup .bh-order-section-title {
    margin: 22px 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left !important;
    color: var(--bh-breakfast-text);
}

.bh-breakfast-confirmation .bh-order-details,
.bh-breakfast-confirmation .bh-order-details h1,
.bh-breakfast-confirmation .bh-order-details h2,
.bh-breakfast-confirmation .bh-order-details p,
.bh-breakfast-confirmation .bh-order-details ul,
.bh-breakfast-confirmation .bh-order-details li,
.bh-breakfast-confirmation .bh-order-details span,
#bh-booking-root .bh-popup .bh-order-details,
#bh-booking-root .bh-popup .bh-order-details h1,
#bh-booking-root .bh-popup .bh-order-details h2,
#bh-booking-root .bh-popup .bh-order-details p,
#bh-booking-root .bh-popup .bh-order-details ul,
#bh-booking-root .bh-popup .bh-order-details li,
#bh-booking-root .bh-popup .bh-order-details span {
    text-align: left !important;
}

.bh-breakfast-confirmation .bh-order-details h1,
.bh-breakfast-confirmation .bh-order-details h2,
.bh-breakfast-confirmation .bh-order-details p,
.bh-breakfast-confirmation .bh-order-details ul,
.bh-breakfast-confirmation .bh-payment-note,
#bh-booking-root .bh-popup .bh-order-details h1,
#bh-booking-root .bh-popup .bh-order-details h2,
#bh-booking-root .bh-popup .bh-order-details p,
#bh-booking-root .bh-popup .bh-order-details ul,
#bh-booking-root .bh-popup .bh-payment-note {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

.bh-breakfast-confirmation .bh-order-details h1,
#bh-booking-root .bh-popup .bh-order-details h1 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.bh-breakfast-confirmation .bh-order-details p,
#bh-booking-root .bh-popup .bh-order-details p {
    margin: 0 0 14px;
    line-height: 1.55;
    color: var(--bh-breakfast-text);
}

.bh-breakfast-confirmation .bh-payment-note,
#bh-booking-root .bh-popup .bh-payment-note {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #f2d59a;
    background: #fff6e4;
    line-height: 1.5;
    color: #7b4b00;
    text-align: left !important;
}

.bh-breakfast-confirmation .bh-booking-details li,
#bh-booking-root .bh-popup .bh-booking-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(227, 239, 232, 0.9);
}

.bh-breakfast-confirmation .bh-booking-details li:last-child,
#bh-booking-root .bh-popup .bh-booking-details li:last-child,
.bh-breakfast-confirmation .bh-custom-fields li:last-child,
#bh-booking-root .bh-popup .bh-custom-fields li:last-child {
    border-bottom: none;
}

.bh-breakfast-confirmation .bh-custom-fields li,
#bh-booking-root .bh-popup .bh-custom-fields li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(227, 239, 232, 0.9);
}

.bh-breakfast-confirmation .bh-custom-fields li strong,
#bh-booking-root .bh-popup .bh-custom-fields li strong {
    color: #51645e;
}

.bh-breakfast-confirmation .bh-qr-codebox,
#bh-booking-root .bh-popup .bh-qr-codebox {
    margin-top: 0;
    padding: 14px;
    border: 1px solid var(--bh-breakfast-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 32px -30px rgba(20, 49, 42, 0.32);
}


.bh-breakfast-confirmation {
    max-width: 640px;
    margin: 40px auto;
    background: #ffffff;
    border: 1px solid var(--bh-breakfast-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 36px -28px rgba(20, 49, 42, 0.4);
}

.bh-breakfast-confirmation h1 {
    margin-top: 0;
}
@media (max-width: 900px) {
    .bh-breakfast-hero {
        grid-template-columns: 1fr;
        padding: 24px 22px 86px;
        min-height: 0;
        align-items: start;
    }

    .bh-breakfast-hero__text {
        position: relative;
        z-index: 1;
    }

    .bh-breakfast-hero__art {
        position: absolute;
        inset: 146px -12px -10px 44%;
        min-height: 0;
        z-index: 0;
        pointer-events: none;
    }

    .bh-breakfast-hero__blob {
        width: 240px;
        height: 240px;
        top: auto;
        bottom: -2px;
        right: 6px;
    }

    .bh-breakfast-hero__blob--alt {
        width: 172px;
        height: 172px;
        top: auto;
        right: 126px;
        bottom: 8px;
    }

    .bh-breakfast-brand__badge {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .bh-breakfast {
        padding: 24px 16px 48px;
    }

    .bh-breakfast-hero {
        padding: 20px 18px 60px;
    }

    .bh-breakfast-brand {
        align-items: flex-start;
        gap: 12px;
    }

    .bh-breakfast-brand__badge {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .bh-breakfast-brand__name {
        font-size: 16px;
    }

    .bh-breakfast-tag {
        padding: 6px 14px;
        font-size: 12px;
    }

    .bh-breakfast-hero h1 {
        font-size: 30px;
        margin: 8px 0 10px;
    }

    .bh-breakfast-hero p {
        margin: 0;
        font-size: 15px;
        line-height: 1.62;
        max-width: 24ch;
    }

    .bh-breakfast-hero__art {
        inset: 176px -18px -6px 36%;
    }

    .bh-breakfast-hero__blob {
        width: 214px;
        height: 214px;
        right: -2px;
        bottom: -2px;
    }

    .bh-breakfast-hero__blob--alt {
        width: 154px;
        height: 154px;
        right: 118px;
        bottom: 14px;
    }

    .bh-order-confirmation {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bh-order-confirmation__aside {
        justify-content: flex-start;
    }

    .bh-qrcode {
        width: 132px;
        height: 132px;
    }

    .bh-breakfast-item {
        grid-template-columns: 64px 1fr;
        grid-template-areas:
            "image info"
            "image qty";
    }

    .bh-breakfast-item__image {
        width: 64px;
        height: 64px;
    }

    .bh-breakfast-qty {
        justify-self: start;
    }

    .bh-breakfast-cart__item {
        grid-template-columns: 60px 1fr;
        grid-template-areas:
            "image meta"
            "qty qty";
        gap: 10px;
    }

    .bh-breakfast-cart__image {
        grid-area: image;
        width: 60px;
        height: 60px;
    }

    .bh-breakfast-cart__meta {
        grid-area: meta;
    }

    .bh-breakfast-cart__qty {
        grid-area: qty;
        justify-self: start;
    }

    .bh-cart-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .bh-breakfast-cart__item {
        position: relative;
        padding-right: 44px;
    }
}


.bh-breakfast-checkout[hidden] {
    display: none;
}

.bh-breakfast--checkout .bh-breakfast-items,
.bh-breakfast--checkout .bh-breakfast-bar,
.bh-breakfast--checkout .bh-breakfast-date,
.bh-breakfast--checkout .bh-breakfast-hero,
.bh-breakfast--checkout .bh-breakfast-testmode {
    display: none;
}

.bh-breakfast-cart {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.bh-breakfast-cart__title {
    font-weight: 700;
    margin: 0;
}

.bh-breakfast-cart__item {
    display: grid;
    grid-template-columns: 72px 1fr auto 36px;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--bh-breakfast-border);
    background: #ffffff;
    align-items: center;
}

.bh-breakfast-cart__image {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #f1f5f4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-breakfast-cart__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-breakfast-cart__empty {
    color: var(--bh-breakfast-muted);
}

.bh-breakfast-cart__meta {
    display: grid;
    gap: 4px;
}

.bh-breakfast-cart__name {
    font-weight: 600;
}

.bh-breakfast-cart__price {
    color: var(--bh-breakfast-muted);
    font-size: 13px;
}

.bh-breakfast-cart__qty {
    display: grid;
    grid-template-columns: 30px 48px 30px;
    align-items: center;
    gap: 6px;
}

.bh-breakfast-cart__qty button {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(31, 122, 92, 0.25);
    background: #f1f8f5;
    font-weight: 700;
    cursor: pointer;
    color: var(--bh-breakfast-primary);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.bh-breakfast-cart__qty input {
    text-align: center;
    border: 1px solid var(--bh-breakfast-border);
    border-radius: 8px;
    height: 30px;
    font-family: inherit;
    appearance: textfield;
}

.bh-breakfast-qty input:focus,
.bh-breakfast-qty input:focus-visible,
.bh-breakfast-cart__qty input:focus,
.bh-breakfast-cart__qty input:focus-visible {
    outline: none;
    box-shadow: none;
}

.bh-breakfast-qty input::-webkit-outer-spin-button,
.bh-breakfast-qty input::-webkit-inner-spin-button,
.bh-breakfast-cart__qty input::-webkit-outer-spin-button,
.bh-breakfast-cart__qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bh-breakfast-qty button:active,
.bh-breakfast-cart__qty button:active,
.bh-cart-remove:active {
    transform: scale(0.96);
}

.bh-breakfast-qty button:hover,
.bh-breakfast-cart__qty button:hover {
    box-shadow: 0 6px 12px -8px rgba(20, 49, 42, 0.45);
}

.bh-cart-remove {
    border: none;
    background: #fff1f0;
    color: #b42318;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bh-cart-remove svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.bh-breakfast-bar {
    position: sticky;
    bottom: 0;
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid var(--bh-breakfast-border);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 16px 30px -20px rgba(20, 49, 42, 0.35);
    z-index: 5;
}

.bh-breakfast-bar__summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--bh-breakfast-muted);
}

.bh-breakfast-bar__summary strong {
    font-size: 20px;
    color: var(--bh-breakfast-primary);
}

.bh-breakfast-bar__action {
    border: none;
    background: var(--bh-breakfast-primary);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.bh-breakfast-bar__action:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bh-breakfast-total--compact {
    margin-bottom: 10px;
}

.bh-breakfast-back {
    margin-top: 12px;
    border: none;
    background: transparent;
    color: var(--bh-breakfast-primary);
    font-weight: 600;
    cursor: pointer;
}

.bh-breakfast-error {
    margin: 16px 0 0;
}


.bh-breakfast-date__selected {
    font-weight: 600;
    color: var(--bh-breakfast-primary);
}
