.product-sec{
    padding: 4rem 0;
}

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;
}

.form-select{
    font-size: 1.2rem;
}

.form-control{
    font-size: 1.2rem;
}

.nextMonthDay{
    color: #090 !important;
}

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

.flatpickr-day.selected{
    background-color: #0B0;
    border-color: #0B0;
    font-family: "Roboto", sans-serif;
}

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

.flatpickr-day{
    color: #0B0;
    font-family: "Roboto", sans-serif;
}

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

.btn-order{
    background-color: var(--primary-color);
    color: #FFF;
}

@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;
    }
}

/*************** allergének **********/

.allergenek-wrapper{
    margin-top: 4rem;
    font-family: "Roboto", sans-serif;
}


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

.cross-sel-sec{
    padding: 5rem 0;
    background-image: url('../img/lindareggeli_hatter.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cross-products-text{
    margin-top: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
    
    background-color: #FFF;
    border-radius: 2rem;
    padding: 2rem 4rem;
    width: fit-content;
}

.cross-sel-title{
    font-size: 4rem;
    font-weight: 800;
}

.cross-sel-subtitle{
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 auto;
}


.cross-product-wrapper{
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    background-color: var(--primary-color);
    border-radius: 2.2rem;
    padding: 1rem;
}

.cross-product-img-wrapper{
    overflow: hidden;
    position: relative;
    border-radius: 2rem;
}

.cross-product-img{
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 250px;
    transform: scale(1);
    transition: all 0.2s;
}

.cross-product-wrapper:hover .cross-product-img{
    transform: scale(1.1);
}

.cross-product-body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    
    background-color: var(--primary-color);
    text-align: center;
}

.cross-product-title{
    font-size: 2rem;
    color: #FFF;
    text-decoration: none;
    font-weight: 900;
    
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.cross-product-body-inner{
    background-color: #FFF;
    border-radius: 2rem;
    padding: 2rem 0;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}


.cross-product-price{
    color: var(--primary-color);
    font-size: 1.6rem;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.7px;
    text-decoration: none;
    font-weight: 600;
}

.cross-product-price.text-decoration-line-through{
    color: var(--secondary-bg-color);
    font-weight: 500;
}

.cross-price-sale-title{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.cross-sel-sec .btn-order{
    margin-top: 1rem;
}

@media(max-width: 500px){
    .cross-products-text{
        width: 100%;
    }
    
    .cross-sel-title{
        font-size: 3rem;
        font-weight: 900;
    }
    
    .cross-sel-subtitle{
        font-size: 1.4rem;
        line-height: auto;
        font-weight: 600;
    }
    
    .cross-sel-sec{
        background-attachment: fixed;
    }
}