/** Нужен для быстрых фиксов типа "подровнять" или "подвинуть" **/

:root {
    --primary-yellow: #E6F1E0;
}


#start .section__item.yellow {
    background: #F8E3D0;
}


.big-button {
    background: linear-gradient(90deg, #F2D8B0 0%, #FF934B 100%);
}

.big-button.black {
    background: linear-gradient(90deg, #FFF 0%, #DCECFF 100%);
}

#start h1 {
    color: var(--accent-green-dark);
}

#start .selected {
    -webkit-text-fill-color: var(--accent-green-dark);
}

.selected {
    background: var(--accent-green-dark);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SEOX-2716 Keto Prime Pro brand patch */
:root {
    /** Палитра макета Keto Prime Pro: голубой бренд + оранжевые блоки перелинковки */
    --start-accent: #387D99;
    --big-button-gradient: linear-gradient(90deg, #5AC4EF 0%, #5AC4EF 100%);
    --accent-green: #E99D5F;
    --accent-green-dark: #D98543;
    --accent-green-soft: #FFFBF4;
    --accent-green-border: #F2C097;
    --primary-yellow: #E3F0F6;
}

/* CTA: голубая кнопка макета, белый текст */
.big-button,
.big-button.green-btn {
    background: #5AC4EF;
    color: #fff;
}
.big-button:hover,
.big-button.green-btn:hover {
    background: #5AC4EF;
    filter: brightness(0.93);
}
.big-button.black {
    background: linear-gradient(90deg, #fff 0%, #DCECFF 100%);
    color: #28261B;
}

/* Заголовок hero и бренд-хайлайт — синий из макета */
#start h1 {
    color: #387D99;
}
#start .selected {
    -webkit-text-fill-color: #387D99;
}
.selected {
    background: #387D99;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Стат-карточки hero: белая / светло-серая / светло-голубая (по макету) */
#start .section__item.yellow {
    background: #F5F5F4;
}
#start .section__item.black {
    background: #CFE7F2;
    color: #28261B;
}

/* Панель акции: 3 упаковки (по макету) */
.qty-select {
    display: flex;
    gap: 12px;
    width: 100%;
}
.qty-card {
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px 12px;
    border: 2px solid #EDEDEC;
    border-radius: 14px;
    background: #F9F7F7;
    cursor: pointer;
    text-align: center;
}
.qty-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.qty-radio {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border: 2px solid #C7C7C7;
    border-radius: 50%;
    background: #fff;
}
.qty-card:has(input:checked) {
    border-color: #5AC4EF;
    background: #E0F2FC;
}
.qty-card:has(input:checked) .qty-radio {
    border-color: #5AC4EF;
    background: radial-gradient(circle, #fff 0 4px, #5AC4EF 5px);
}
.qty-card--best:has(input:checked) {
    border-color: #5FD5AD;
    background: #EFFCF5;
}
.qty-card--best:has(input:checked) .qty-radio {
    border-color: #22C55E;
    background: radial-gradient(circle, #fff 0 4px, #22C55E 5px);
}
.qty-card__title {
    font-weight: 700;
    font-size: 15px;
    color: #28261B;
    text-transform: uppercase;
}
.qty-card__img {
    height: 96px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.qty-card__img img {
    height: 96px;
    width: auto;
    object-fit: contain;
}
.qty-card__unit {
    display: block;
    background: #183169;
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.3;
    border-radius: 6px;
    padding: 5px 8px;
    width: 100%;
}
.qty-card__total {
    display: block;
    background: #fff;
    color: #183169;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.3;
    border-radius: 6px;
    padding: 5px 8px;
    width: 100%;
}
.qty-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #22C55E;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
    z-index: 2;
}
@media (max-width: 560px) {
    .qty-select {
        flex-direction: column;
    }
}

/* Hero и #reg: карта заказа по центру, без бокового пэкшота (макет) */
#start .section__main-container .section__inner-container:not(.top) {
    justify-content: center;
}
#start .section__form--tracklink {
    max-width: 820px;
    width: 100%;
}
/* SEOX-2716 #reg: панель как в hero */
#reg .section__inner-container.rounded.shadowed {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
#reg .section__inner-container.large-width {
    width: 100%;
    max-width: 820px;
}
#reg .section__form--tracklink {
    width: 100%;
    max-width: 820px;
    margin-inline: auto;
    background: #fff;
}

/* offer, шаг 1: пэкшот вместо формы (макет) */
.step-packshot {
    display: flex;
    justify-content: center;
    padding: 4px 0 8px;
}
.step-packshot img {
    height: 128px;
    width: auto;
    object-fit: contain;
}

