/* Cart Styles - Side by Side */
.cart-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cart-container:hover {
    background-color: rgba(255,255,255,0.1);
}

.cart-icon {
    font-size: 1.2rem;
    color: white;
    margin-right: 8px;
}

.cart-badge {
    background-color: #e74c3c;
    font-size: 0.8rem;
    padding: 0.35em 0.65em;
    display: inline-block;
}

.cart-dropdown {
    width: 320px;
    max-width: 90vw;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-empty {
    padding: 1.5rem;
    text-align: center;
    color: #6c757d;
}

.cart-total {
    font-weight: bold;
    font-size: 1rem;
}

.btn-checkout {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-checkout:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .cart-container {
        justify-content: center;
        margin: 5px 0;
    }
}
