.sort-by-product-wrap {
    border: 1px solid #ddd;
    border-radius: 6px;
    height: 40px;
    background-color: #fff;
    cursor: pointer;
}

.sort-by-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 5px;
    z-index: 1000;
}

@media (min-width: 768px) {
    .sort-by-dropdown {
        width: 220px;
    }
}

.sort-by-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.sort-by-dropdown ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.sort-by-dropdown ul li a:hover,
.sort-by-dropdown ul li a.active {
    background-color: #f0f0f0;
    font-weight: 600;
    color: #222;
}

.search-form input[type="text"] {
    height: 45px !important;
    border-radius: 6px 0 0 6px;
}

.search-form button {
    height: 40px;
    border-radius: 0 6px 6px 0;
}