/* Cart Section */
.cart-section {
    background: #f7fafc;
    min-height: 100vh;
}

.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .content-title i {
        color: #d4a574;
    }

.cart-table-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.table th {
    background: #f7fafc;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #d4a574;
}

.table td {
    vertical-align: middle;
}

.cart-start, .cart-end {
    min-width: 140px;
}

.cart-nights, .cart-price, .cart-total {
    font-weight: 600;
    color: #2c3e50;
}

.btn-remove-from-cart {
    transition: all 0.3s ease;
}

    .btn-remove-from-cart:hover {
        transform: scale(1.1);
    }

.cart-sidebar {
    position: sticky;
    top: 100px;
}

    .cart-sidebar h4 {
        color: #2c3e50;
        font-weight: 700;
    }

    .cart-sidebar hr {
        border-color: #e2e8f0;
        margin: 1rem 0;
    }

.btn-gold {
    background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
        color: white;
    }

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

    .empty-cart i {
        font-size: 5rem;
        color: #cbd5e0;
        margin-bottom: 1.5rem;
    }

    .empty-cart h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .empty-cart p {
        color: #718096;
        margin-bottom: 2rem;
    }

@media (max-width: 991px) {
    .cart-sidebar {
        position: static;
        margin-top: 2rem;
    }
}
