.cart-container {
    max-width: 800px;
    width: 100%;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    box-sizing: border-box;
}




.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-title {
    font-size: 20px;
    font-weight: bold;
}

.cart-actions a {
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
}

.total-box {
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
}

.checkout-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #006600;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
@media (max-width: 600px) {
    .cart-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
    }
}

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 10px;
    }

    .checkout-btn {
        width: 100%;
        font-size: 18px;
    }
}

