body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

label{
    color: #11345c;
}

.product-category {
    text-align: center;
    padding: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    /* width: 1000px; */
}

.product {
    border: 1px solid #ffffff;
    padding: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: auto;
}

.quick-view-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
}

.quick-view-btn:hover {
    color: #66b168;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    text-align: left;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.filter-container {
    margin: 20px;
    padding: 10px;
    /* border: 1px solid #11345c; */
    border-radius: 5px;
}

.filter-group {
    margin-bottom: 10px;
}

#clear-filters {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ffffff;
    color: #11345c;
    border: none;
    cursor: pointer;
}

#clear-filters:hover {
    color: #66b168;
}

/*  */

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 1rem 0;
}

.filter-group label {
    font-size: 1rem;
    color: #11345c;
    font-weight: 500;
}

.filter-group select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    border-color: #11345c;
    outline: none;
}

.filter-group select option {
    padding: 0.5rem;
    font-size: 1rem;
}

.hpr{
    background-image: url(Images/IMGL19051.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 300px;
}
@media screen and (max-width: 768px) {
    .product {
        border: 1px solid #ffffff;
        padding: 0px;
        width: 100px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    .product h2{
        font-size: 13px;
        margin: 0px;
    }
    .product p{
        font-size: 11px;
        margin: 0px;
    }
    .product-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        /* width: 1000px; */
    }
}