.desktop-cart {
    display: none;
}

.desktop-cart__card {
    position: sticky;
    top: var(--menu-scroll-offset, 94px);
    padding: 22px;
    background: var(--paper);
    border: 1px solid rgba(199, 154, 24, 0.12);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.desktop-cart__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.desktop-cart__header h2 {
    margin: 0 0 6px;
}

.desktop-cart__header p {
    margin: 0;
    color: var(--muted);
}

.desktop-cart__open,
.desktop-cart__checkout {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: var(--brand-red);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.desktop-cart__checkout:disabled,
.cart-drawer__checkout:disabled,
.product-modal__submit:disabled {
    background: #d6d6d6;
    color: #8e8e8e;
    cursor: not-allowed;
}

.desktop-cart__items {
    display: grid;
    gap: 12px;
}

.desktop-cart__preview {
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--paper-soft);
    border: 1px solid rgba(199, 154, 24, 0.14);
}

.desktop-cart__preview h3 {
    margin: 0 0 4px;
    font-size: 0.98rem;
}

.desktop-cart__preview p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.desktop-cart__totals {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.desktop-cart__totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

.desktop-cart__totals strong {
    color: var(--text);
}

.desktop-cart__total {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
}

.desktop-cart__checkout {
    width: 100%;
}

.bottom-cartbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--brand-red);
    box-shadow: 0 -8px 22px rgba(99, 0, 0, 0.24);
}

.bottom-cartbar__button {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 12px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.bottom-cartbar__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bottom-cartbar__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.bottom-cartbar__icon span {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-red);
    font-size: 0.72rem;
}

.bottom-cartbar__label {
    justify-self: start;
}

