﻿.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fffaf2;
    box-shadow: -8px 0 30px rgba(59,35,95,.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1100;
}

.cart-header {
    padding: 22px 16px 12px;
    color: #3b235f;
    border-bottom: 1px solid rgba(184,134,11,.25);
}

    .cart-header h4 {
        margin: 0;
        font-weight: 800;
    }

.cart-summary {
    background: #ffffff;
    margin: 12px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(184,134,11,.25);
    box-shadow: 0 8px 24px rgba(59,35,95,.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #6b5a42;
    font-size: 14px;
}

    .summary-row.total {
        border-top: 1px solid rgba(184,134,11,.25);
        padding-top: 10px;
        color: #3b235f;
        font-size: 17px;
    }

.checkout-btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 12px;
    font-weight: 900;
    background: linear-gradient(90deg, #b8860b, #ffd86b, #b8860b);
    color: #2b1748;
}

.cart-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 18px;
}

.cart-item {
    background: #fff;
    border: 1px solid rgba(184,134,11,.2);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
}

.cart-product {
    display: flex;
    gap: 12px;
}

    .cart-product img {
        width: 62px;
        height: 62px;
        object-fit: cover;
        border-radius: 12px;
    }

.cart-price {
    color: #3b235f;
    font-weight: 800;
}

.cart-mrp {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}

.cart-actions {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cart-actions button {
        border: 1px solid rgba(59,35,95,.25);
        background: #fff;
        border-radius: 8px;
        padding: 4px 9px;
    }

.remove-cart {
    color: #dc3545;
}

.empty-cart {
    text-align: center;
    color: #777;
    padding: 35px 0;
}


/* Mobile Responsive */
@media (max-width: 576px) {
    .cart-panel {
        width: 100%;
        max-width: 100%;
        height: 100dvh;
        right: 0;
        border-radius: 0;
    }

    .cart-header {
        padding: 18px 58px 10px 14px;
    }

        .cart-header h4 {
            font-size: 18px;
        }

    .cart-close {
        top: 12px;
        right: 12px;
        padding: 6px 9px;
    }

    .cart-summary {
        margin: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .summary-row {
        font-size: 13px;
    }

        .summary-row.total {
            font-size: 16px;
        }

    .checkout-btn {
        padding: 11px;
        font-size: 14px;
    }

    .cart-scroll {
        padding: 0 10px 90px;
    }

    .cart-item {
        padding: 10px;
        border-radius: 15px;
    }

    .cart-product {
        gap: 10px;
    }

        .cart-product img {
            width: 58px;
            height: 58px;
        }

        .cart-product strong {
            font-size: 13px;
        }

        .cart-product span {
            font-size: 12px;
        }

    .cart-actions {
        gap: 8px;
    }

        .cart-actions button {
            padding: 4px 8px;
            font-size: 12px;
        }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {
    .cart-panel {
        width: 380px;
        max-width: 85vw;
    }
}