.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 1000;
}

.side-cart {
    position: fixed;
    right: -450px;
    top: 0;
    width: 400px;
    height: 100%;
    background: white;
    color: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.side-cart.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    color: black;
}

.cart-header h2 {
    font-size: 20px;
    margin: 0;
    text-transform: uppercase;
}

.close-btn {
    background: none;
    border: none;
    color: black;
    font-size: 30px;
    cursor: pointer;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-info h4 {
    margin: 0 0 5px;
    font-size: 14px;
}

.item-price {
    font-weight: bold;
    color: #fff;
}

.cart-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #333;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
}

.checkout-btn {
    width: 100%;
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.payment-methods img {
    width: 100%;
    margin-top: 15px;
    opacity: 0.8;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    background: #222;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #333;
}

.qty-btn {
    background: none;
    border: none;
    color: #d0bf95;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.qty-num {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.item-remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4d4d;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    border: 2px solid #111;
    z-index: 5;
}

@media (max-width: 480px) {
    .side-cart {
        width: 100%;
        right: -100%;
    }
}