.shop-parallax {
    background-image: url(../media/termekkategoria-kep-min.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 40vh;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 30px;
}


.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
}

.card {
    height: 415px !important;
}

.shop-parallax-container {
    margin-top: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.product {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 300px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin: 10px;
    transition: all 0.3s;
    background-color: white;
}

.product:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    transition: all 0.3s;
}

.product.product-hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    transition: all 0.3s;
}

.product.product-hover .price {
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    transition: 0.3s;
    box-shadow: inset 0px 0px 3px 0px rgba(0, 196, 105, 0.5);
}


.price {
    font-size: 1.5rem;
    font-weight: bold;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.product:hover .price {
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    transition: 0.3s;
    box-shadow: inset 0px 0px 3px 0px rgba(0, 196, 105, 0.5);
}

.product-img {
    width: 300px;
    height: 300px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    white-space: wrap;
    overflow: hidden;
}

.product-info p {
    font-size: 1rem;
    font-weight: bold;
}

.product-info button {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #f1c40f;
    color: black;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}



.product-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.product-actions button,
.product-actions a {
    margin: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-actions button:hover,
.product-actions a:hover {
    border-radius: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(0 159 115);
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


.product-actions a img {
    width: 20px;
    height: 20px;
}

.col-md-2 {
    width: 15%;
}

.col-md-10 {
    width: 80%;
}

.filter-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

.filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    background-color: white;
    /* 43b02a */
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.filter ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.filter ul li {
    padding: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: flex-start;
    cursor: pointer;
}

.filter ul li:hover {
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

    border-radius: 20px;
}

.filter input[type="checkbox"] {
    margin-right: 15px;
}

.filter label {
    width: 100%;
    cursor: pointer;
}

.hilter_head {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    white-space: wrap;
    overflow: hidden;
}

.load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 20px;
    width: 100%;
}

.load-more button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load-more button:hover {
    border-radius: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(20, 106, 82);
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.filter select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.filter select:hover {
    border-radius: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(0 159 115);
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.filter option {
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    background-color: #43b02a;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.filter option:hover {
    border-radius: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(0 159 115);
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}


@media screen and (max-width: 768px) {
    #pc-filter {
        display: none;
    }

    .shop-parallax-container {
        margin-top: 40px;
    }

    .shop-parallax {
        height: 20vh;
        background-position: top;
    }

    .col-md-10 {
        width: 100%;
    }

    .product {
        width: 44%;
    }

    .product-img {
        width: 100%;
        height: 200px;
    }

    .product-info h3 {
        font-size: 1rem;
    }

    .product-info p {
        font-size: 0.8rem;
    }

    .product-info button {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1rem;
    }

    .filter-block {
        width: 90%;
    }

    .filter hr {
        display: none;
    }

    .filter {
        width: 90%;
        margin: 5px;
    }

    .filter select {
        width: 100%;
        font-size: 0.8rem;

    }


    .filter ul li {
        font-size: 0.8rem;
    }

    .filter_head {
        font-size: 1.2rem;
    }

    .load-more {
        width: 90%;
    }

    .load-more button {
        font-size: 1.2rem;
    }

}