h2{
    font-family: "Lemon", serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.most-favorite-title{
    color: #222;
    text-align: center;
    font-size: 1.6rem;
}

.videki-ebredes-img{
    border-radius: 2rem;
}

.videki-ebredes-desc{
    background-color: var(--yellow-color);
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem;
    font-weight: 700;
}

.show-product-btn{
    background-color: var(--primary-color);
    font-weight: 800;
    color: #FFF;
    border-radius: 1rem;
    padding: 0.3rem 1.5rem;
}

.show-product-btn:hover{
    background-color: var(--primary-hover-color);
    color: #FFF;
}

.secondary-bg{
    background-color: var(--secondary-color);
}

.category-desc{
    font-weight: bolder;
    font-size: 1.2rem;
}

.ebredoizek-logo{
    height: 90px;
}

.important-list{
    font-weight: bolder;
    font-size: 1.2rem;
}

.important-list a{
    color: var(--primary-color);
}

.btn-partners{
    background-image: linear-gradient(200deg, var(--yellow-color) 0%, var(--primary-color) 100%);
    color: #FFF;
    font-weight: bolder;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem;
    box-shadow: 0px 6px 22px -8px rgba(0,0,0,0.5);
    transform: scale(1.0);
    transition: all 0.2s ease-in-out;
}

.btn-partners svg{
    height: 1.2rem;
    fill: #FFF;
    margin-top: -5px;
}

.btn-partners:hover{
    transform: scale(1.1);
    color: #FFF;
}

@media(max-width: 960px){
    h1{
        font-size: 1.8rem;
        font-family: "Lemon", serif;
        font-weight: 800;
        text-align: center;
        color: var(--primary-color);
        margin-bottom: 2rem;
    }
    
    .subtitle{
        font-size: 1.3rem;
        font-weight: 800;
        text-align: center;
    }
    
    h2{
        font-size: 1.8rem;
    }
}

/*********** swiper **************/

.swiper {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.swiper-wrapper{
    
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    border: 5px solid var(--light-color);
}

.swiper-img-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide:hover .swiper-img-overlay{
    opacity: 0.9;
}

.overlay-text{
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
}

.swiper-button-next::after, .swiper-button-prev::after{
    color: var(--primary-color);
}

.swiper-pagination-bullet-active{
    background-color: var(--primary-color) !important;
}

@media(max-width: 960px){
    .swiper {
        width: 100%;
        height: 100%;
        min-height: 150px;
    }
    
    .swiper-img {
        width: 110px;
        height: 110px;
        border: 5px solid var(--light-color);
    }
    
    .overlay-text{
        font-size: 1rem;
        font-weight: 800;
    }
}




/********* products **********/

.prods-wrapper{
    margin-top: 3rem;
}

.products-sec .products-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.products-sec .product-wrapper{
/*    width: 255px;
    padding: 0.5rem;*/
    width: 255px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.products-sec .product-title{
    font-size: 2rem;
    line-height: 2rem;
    min-height: 65px;
}

.products-sec .product-price{
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.products-sec .product-price-sale{
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.products-sec .btn-order{
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0px 0px 22px -8px rgba(0,0,0,0.5);
    border-radius: 1rem;
    
    margin-top: 1rem;
    padding: 0.3rem 1.5rem;
    
    font-weight: bolder;
    font-size: 1.5rem;
}

.products-sec .btn-order:hover{
    background-color: var(--primary-hover-color);
    box-shadow: 0px 0px 22px -8px rgba(0,0,0,0.7);
}

.product-image{
    position: relative;
}

.ribbon {
    font-size: 14px;
    padding: 4px 8px;
    position: absolute;
    left: 10px;
    top: 10px;
    text-align: center;
    border-radius: 25px;
    background-color: #07F;
    color: #FFF;
    font-weight: 800;
    letter-spacing: 1px;
}

@media(max-width: 500px){
    
    .products-sec{
        background-image: url('../img/products_list_bg_sm.webp');
        background-size: contain;
        background-position: center;
        background-repeat: repeat;
        padding-top: 2rem;
    }
    
    .products-sec .mobile-title{
        text-align: center;
        font-family: "Lemon", serif;
        font-size: 1.2rem;
        color: #444;
        margin-bottom: 0rem;
    }
    
    .prods-wrapper{
        margin-top: 2rem;
    }
    
    .products-sec .product-title{
        font-size: 2rem;
        line-height: auto;
        min-height: 2rem;
    }
    
    .products-sec .product-wrapper{
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .products-sec .desktop-title{
        font-size: 2rem;
    }
}

@media(min-width: 961px) and (max-width: 1399px){
    .products-sec .product-wrapper{
        width: 310px;
        padding: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .products-sec .product-title{
        font-size: 1.7rem;
        line-height: 1.7rem;
        min-height: 35px;
    }
}