﻿/*.product-cart-name {
    display: inline;
}
.cart-title {
    margin: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #094533;
}
.row-product-cart {
    margin: 12px;
}
.img-product-cart {
    border-radius: 20px;
}
.product-price,
.quantity-cart {
    font-size: 30px;
    font-weight: bold;
}*/
/*.cart-container {
    margin-top: 30px;
}*/

/* LEFT */
/*.cart-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-header {
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.cart-img {
    width: 80px;
    border-radius: 10px;
}

.cart-name {
    font-weight: 600;
    margin: 0;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .qty-box button {
        width: 30px;
        height: 30px;
        border: none;
        background: #eee;
        border-radius: 6px;
    }*/

/* RIGHT */
/*.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-address,
.btn-voucher {
    width: 100%;
    border: 1px dashed #094533;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    color: #094533;
}

.btn-checkout {
    margin-top: 15px;
    width: 100%;
    background: #094533;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}*/
.cart-container {
    margin-top: 30px;
}

/* LEFT: Cart items */
.cart-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cart-header {
    font-weight: bold;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.cart-img {
    width: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-name {
    font-weight: 600;
    margin: 0;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .qty-box button {
        width: 30px;
        height: 30px;
        border: none;
        background: #eee;
        border-radius: 6px;
    }

/* RIGHT: Cart summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.btn-address,
.btn-voucher {
    width: 100%;
    border: 1px dashed #094533 !important;
    background: #fff !important;
    padding: 10px;
    border-radius: 8px;
    color: #094533 !important;
}

.btn-checkout {
    margin-top: 15px;
    width: 100%;
    background: #094533;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .cart-img {
        width: 100%;
        max-width: 150px;
        margin-bottom: 10px;
    }

    .cart-item-info {
        width: 100%;
    }

    .cart-labels span {
        display: block;
        font-size: 14px;
    }

    .qty-box {
        gap: 5px;
    }

    .btn-checkout {
        font-size: 16px;
        padding: 10px;
    }
}