﻿.cart-header {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
}

.cart-table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

    .cart-table thead {
        background-color: var(--honey-light);
    }

    .cart-table th {
        font-weight: 600;
        color: var(--secondary-color);
    }

.product-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: var(--light-color);
    padding: 5px;
    border-radius: 5px;
}

.quantity-input {
    width: 70px;
    text-align: center;
}

.summary-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-top: 3px solid var(--primary-color);
}

.summary-title {
    border-bottom: 2px solid var(--honey-light);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-row {
    font-weight: bold;
    font-size: 1.1rem;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 3px solid var(--primary-color);
}

@media (max-width: 768px) {
    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: 2px solid #eee;
        padding-bottom: 20px;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
        padding: 10px;
        border: none;
    }

        .cart-table td::before {
            content: attr(data-label);
            font-weight: bold;
            margin-left: 10px;
            color: var(--secondary-color);
        }

    .product-img {
        width: 60px;
        height: 60px;
    }
}
