/* RE Shop Warenkorb */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9998;
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100vh;
    background: #fff;
    color: #171717;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 45px rgba(0,0,0,.22);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-header,
.cart-drawer-footer {
    padding: 20px;
    border-bottom: 1px solid #e9e9e9;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-drawer-header h2 {
    margin: 0;
    font-size: 1.35rem;
}

.cart-close {
    border: 0;
    background: #f2f2f2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
}

.cart-items {
    padding: 14px 20px;
    overflow-y: auto;
    flex: 1;
}

.cart-empty {
    text-align: center;
    padding: 52px 18px;
    color: #666;
}

.cart-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
}

.cart-item-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #f4f4f4;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
}

.cart-item h3 {
    font-size: .98rem;
    margin: 0 0 5px;
}

.cart-item-meta {
    font-size: .87rem;
    color: #666;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 9px;
}

.cart-qty button,
.cart-remove {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 7px;
    cursor: pointer;
}

.cart-qty button {
    width: 28px;
    height: 28px;
}

.cart-remove {
    margin-top: 8px;
    padding: 5px 8px;
    font-size: .78rem;
}

.cart-item-price {
    font-weight: 800;
    white-space: nowrap;
}

.cart-drawer-footer {
    border-top: 1px solid #e9e9e9;
    border-bottom: 0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.12rem;
    margin-bottom: 14px;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    border: 0;
    border-radius: 10px;
    background: #c1121f;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.cart-checkout-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.cart-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10000;
    background: #171717;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .2s ease;
}

.cart-notice.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 520px) {
    .cart-drawer {
        width: 100%;
    }
}
