.cart-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

.cart-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #333;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f9f9f9;
}

.cart-table thead {
    background-color: #69c642;
    color: white;
}

.cart-table th,
.cart-table td {
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.cart-table td img {
    border-radius: 8px;
    max-height: 80px;
}

.cart-table tr:last-child {
    background-color: #eefbea;
}

.cart-table strong {
    font-size: 18px;
    color: #222;
}

@media (max-width: 768px) {
    .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        background-color: white;
    }

    .cart-table td {
        text-align: left;
        padding: 10px 15px;
        position: relative;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: bold;
        position: absolute;
        left: 15px;
        top: 10px;
        color: #555;
    }
}
.search-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    z-index: 999;
    list-style: none;
    padding: 0;
    margin-top: 5px;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}
.search-dropdown li a {
    display: block;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    color: #000;
}
.search-dropdown li a:hover {
    background-color: #f0f0f0;
}
