h1{
    font-size: 2.5rem;
    font-family: "Lemon", serif;
    color: var(--primary-color);
}

.prod-image{
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    object-fit: cover;
    min-height: 300px;
}

.prod-image:hover{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.prod-price{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.has-sale-price{
    text-decoration: line-through;
    color: #777;
    font-size: 1.2rem;
}

.sale-price{
    color: red;
}



#bs_product_form{
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid #DDD;
}

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

#bs_product_form .form-label{
    font-size: 1.2rem;
    font-weight: bolder;
}

.nextMonthDay{
    color: #090 !important;
}

.order-price-wrapper{
    font-size: 1.2rem;
}

.flatpickr-day.selected{
    background-color: #0B0;
    border-color: #0B0;
}

.flatpickr-day.selected:hover{
    background-color: #0D0;
    border-color: #0D0;
}

.flatpickr-day{
    color: #0B0;
}

.kiegeszito-msg{
    font-size: 1.2rem;
    font-weight: 600;
}

@media(max-width: 960px){
    h1{
        font-size: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .prod-price{
        font-size: 1.2rem;
    }
    
    #bs_product_form{
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    #product-desc{
        overflow: hidden;
        height: 0;
        transition: all 0.7s ease-in-out;
    }
}


/********** kiegészítők **********/

.cross-sel-title{
    font-size: 2.5rem;
    font-family: "Lemon", serif;
    color: var(--primary-color);
    font-weight: 800;
}

.cross-sel-subtitle{
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
}

.cross-products-row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.cross-product-wrapper{
    width: 255px;
    padding: 0.5rem;
    text-align: center;
}

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

.cross-product-price{
    font-weight: 800;
    font-size: 1.2rem;
}

.cross-product-price-sale{
    font-weight: 800;
    font-size: 1.2rem;
}

.cross-product-url{
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.cross-product-url:hover{
    color: #BBB;
}

.cross-product-image{
    min-height: 250px;
    border-radius: 8px;
}

#cross-sel-sec .btn-order{
    font-size: 1rem !important;
}
#cross-sel-sec .btn-order i{
    font-size: 0.8rem !important;
}

@media(max-width: 500px){
    .cross-products-row{
        margin-top: 1.5rem;
    }
    
    .cross-product-title{
        font-size: 2rem;
        line-height: auto;
        min-height: 2rem;
    }
    
    .cross-product-wrapper{
        width: 100%;
        margin-bottom: 1.5rem;
        
    }
}