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

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

/* ===== Helmixin palette (SEOX-1816) — pixel-sampled from Figma макет ===== */
:root {
    /* Primary buy CTA (.big-button / KOPEN / form submit): PINK gradient, dark text (#28261b) */
    --big-button-gradient: linear-gradient(90deg, #F6C7DA 0%, #FB5FA9 100%);
    /* Secondary CTA (.big-button.green-btn / read-more) + soft section bg + green accents */
    --accent-green: #70AE2D;
    --accent-green-dark: #5C8F26;
    --accent-green-soft: #EDF7EA;
    --accent-green-border: #5C8F26;
    /* price/timer/discount red stays --standarts-red #f42f29 (matches макет) */
}

/* Stock multi-1 overrides.css hardcodes an ORANGE .big-button bg + GREEN hero H1.
   Re-point the CTA to the pink gradient var, and make headings DARK per макет
   (макет H1 = #28261b, 0 green; brand name is NOT colour-highlighted). */
.big-button {
    background: var(--big-button-gradient);
}
#start h1 {
    color: var(--texts-black);
}
#start .selected,
.selected {
    background: none;
    -webkit-text-fill-color: var(--texts-black);
    color: var(--texts-black);
}

/* Old price struck through (per template request) */
.price__previous-value p:last-child {
    text-decoration: line-through;
}
