/* overrides.css — сюда добавляй стили для перезаписи */

.selected {
    color: var(--primary-yellow, #2F57A8);
}

h1 .selected {
    text-transform: uppercase;
}


.big-button, form .big-button{
    border-radius: 50px;
    background: var(--primary-orange_lin, linear-gradient(270deg, #FFC561 0%, #FFDFAD 100%));
}


.section__delivery {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 2px;
    background: #D5D4D4;
}

.section__delivery p {
    color: #6B6B6B;

    text-align: center; 
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; 
}

.section__image-card .section__delivery img{
    width: auto;
    height: auto;
    min-height: auto;
}

#composition .section__image-container-center{
    max-width: none;
    width: auto;
    display: flex;
    align-self: stretch;
    justify-content: center;
    align-items: center;
}

/* Розтягуємо центральний блок по висоті сусідніх колонок у flex-ряду */
#composition .section__row-container{
    align-items: stretch;
}

#composition .section__image-container-center img{
    height: 100%;
    max-height: 100%;
    width: auto;
    /* max-width: 100%; */
    object-fit: contain;
}

/* На мобільних зазвичай блоки стають в колонку — повертаємо природну висоту */
@media screen and (max-width: 767px){
    #composition .section__image-container-center{
        align-self: auto;
    }

    #composition .section__image-container-center img{
        height: 300px;
        width: 100%;
    }
}