#add-to-cart-popup{
    display: none;
    position: fixed;
    bottom: 20vh;
    /* right: 0px; */
    width: 100%;
    text-align: center;
    margin: 0 auto;
    /* background-color: rgb(76, 175, 80); */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 10000;
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#popup-message{
    margin: 0 auto;
    width: 50%;
    display: inline-block;
    position: relative;
    background-color: rgb(76, 175, 80);
    padding: 20px;
}

#popup-close-button{
    margin: 0 auto;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    cursor: pointer;
    /* width: 50%; */
    vertical-align: middle;
}

.youtube-video__block{
    display: inline-flex;
    width: 100%;
}

.youtube-video__video{
    /* gap: 20px; */
    justify-content: center;
    display: inline-flex;
    width: 25%;
}

@media (min-width: 768px) {
    .bg_reviews{
        width: 80%;
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 стовпчики */
        gap: 20px; /* відстань між відгуками */
        margin: 0 auto;
    }

    .bg_review{
        align-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .bg_reviews {
        width: 80%;
        display: block;
    }

    .bg_review {
        margin: 20px 0;
        width: 90%;
    }

    .bg_review:nth-of-type(2n){
        float: right
    }

    .bg_review:nth-of-type(2n+1){
        float: left
    }
    
}

.info-page{
    width: 90%;
    margin: 0 auto;
}

.cookie_notice__details{
    background: #fff;
    border: 1.5px solid #3cb371;
    color: #3cb371;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1em;
    cursor: pointer;
    transition: 0.25s;
}

.cookie_notice__accept{
    background: #3cb371;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1em;
    cursor: pointer;
    transition: 0.25s;
    
}

#cookie-notice{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    border-radius: 14px;
    padding: 28px 40px;
    max-width: 430px;
    width: 96vw;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    color: #282828;
}

.cookie_notice__title{
    font-size: 1.08em;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: center;
}

.cookie_notice__text{
    font-size: 1em;
    color:#444;
    text-align: center;
}

.cookie_notice__text a{
    color: #3cb371;
    text-decoration: none;
}

.cookie_notice__buttons{
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

@media screen and (max-width: 850px) {
    .elementdetail .info {
        width: 100%;
        display: inline-flex;
        flex-direction: column;
        margin-top: 40px;
    }

    .elementdetail .info h1{
        display: block;
        height: auto;
    }
}