/* Add your custom styles here */
body {
    background-color: #f8f9fa;
}

h3 {
    text-align: center;
    color: #333; /* Set your desired text color */
    text-transform: uppercase;
}

.menu {
    background-color: #343a40;
    color: white;
    padding: 10px;
    margin-bottom: 20px;
}

.menu a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
}
.contact-section {
display: flex;
justify-content: space-around;
align-items: center;
}

footer {
    background-color: #131058;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.contact-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.footer-button {
    display: inline-block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #f8f8f8;
    color: #333;
}

.footer-button i {
    margin-right: 5px;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .footer-button {
        width: 100%;
        margin-bottom: 10px;
    }
}
.small-text {
font-size: 80%; /* Adjust the percentage to your preference */
}

#loadingSpinner {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1000;
}

.product-card {
    height: 400px; /* Adjust the height as per your preference */
}


.filters-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.filter-dropdown, .filter-button {
    padding: 10px 15px;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    cursor: pointer;
}

.filter-dropdown:focus, .filter-button:focus {
    border-color: #007bff;
}

.filter-button {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.filter-button:hover {
    background-color: #0056b3;
}

.filter-label {
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Optional: Adjustments for icon appearance */
.filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.filter-button::after {
    content: '\1F50D'; /* Unicode for magnifying glass icon */
    margin-left: 5px;
}