/* =================================
   CART PAGE
================================= */

.cart-section {
    padding: 70px 0;
    background: #f8f9f7;
    min-height: 70vh;
}

.cart-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 35px;
}

.cart-item {
    background: white;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.cart-item-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 700;
}

.cart-item-price {
    color: #1b5e20;
    font-weight: 700;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #1b5e20;
    color: white;
    font-weight: bold;
}

.quantity-number {
    min-width: 25px;
    text-align: center;
    font-weight: 700;
}

.remove-btn {
    border: none;
    background: transparent;
    color: #dc3545;
    font-size: 20px;
}

.cart-summary {
    background: white;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.summary-total {
    font-size: 23px;
    font-weight: 800;
    color: #1b5e20;
}

.checkout-btn {
    width: 100%;
    border: none;
    background: #ffc107;
    color: #111;
    padding: 14px;
    border-radius: 30px;
    font-weight: 800;
    margin-top: 15px;
}

.checkout-btn:hover {
    background: #1b5e20;
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 70px;
    color: #aaa;
}

.empty-cart h3 {
    margin-top: 20px;
    font-weight: 700;
}