
/* Horizontal Filters Styling */
.horizontal-filters {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.horizontal-filters .filter-group {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.horizontal-filters .filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horizontal-filters .filter-dropdown {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 30px;
}

.horizontal-filters .filter-dropdown:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.horizontal-filters .filter-dropdown:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.horizontal-filters .filter-dropdown:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.horizontal-filters .filter-dropdown:disabled:hover {
    border-color: #e5e7eb;
    box-shadow: none;
}

/* Main page horizontal filters (original styling) */
.category-sec .horizontal-filters {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-sec .horizontal-filters .filter-group {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.category-sec .horizontal-filters .filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-sec .horizontal-filters .filter-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.category-sec .horizontal-filters .filter-dropdown:hover {
    border-color: #b00f0c;
    box-shadow: 0 0 0 3px rgb(176 15 12 / 13%);
}

.category-sec .horizontal-filters .filter-dropdown:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.category-sec .horizontal-filters .filter-dropdown:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

/* Search Actions */
.search-actions {
    margin-top: 20px;
    text-align: center;
}

/*.search-btn {*/
/*    background: #3b82f6;*/
/*    color: white;*/
/*    border: none;*/
/*    padding: 15px 40px;*/
/*    border-radius: 8px;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
   
/*}*/

/*.search-btn:hover {*/
/*    background: #2563eb;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);*/
/*}*/

/*.search-btn:active {*/
/*    transform: translateY(0);*/
/*}*/

/*.search-btn span {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*}*/

/* Sub-category selection styling */


/* Responsive adjustments */
@media (max-width: 768px) {
    .search-actions {
        margin-top: 15px;
    }
    
    /*.search-btn {*/
    /*    padding: 12px 30px;*/
    /*    font-size: 14px;*/
    /*    width: 100%;*/
    /*    max-width: 300px;*/
    /*}*/
}

@media (max-width: 480px) {
    /*.search-btn {*/
    /*    padding: 12px 25px;*/
    /*    font-size: 13px;*/
    /*}*/
}
