#fs-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

#fs-filter-form select, #fs-filter-form button {
    padding: 8px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(147,147,147,0.45)!important;
}

.fs-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.product-card {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card .price {
    font-weight: bold;
    color: green;
}

.product-card .view-button {
    display: inline-block;
    margin-top: 5px;
    background: #f0ad4e;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
}

.fs-results-container {
    margin-top: 20px;
}

.fs-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.fs-product-item {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.fs-product-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.fs-field {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.fs-field label {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 500;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
    .fs-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    #fs-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .fs-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #fs-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    #fs-filter-form select,
    #fs-filter-form button {
        width: 100%;
    }

    .fs-product-grid {
        grid-template-columns: 1fr;
    }
}


