/* Cart Dropdown */
.cart-dropdown {
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-dropdown-header {
    background: #f8f9fa;
    padding: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
}

.cart-dropdown-items {
    max-height: 350px;
    overflow-y: auto;
}

.cart-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f1f3f5;
    transition: background 0.1s;
}

.cart-dropdown-item:hover {
    background: #f8f9fa;
}

.cart-dropdown-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    background: #e9ecef;
}

.cart-dropdown-details {
    flex: 1;
    min-width: 0;
}

.cart-dropdown-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary, #1d1d1b);
}

.cart-dropdown-price {
    font-size: 0.8rem;
    color: var(--text-muted, #7a7a7a);
}

.cart-dropdown-remove {
    background: none;
    border: none;
    color: #ced4da;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.cart-dropdown-remove:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.cart-dropdown-footer {
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #e9ecef;
}

.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.dropdown-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #adb5bd;
}

.dropdown-empty i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dropdown-empty p {
    font-size: 0.9rem;
    margin: 0;
}