/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #d32f2f;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.stock-count {
    color: #666;
    font-size: 12px;
    font-weight: normal;
}
