/* Cart Page */
.cart-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.cart-empty p {
    margin-bottom: 20px;
    font-size: 16px;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.cart-item-price {
    font-size: 18px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cart-item-quantity button {
    width: 28px;
    height: 28px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    padding: 4px;
    border-radius: 4px;
}

.btn-remove {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.btn-remove:hover {
    background-color: #c0392b;
}

/* Cart Summary */
.cart-summary {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.summary-item.total {
    font-size: 18px;
    font-weight: bold;
    color: #2d5016;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-continue-shopping {
    flex: 1;
    padding: 12px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    color: #333;
    font-weight: 600;
}

.btn-continue-shopping:hover {
    background-color: #e0e0e0;
}

.btn-checkout {
    flex: 1;
    padding: 12px;
    background-color: #2d5016;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.btn-checkout:hover {
    background-color: #1e3610;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        gap: 10px;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .btn-continue-shopping,
    .btn-checkout {
        width: 100%;
    }
}
