*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
.selector {
    text-transform: uppercase;
}
.box{
    width: 1106px;
    height: 615px;
    margin: auto;
}
.title{
    font-size: 1.6rem;
    color: #000;
    max-width: 1106px;
    background: white;
    margin: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    text-align: center;
}
.flex-container{
    width: 960px;
    height: 450px;
    display: flex;
    margin: 0 auto;
    background: white;
    position: relative;
}
.btn-left{
    color: gray;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border: 2px solid gray;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 70px;
    left: -25px;
}
.btn-right{
    color: gray;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border: 2px solid gray;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 70px;
    right: -25px;
    background: white;
}
.product-card {
    color: gray;
    height: 100%;
    width: 25%;
    border: 1px solid gray;
    position: relative;
}
.fast-info{
    font-size: 10px;
    color: white;
    width: 70px;
    min-height: 70px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 160px;
    background: #009de1;
    text-align: center;
}
.fast-info:empty {
    display: none; /* Приховує елемент, якщо він порожній */
}
.fast-info-new{
    font-size: 10px;
    color: white;
    width: 70px;
    min-height: 70px;
    font-weight: bold;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -35px;
    left: 160px;
    text-align: center;
    background: #86b022;
}
.product-section{
    width: 90%;
    height: 20%;
    line-height: 100px; /* таке ж значення, як висота */
    text-align: center; /* горизонтальне вирівнювання */
    border-bottom: 1px solid gray;
    margin: auto;
}
.image {
    display: flex;
    width: 80%;
    height: 35%;
    margin: auto;
    margin-top: 10px;
}
.image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
}
.name-product{
    color: rgb(0 155 225);
    font-weight: bold;
    width: 100%;
    height: 15%;
    line-height: 100px; /* таке ж значення, як висота */
    text-align: center; /* горизонтальне вирівнювання */
}
.price{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: center;
}
.old-price{
    color: black;
    font-weight: bold;
    width: 25%;
    height: 100%;
    line-height: 50px;
    font-size: 12px;
    text-align: right;
    text-decoration: line-through;
}
.old-price:empty {
    display: none; /* Приховує елемент, якщо він порожній */
}
.current-price{
    color: #000;
    font-weight: bold;
    width: 27%;
    height: 100%;
    line-height: 47px;
    text-align: left;
    padding-left: 4px;
}
.buy-button{
    font-size: 13px;
    font-weight: bold;
    color: black;
    width: 150px;
    min-height: 40px;
    background: yellow;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.red-buy-button{
    font-size: 13px;
    font-weight: bold;
    color: black;
    width: 150px;
    min-height: 40px;
    background: #cc3399;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}