
.search-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.search-input,
.filter-select {
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
    max-width: 100%;
}

.search-input:focus,
.filter-select:focus {
    border-color: #f4511e;
    box-shadow: 0 0 5px rgba(244, 81, 30, 0.3);
}



#cartIcon {
    position: fixed;
    right: 30px;
    bottom: 100px;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 29px;
    border: 2px solid #f4511e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

#cartIcon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(56, 142, 60, 0.3);
}


.filter-select option {
    font-size: 16px;
    padding: 10px;  
}


@media (max-width: 992px) {
    .search-input,
    .filter-select {
        font-size: 15px;
    }

    .filter-select option {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    .search-filter-container {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
    }

    .filter-select {
        order: 1;
        flex: 1;
        max-width: 32%;
        padding: 10px;
        font-size: 14px;
    }

    .search-input {
        order: 3;
        flex: 1;
        max-width: 32%;
        padding: 10px;
        font-size: 14px;
        box-sizing: border-box;
    }

    h2 {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .filter-select option {
        font-size: 13px;
    }


    .scroll-top,
    #cartIcon {
        width: 50px; 
        height: 50px; 
        font-size: 24px; 
    }

    .scroll-top {
        bottom: 70px;
    }

    #cartIcon {
        bottom: 30px; 
    }
}


@media (max-width: 480px) {
    .search-filter-container {
        display: flex;
        flex-direction: row;
        gap: 5px;
        justify-content: space-around;
        padding: 5px;
    }

    .filter-select {
        order: 1;
        flex: 1;
        max-width: calc(38.33% - 5px);
        padding: 8px;
        font-size: 13px;
    }

    .search-input {
        order: 3;
        flex: 1;
        max-width: calc(38.33% - 5px);
        padding: 8px;
        font-size: 13px;
        box-sizing: border-box;
    }

    .filter-select option {
        font-size: 12px;
        padding: 8px;
    }
    
    h2 {
        font-size: 1.25rem;
    }
}


#noResultsMessage {
    display: none;
    color: black;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}
