*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
    --green: #70b941;
    --green-dark: #1b5e20;
    --green-light: #e8f5e9;
    --accent: #43a047;
    --text: #1a1a1a;
    --text-light: #757575;
    --bg: #f8f8f8;
    --bg2: #f4f4f4;
    --white: #fff;
    --border: #f4f4f4;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,.07);
    --shadow-hover: 0 8px 32px rgba(0,0,0,.1);
    --max-width: 1280px;
    --gap: 18px;
    --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gap); }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: var(--radius); font-weight: 600;
    font-size: .95rem; border: 2px solid transparent; cursor: pointer;
    transition: all .2s; text-decoration: none; gap: 8px;
}
.btn--primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--lg { padding: 14px 36px; font-size: 1.05rem; }
.btn--sm { padding: 8px 18px; font-size: .82rem; }
.btn--white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn--white:hover { background: var(--green-light); border-color: var(--green-light); }

/* ─── TOPBAR ─── */
.topbar {
    background: linear-gradient(90deg, var(--green), var(--accent));
    color: var(--white); font-size: .9rem; line-height: 1;
}
.topbar__inner {
    display: flex; align-items: center; gap: 12px; padding: 8px var(--gap);
    flex-wrap: wrap;
}
.topbar__text { display: flex; align-items: center; gap: 6px; font-weight: 500; }
.topbar__icon { flex-shrink: 0; opacity: .8; }
.topbar__btn {
    background: var(--white); color: var(--green-dark); padding: 4px 14px;
    border-radius: 20px; font-weight: 700; font-size: .8rem; white-space: nowrap;
    transition: all .2s; letter-spacing: .3px;
}
.topbar__btn:hover { background: var(--green-light); color: var(--green-dark); }
.topbar__partner { margin-left: auto; opacity: .75; font-size: .8rem; white-space: nowrap; }

/* ─── HEADER ─── */
.header { background: var(--white); border-bottom: 1px solid var(--border); }
.header__inner {
    display: flex; align-items: center; gap: 14px; height: 56px;
}
.header__logo { display: flex; flex-direction: column; flex-shrink: 0; line-height: 1; }
.logo-text { font-size: 1.5rem; color: var(--text); letter-spacing: -.5px; }
.logo-text strong { color: var(--green); font-weight: 800; }
.logo-sub { font-size: .6rem; color: var(--text-light); letter-spacing: .2px; margin-top: 4px; }

.header__city {
    display: flex; align-items: center; gap: 5px; padding: 6px 12px;
    border: 1px solid var(--border); border-radius: 8px; background: none;
    cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--green-dark);
    transition: all .2s; white-space: nowrap; flex-shrink: 0;
}
.header__city:hover { border-color: var(--green); background: var(--green-light); }
.header__city svg { color: var(--green); flex-shrink: 0; }

.header__phone { display: flex; flex-direction: column; flex-shrink: 0; line-height: 1; }
.header__phone-label { font-size: .72rem; color: var(--text-light); margin-bottom: 2px; }
.header__phone-num {
    background: none; border: none; cursor: pointer; font-size: .9rem;
    font-weight: 700; color: var(--text); letter-spacing: .3px; text-align: left;
    padding: 0; transition: color .2s;
}
.header__phone-num:hover { color: var(--green); }
.header__phone-num.revealed { cursor: default; }

.header__search { display: flex; flex: 1; max-width: 300px; position: relative; }
.search-input {
    width: 100%; padding: 8px 36px 8px 14px; border: 1px solid var(--border);
    border-radius: 8px; font-size: .9rem; background: var(--bg); outline: none;
    transition: border-color .2s;
}
.search-input:focus { border-color: var(--green); }
.search-btn {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 4px;
    color: var(--text-light); transition: color .2s;
}
.search-btn:hover { color: var(--green); }

.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

.header__globe {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
    background: none; cursor: pointer; color: var(--text-light); transition: all .2s;
}
.header__globe:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

.lang-switch { position: relative; }
.lang-switch__current {
    display: flex; align-items: center; gap: 5px;
    padding: 5px 10px; border: 1px solid var(--border); border-radius: 8px;
    font-size: .8rem; font-weight: 600; background: var(--white); cursor: pointer;
    color: var(--text); transition: border-color .2s, box-shadow .2s; user-select: none;
}
.lang-switch__current:hover { border-color: var(--green); }
.lang-switch.open .lang-switch__current { border-color: var(--green); box-shadow: 0 0 0 2px rgba(46,125,50,.15); }
.lang-switch__arrow { transition: transform .2s; flex-shrink: 0; opacity: .5; }
.lang-switch.open .lang-switch__arrow { transform: rotate(180deg); }
.lang-switch__label { font-size: .9rem; font-weight: 700; letter-spacing: .3px; }
.lang-switch__flag.fi { width: 22px; height: 16px; border-radius: 3px; flex-shrink: 0; display: inline-block; }

.lang-switch__menu {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12); z-index: 300;
    width: 340px; padding: 10px 0 6px; overflow: hidden;
    animation: langMenuIn .15s ease;
}
@keyframes langMenuIn { from { opacity:0; transform:translateY(-6px) } to { opacity:1; transform:translateY(0) } }
.lang-switch.open .lang-switch__menu { display: block; }

.lang-switch__group { padding: 0 8px 4px; }
.lang-switch__group + .lang-switch__group { border-top: 1px solid var(--border); padding-top: 4px; margin-top: 2px; }
.lang-switch__group-label {
    font-size: .72rem; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: .9px;
    padding: 6px 8px 4px; pointer-events: none;
}
.lang-switch__group-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.lang-switch__item {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 10px; font-size: .8rem; font-weight: 500;
    color: var(--text); transition: background .12s, color .12s;
    border-radius: 8px; white-space: nowrap; min-width: 0;
}
.lang-switch__item:hover { background: var(--green-light); color: var(--green-dark); }
.lang-switch__item.active { color: var(--green); font-weight: 700; background: var(--green-light); }
.lang-switch__native { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.lang-switch__code {
    font-size: .72rem; font-weight: 700; color: var(--text-light);
    letter-spacing: .4px; flex-shrink: 0;
}
.lang-switch__item.active .lang-switch__code { color: var(--green); }

.header__partner-btn {
    display: flex; align-items: center; gap: 6px; padding: 7px 16px;
    background: var(--green); color: var(--white); border-radius: 8px;
    font-size: .9rem; font-weight: 700; white-space: nowrap; transition: all .2s;
}
.header__partner-btn:hover { background: var(--green-dark); color: var(--white); }
.header__partner-btn svg { flex-shrink: 0; }

.header__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.header__burger span { display: block; width: 22px; height: 2px; background: var(--text); transition: .2s; }

/* ─── MAIN NAV ─── */
.main-nav {
    background: var(--white); border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    overflow: visible;
}
.main-nav__inner {
    display: flex; align-items: stretch;
    justify-content: space-between;
}
.main-nav__link {
    padding: 11px 16px; font-size: .9rem; font-weight: 600; color: var(--text);
    white-space: nowrap; border: none; background: none; cursor: pointer;
    transition: color .2s, background .2s; letter-spacing: .2px;
    display: flex; align-items: center;
}
.main-nav__link:hover { color: var(--green); background: var(--green-light); }
.main-nav__link--dd::after { content: '▾'; margin-left: 5px; font-size: .6em; opacity: .5; }
.main-nav__dropdown { position: relative; display: flex; }
.main-nav__dd-menu {
    display: none; position: absolute; top: 100%; left: 0; background: var(--white);
    border: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px 0; min-width: 240px; box-shadow: var(--shadow-hover); z-index: 200;
    max-height: 440px; overflow-y: auto; overflow-x: hidden;
}
.main-nav__dd-menu--brands { min-width: 300px; columns: 2; column-gap: 0; }
.main-nav__dropdown:hover .main-nav__dd-menu { display: block; }
.main-nav__dd-item {
    display: flex; justify-content: space-between; padding: 8px 18px; font-size: .85rem;
    color: var(--text); transition: background .15s; break-inside: avoid;
}
.main-nav__dd-item:hover { background: var(--green-light); color: var(--green); }
.main-nav__dd-item--parent { font-weight: 700; font-size: .87rem; border-bottom: 1px solid var(--border); }
.main-nav__dd-sub {
    display: block; padding: 5px 18px 5px 28px; font-size: .8rem; color: var(--text-light);
    transition: color .15s;
}
.main-nav__dd-sub:hover { color: var(--green); }
.main-nav__dd-group { border-bottom: 1px solid var(--border); padding-bottom: 4px; margin-bottom: 4px; }
.main-nav__dd-group:last-child { border: none; margin: 0; padding: 0; }
.main-nav__dd-count { color: var(--text-light); font-size: .75rem; }

/* ─── CITY POPUP ─── */
.city-popup { display: none; position: fixed; inset: 0; z-index: 9999; }
.city-popup.active { display: flex; align-items: center; justify-content: center; }
.city-popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.city-popup__panel {
    position: relative; background: var(--white); border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2); width: 540px; max-width: 94vw;
    max-height: 88vh; display: flex; flex-direction: column; overflow: visible;
    animation: popupSlide .25s ease;
}
@keyframes popupSlide { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.city-popup__header {
    display: flex; align-items: center; gap: 10px;
    padding: 18px 20px 0; flex-shrink: 0;
}
.city-popup__title {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.05rem; font-weight: 700; flex: 1;
}
.city-popup__title svg { color: var(--green); flex-shrink: 0; }
.city-popup__close {
    background: none; border: none; font-size: 1.6rem; color: var(--text-light);
    cursor: pointer; line-height: 1; padding: 4px 8px; transition: color .2s; flex-shrink: 0;
}
.city-popup__close:hover { color: var(--text); }

/* Body */
.city-popup__body { padding: 16px 20px 20px; position: relative; }

/* ─── Geo selects (country / city / language) ─── */
.geo-selects { display: flex; flex-direction: column; gap: 14px; }

.geo-select { position: relative; }
.geo-select__label {
    font-size: .68rem; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: .9px; margin-bottom: 6px;
}

.geo-select__trigger {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px;
    background: var(--white); cursor: pointer; text-align: left;
    transition: border-color .2s, box-shadow .2s; font-family: inherit; font-size: inherit;
}
.geo-select__trigger:hover { border-color: var(--green); }
.geo-select__trigger.selected { border-color: var(--green); }
.geo-select.open .geo-select__trigger { border-color: var(--green); box-shadow: 0 0 0 2px rgba(46,125,50,.12); }
.geo-select__trigger--disabled { opacity: .5; cursor: default; pointer-events: none; }

.geo-select__flag { width: 24px; height: 18px; border-radius: 3px; flex-shrink: 0; display: inline-block; }
.geo-select__pin { color: var(--green); flex-shrink: 0; }
.geo-select__text {
    flex: 1; font-size: .92rem; font-weight: 600; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.geo-select__trigger:not(.selected) .geo-select__text { color: var(--text-light); font-weight: 400; }
.geo-select__arrow {
    color: var(--text-light); flex-shrink: 0;
    transition: transform .2s;
}
.geo-select.open .geo-select__arrow { transform: rotate(180deg); }

/* Dropdown — absolute overlay */
.geo-select__dropdown {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: var(--white); border: 1.5px solid var(--green); border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.13); z-index: 20;
    max-height: 260px; flex-direction: column; overflow: hidden;
}
.geo-select.open .geo-select__dropdown {
    display: flex;
    animation: geoSelectIn .15s ease;
}
@keyframes geoSelectIn { from { opacity:0; transform:translateY(-4px) } to { opacity:1; transform:translateY(0) } }

.geo-select__search-wrap {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0;
    background: var(--white);
}
.geo-select__search-wrap svg { color: var(--text-light); flex-shrink: 0; }
.geo-select__search-wrap input {
    flex: 1; border: none; outline: none; font-size: .88rem;
    background: none; color: var(--text); font-family: inherit;
}

.geo-select__options {
    flex: 1; overflow-y: auto; padding: 4px 0; background: var(--white);
}

.geo-select__option {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 9px 14px; border: none; background: none; cursor: pointer;
    text-align: left; transition: background .12s; color: var(--text);
    text-decoration: none; font-family: inherit; font-size: inherit;
}
.geo-select__option:hover { background: var(--green-light); color: var(--green-dark); }
.geo-select__option.active { background: var(--green-light); color: var(--green-dark); font-weight: 600; }

.geo-select__opt-flag { width: 22px; height: 16px; border-radius: 3px; flex-shrink: 0; display: inline-block; }
.geo-select__opt-name { flex: 1; font-size: .88rem; font-weight: 500; }
.geo-select__option.active .geo-select__opt-name { font-weight: 600; }
.geo-select__opt-badge {
    font-size: .72rem; color: var(--text-light); background: var(--bg2);
    padding: 2px 7px; border-radius: 20px; font-weight: 600; flex-shrink: 0;
}

/* Search result country buttons */
.geo-sr-country {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px; color: var(--text);
    transition: background .12s; background: var(--bg);
    width: 100%; border: none; cursor: pointer; text-align: left;
    font-family: inherit; font-size: inherit;
}
.geo-sr-country:hover { background: var(--green-light); color: var(--green-dark); }
#geoSearchResults { max-height: 55vh; overflow-y: auto; }

/* ─── Global search ─── */
.geo-search-wrap {
    display: flex; align-items: center; gap: 8px;
    margin: 14px 20px 0; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: 10px;
    background: var(--bg); transition: border-color .2s; flex-shrink: 0;
}
.geo-search-wrap:focus-within { border-color: var(--green); background: var(--white); }
.geo-search-wrap svg { color: var(--text-light); flex-shrink: 0; }
.geo-search-wrap input {
    flex: 1; border: none; background: none; outline: none;
    font-size: .92rem; color: var(--text);
}
.geo-search-clear {
    background: none; border: none; cursor: pointer; padding: 2px;
    color: var(--text-light); transition: color .15s; display: flex; align-items: center;
}
.geo-search-clear:hover { color: var(--text); }

/* ─── Search results ─── */
.geo-sr-label {
    font-size: .68rem; font-weight: 700; color: var(--text-light);
    text-transform: uppercase; letter-spacing: .9px;
    padding: 4px 0 8px;
}
.geo-sr-label:not(:first-child) { margin-top: 16px; }
.geo-sr-countries { display: flex; flex-direction: column; gap: 2px; }
.geo-sr-cities { display: flex; flex-direction: column; gap: 2px; }
.geo-sr-city {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px; color: var(--text);
    transition: background .12s; background: var(--bg);
}
.geo-sr-city:hover, .geo-sr-city.active { background: var(--green-light); color: var(--green-dark); }
.geo-sr-city-flag { width: 20px; height: 14px; border-radius: 2px; flex-shrink: 0; }
.geo-sr-city-info { display: flex; flex-direction: column; gap: 1px; }
.geo-sr-city-name { font-size: .88rem; font-weight: 600; }
.geo-sr-city-country { font-size: .72rem; color: var(--text-light); }
.geo-sr-city:hover .geo-sr-city-country, .geo-sr-city.active .geo-sr-city-country { color: var(--green); }


/* Loading */
.geo-loading { display: flex; align-items: center; justify-content: center; padding: 20px; }
.geo-spinner {
    width: 24px; height: 24px; border: 3px solid var(--border);
    border-top-color: var(--green); border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.geo-empty { color: var(--text-light); font-size: .85rem; padding: 8px 0; }


/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, var(--green), var(--accent));
    color: var(--white); text-align: center; padding: 64px 20px;
}
.hero__title { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; }
.hero__title span { color: var(--green-light); }
.hero__subtitle { font-size: 1.1rem; opacity: .9; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── PARTNER CTA BLOCK ─── */
.partner-cta {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
    color: var(--white); border-radius: var(--radius); padding: 40px;
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.partner-cta__title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.partner-cta__desc { font-size: .92rem; opacity: .9; line-height: 1.6; max-width: 500px; }
.partner-cta__features {
    display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap;
}
.partner-cta__feat {
    display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600;
    background: rgba(255,255,255,.15); padding: 6px 14px; border-radius: 20px;
}
.partner-cta__feat svg { flex-shrink: 0; }

.partner-mini {
    background: var(--green-light); border: 1px solid rgba(46,125,50,.15);
    border-radius: var(--radius); padding: 16px 20px;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.partner-mini__text { font-size: .88rem; color: var(--green-dark); font-weight: 500; flex: 1; }

/* ─── SECTIONS ─── */
.section { padding: 48px 0; }
.section--alt { background: var(--white); }
.section__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.section__cta { text-align: center; margin-top: 32px; }

/* ─── SECTION TILES (homepage) ─── */
.sections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.section-tile {
    display: flex; flex-direction: column; padding: 20px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius); transition: all .2s;
}
.section-tile:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.section-tile__name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.section-tile__subs { font-size: .8rem; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

/* ─── PRODUCTS GRID ─── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

/* ─── PRODUCT CARD ─── */
.card {
    background: var(--white); border-radius: 12px; overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    display: flex; flex-direction: column;
}
.card--archived { opacity: .65; }
.card--archived:hover { opacity: .8; }
.card__media { display: block; flex-shrink: 0; }
.card__img-wrap { position: relative; aspect-ratio: 1; overflow: hidden;}
.card__img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s; padding: 8px; }
.card:hover .card__img { transform: scale(1.05); }
.card__stickers { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.card__badge { position: absolute; z-index: 2; padding: 4px 10px; border-radius: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .3px; }
.card__badge--discount { top: 10px; right: 10px; background: #e53935; color: var(--white); }
.card__badge--archived { top: 10px; left: 10px; background: #9e9e9e; color: var(--white); font-size: .68rem; }

.sticker {
    padding: 3px 9px; border-radius: 20px; font-size: .65rem; font-weight: 700;
    letter-spacing: .4px; line-height: 1.4; text-transform: uppercase;
}
.sticker--new { background: var(--green); color: var(--white); }
.sticker--hit { background: #ff9800; color: var(--white); }
.sticker--sale { background: #e53935; color: var(--white); }
.sticker--limited { background: #7b1fa2; color: var(--white); }
.sticker--thermo { background: #1565c0; color: var(--white); }
.sticker--eco { background: #00897b; color: var(--white); }
.sticker--bestseller { background: #f57c00; color: var(--white); }
.sticker--premium { background: linear-gradient(135deg, #6d4c41, #8d6e63); color: var(--white); }

.card__body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: .88rem; font-weight: 600; margin-bottom: 3px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-align: center; min-height: 2.4em; color: var(--text); }
.card__brand { font-size: .68rem; color: var(--green); text-transform: uppercase; letter-spacing: .8px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.card__title-link { color: var(--text); display: block; text-align: center; }
.card__title-link:hover .card__title { color: var(--green); }

.card__colors { display: flex; gap: 5px; justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }
.card__color-dot {
    width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid transparent;
    flex-shrink: 0; cursor: pointer; padding: 0; transition: transform .15s; box-shadow: 0 0 0 1px var(--border);
}
.card__color-dot:hover { transform: scale(1.2); box-shadow: 0 0 0 2px var(--green); }
.card__color-dot.active { box-shadow: 0 0 0 1.5px var(--white), 0 0 0 3px var(--green); }
.card__color-more { font-size: .68rem; color: var(--text-light); display: flex; align-items: center; }

.card__bottom { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); }
.card__price-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 6px 0; }
.card__old-price { font-size: .82rem; color: #bdbdbd; text-decoration: line-through; font-weight: 400; }
.card__price { font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.card__pv { font-size: .76rem; color: var(--text-light); background: var(--bg); padding: 2px 7px; border-radius: 20px; font-weight: 600; }
.card__rating { display: inline-flex; align-items: center; gap: 2px; font-size: .78rem; font-weight: 700; color: var(--text-light); margin-left: auto; }
.card__star { color: #f9a825; font-size: .85rem; line-height: 1; }

.card__actions { display: flex; gap: 8px; margin-top: 10px; }
.card__btn {
    flex: 1; text-align: center; padding: 9px 6px;
    border-radius: 8px; font-size: .9rem; font-weight: 600;
    transition: all .2s; display: inline-flex; align-items: center; justify-content: center; gap: 4px;
}
.card__btn--details { background: var(--bg2); color: var(--text); }
.card__btn--details:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.card__btn--buy {
    background: var(--green); color: var(--white); border: 1.5px solid var(--green);
    display: inline-flex; align-items: center; justify-content: center; gap: 5px;
}
.card__btn--buy:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.card__btn--buy svg { width: 14px; height: 14px; flex-shrink: 0; }
.card__btn--archived { background: #f5f5f5; color: #9e9e9e; border: 1.5px solid var(--border); }
.card__btn--archived:hover { background: #eeeeee; color: #757575; }

/* ─── CATALOG TOOLBAR ─── */
.catalog-toolbar {
    display: flex; gap: 20px; align-items: flex-end; flex-wrap: wrap;
    padding: 16px 0; margin-bottom: 20px; border-bottom: 1px solid var(--border);
}
.toolbar-filter { display: flex; flex-direction: column; gap: 5px; }
.toolbar-filter--right { margin-left: auto; }
.toolbar-label { font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .6px; font-weight: 700; }
.toolbar-select {
    height: 40px; padding: 0 30px 0 14px; border: 1px solid var(--border); border-radius: 8px;
    font-size: .83rem; background: var(--white); cursor: pointer; outline: none;
    appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23757575'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
    transition: border-color .2s;
}
.toolbar-select:focus { border-color: var(--green); }
.toolbar-select:hover { border-color: #bdbdbd; }

.toolbar-filter--price { position: relative; width: 220px; }
.price-slider-wrap { width: 100%; }
.price-slider { position: relative; height: 40px; }
.price-slider__rail {
    position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
    height: 4px; background: var(--border); border-radius: 2px; pointer-events: none;
}
.price-slider__track {
    position: absolute; top: 50%; transform: translateY(-50%);
    height: 4px; background: var(--green); border-radius: 2px;
    pointer-events: none; z-index: 1; left: 0;
}
.price-slider__input {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    appearance: none; -webkit-appearance: none;
    background: transparent; pointer-events: none; margin: 0; z-index: 2;
}
.price-slider__input::-webkit-slider-runnable-track { background: transparent; height: 4px; }
.price-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
    background: var(--white); border: 2.5px solid var(--green);
    cursor: grab; pointer-events: all; margin-top: -7px;
    box-shadow: 0 1px 5px rgba(0,0,0,.2); transition: transform .15s, box-shadow .15s;
}
.price-slider__input::-webkit-slider-thumb:hover,
.price-slider__input::-webkit-slider-thumb:active {
    transform: scale(1.2); box-shadow: 0 2px 10px rgba(46,125,50,.3); cursor: grabbing;
}
.price-slider__input::-moz-range-track { background: transparent; height: 4px; border: none; }
.price-slider__input::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--white); border: 2.5px solid var(--green);
    cursor: grab; pointer-events: all; box-shadow: 0 1px 5px rgba(0,0,0,.2);
}
.price-slider__values {
    position: absolute; top: 100%; right: 0; margin-top: -5px;
    font-size: .74rem; color: var(--text-light); white-space: nowrap;
}

/* ─── CATALOG PAGE ─── */
.catalog-page { padding-top: 24px; padding-bottom: 60px; }
.catalog-header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.catalog-header__title { font-size: 1.4rem; font-weight: 700; }
.catalog-header__count { color: var(--text-light); font-size: .95rem; }
.catalog-empty { text-align: center; padding: 60px 20px; color: var(--text-light); font-size: 1.1rem; }
.catalog-unavailable-note { background: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 8px; padding: 20px 24px; margin-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.catalog-unavailable-note p { margin: 0; color: var(--text-light); font-size: .95rem; }
.catalog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-tag {
    padding: 6px 16px; background-color: var(--white); border-radius: 8px;
    font-size: .82rem; color: var(--text); transition: all .15s;
}
.filter-tag:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }

/* ─── PRODUCT PAGE ─── */
.product-page { padding-top: 24px; padding-bottom: 60px; }
.product-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }

.product-gallery { position: relative; }
.product-gallery__badges {
    position: absolute; top: 12px; left: 12px; z-index: 3;
    display: flex; flex-direction: column; gap: 4px;
}
.gallery-badge {
    padding: 4px 10px; border-radius: 6px; font-size: .78rem; font-weight: 700;
    letter-spacing: .3px; line-height: 1.3; width: fit-content;
}
.gallery-badge--discount { background: #e53935; color: var(--white); }
.gallery-badge--new { background: var(--green); color: var(--white); }
.gallery-badge--limited { background: #7b1fa2; color: var(--white); }
.gallery-badge--hit { background: #ff9800; color: var(--white); }
.gallery-badge--thermo { background: #1565c0; color: var(--white); }
.gallery-badge--eco { background: #2e7d32; color: var(--white); }
.gallery-badge--bestseller { background: #f57c00; color: var(--white); }
.gallery-badge--premium { background: linear-gradient(135deg, #6d4c41, #8d6e63); color: var(--white); }

.product-gallery__slider-wrap {
    position: relative; overflow: hidden; aspect-ratio: 1;
    background: var(--white); border-radius: var(--radius);
}
.product-gallery__slider {
    display: flex; transition: transform .3s ease; height: 100%; touch-action: pan-y;
}
.product-gallery__slide {
    flex: 0 0 100%; display: flex; align-items: center; justify-content: center; cursor: zoom-in;
}
.product-gallery__img { max-width: 90%; max-height: 90%; object-fit: contain; user-select: none; -webkit-user-drag: none; }
.product-gallery__zoom-icon {
    position: absolute; bottom: 12px; right: 12px; z-index: 4;
    background: rgba(0,0,0,.45); color: var(--white);
    width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .2s; cursor: pointer; border: none;
}
.product-gallery__slider-wrap:hover .product-gallery__zoom-icon { opacity: 1; }
.product-gallery__dots { display: none; justify-content: center; gap: 6px; margin-top: 10px; }
.product-gallery__dot {
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: var(--border); cursor: pointer; padding: 0; transition: background .2s;
}
.product-gallery__dot.active { background: var(--green); width: 20px; border-radius: 4px; }
.product-gallery__thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.product-gallery__thumb {
    width: 80px; height: 80px; border: 2px solid var(--border); border-radius: 8px;
    overflow: hidden; cursor: pointer; flex-shrink: 0; background: var(--white); padding: 2px;
    transition: border-color .2s;
}
.product-gallery__thumb.active { border-color: var(--green); }
.product-gallery__thumb:hover { border-color: var(--accent); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.stars { color: #f9a825; font-size: 1rem; letter-spacing: 2px; }
.rating-value { font-weight: 600; font-size: .9rem; }
.product-info__title { font-size: 1.45rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.product-info__meta-line { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.product-info__brand { font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; color: var(--green); font-weight: 600; }
.product-info__code { font-size: .78rem; color: var(--text-light); }
.product-info__tech { font-size: .85rem; color: var(--text-light); margin-bottom: 12px; padding: 6px 12px; background: var(--green-light); border-radius: 6px; display: inline-block; }

.product-variants { margin-bottom: 14px; }
.product-variants__label { font-size: .82rem; color: var(--text-light); display: block; margin-bottom: 6px; }
.product-variants__swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
    width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border);
    cursor: pointer; transition: all .2s; display: block; padding: 0; background: none;
}
.color-swatch:hover { transform: scale(1.15); }
.color-swatch.active { border-color: var(--text); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--text); }

.product-info__short-desc { font-size: .85rem; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.product-info__price-block { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.product-info__old-price { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.product-info__price { font-size: 1.7rem; font-weight: 800; color: var(--text); }
.product-info__pv { font-size: .85rem; color: var(--text-light); border-left: 1px solid var(--border); padding-left: 10px; }
.product-info__discount { background: #e53935; color: var(--white); padding: 3px 10px; border-radius: 6px; font-size: .82rem; font-weight: 600; }
.product-info__cta { margin: 14px 0; }
.product-info__buy { width: 100%; }
.product-info__stock {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 20px; font-size: .82rem; font-weight: 700;
    margin-bottom: 14px; letter-spacing: .2px;
}
.product-info__stock--in { background: #e8f5e9; color: #2e7d32; }
.product-info__stock--out { background: #fafafa; color: #9e9e9e; border: 1px solid #e0e0e0; }

.product-no-details { background: #f8f9fa; border: 1px solid var(--border); border-radius: 8px; padding: 24px 32px; margin-bottom: 32px; text-align: center; }
.product-no-details p { margin: 0 0 12px; color: var(--text-light); }

.product-tabs { margin-bottom: 48px; }
.product-tabs__nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.product-tabs__btn {
    padding: 10px 20px; background: none; border: none; border-bottom: 2px solid transparent;
    margin-bottom: -2px; cursor: pointer; font-size: .98rem; font-weight: 500;
    color: var(--text-light); transition: all .2s;
}
.product-tabs__btn:hover { color: var(--green); }
.product-tabs__btn.active { color: var(--green); border-bottom-color: var(--green); font-weight: 600; }
.product-tabs__panel { font-size: .9rem; line-height: 1.7; }

.product-content p { margin-bottom: 12px; }
.product-content ul, .product-content ol { padding-left: 24px; margin-bottom: 14px; }
.product-content ul { list-style: none; }
.product-content ul li { position: relative; padding-left: 16px; margin-bottom: 6px; }
.product-content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.product-content ol { list-style: decimal; }
.product-content ol li { margin-bottom: 6px; }
.product-content table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: .85rem; }
.product-content table th, .product-content table td { padding: 8px 12px; border: 1px solid var(--border); text-align: left; }
.product-content table th { background: var(--green-light); font-weight: 600; }
.product-content table tr:nth-child(even) td { background: #fafafa; }
.product-content strong { font-weight: 600; }
.product-content h2 { font-size: 1.15rem; font-weight: 700; margin: 20px 0 10px; }
.product-content h3 { font-size: 1.05rem; font-weight: 600; margin: 16px 0 8px; }

.documents-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.document-card {
    display: flex; align-items: center; gap: 12px; padding: 14px 16px;
    border: 1px solid var(--border); border-radius: 8px; background: var(--white);
    transition: all .2s; color: var(--text);
}
.document-card:hover { border-color: var(--green); box-shadow: var(--shadow); color: var(--green); }
.document-card svg { flex-shrink: 0; }
.document-card__name { font-size: .85rem; font-weight: 500; }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92);
    align-items: center; justify-content: center;
    animation: lbFade .2s; display: none;
}
.lightbox.active { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox__close {
    position: absolute; top: 16px; right: 20px; background: none; border: none;
    color: var(--white); font-size: 2.5rem; cursor: pointer; opacity: .7; transition: opacity .2s;
    line-height: 1; z-index: 10;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
    position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15);
    border: none; color: var(--white); font-size: 2.5rem; cursor: pointer; padding: 8px 14px;
    border-radius: 8px; opacity: .6; transition: opacity .2s, background .2s; z-index: 10;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; background: rgba(255,255,255,.25); }
.lightbox__caption {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.8); font-size: .85rem; text-align: center;
    max-width: 80vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }
.video-card__player { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.video-card__player iframe { width: 100%; height: 100%; border: none; }
.video-card__link { display: block; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.video-card__link img { width: 100%; height: 100%; object-fit: cover; }

.kit-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 8px; }
.kit-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px; background: var(--white); border: 1px solid var(--border);
    border-radius: 6px; font-size: .85rem;
}
.kit-item__qty { color: var(--text-light); font-size: .8rem; font-weight: 600; }
.product-videos { padding-top: 0; }

/* ─── BREADCRUMBS ─── */
.breadcrumbs { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: 4px; font-size: .8rem; }
.breadcrumbs__item { display: flex; align-items: center; gap: 4px; color: var(--text-light); }
.breadcrumbs__item a { color: var(--text-light); }
.breadcrumbs__item a:hover { color: var(--green); }
.breadcrumbs__item:not(:last-child)::after { content: '/'; margin-left: 4px; color: var(--border); }
.breadcrumbs__item:last-child { color: var(--text); }

/* ─── PAGINATION ─── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pagination__link {
    display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px;
    padding: 0 10px; border-radius: 8px;
    font-size: .88rem; color: var(--text); transition: all .2s; background-color: white;
}
.pagination__link:hover { background-color: var(--green); color: var(--white); }
.pagination__link--active { background: var(--green); color: var(--white); }
.pagination__dots { display: flex; align-items: center; padding: 0 4px; color: var(--text-light); }

/* ─── FOOTER ─── */
.footer { background: #1a1a1a; color: #ccc; margin-top: auto; }
.footer__inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; padding: 48px 0; }
.footer__heading { color: var(--white); font-size: .92rem; font-weight: 600; margin-bottom: 16px; }
.footer__text { font-size: .82rem; line-height: 1.6; margin-top: 8px; }
.footer__link { display: block; font-size: .82rem; padding: 3px 0; color: #aaa; transition: color .2s; }
.footer__link:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid #333; padding: 16px 0; font-size: .78rem; color: #777; }
.footer__disclaimer { font-size: .72rem; color: #666; margin-top: 8px; }

/* ─── MAIN ─── */
.main { min-height: calc(100vh - 60px - 200px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .main-nav__dd-menu--brands { columns: 1; }
    .topbar__partner { display: none; }
}

@media (max-width: 1024px) {
    .product-top { gap: 24px; }
    .footer__inner { grid-template-columns: repeat(2, 1fr); }
    .header__phone { display: none; }
    .header__search { max-width: 240px; }
    .header__partner-btn span { display: none; }
    .header__partner-btn { padding: 8px; border-radius: 50%; }
    .header__burger { display: flex; }

    .main-nav { position: static; overflow: hidden; }
    body.menu-open .main-nav {
        display: block; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white); z-index: 999; overflow-y: auto; padding: 60px 16px 16px;
    }
    body:not(.menu-open) .main-nav__inner { overflow-x: auto; overflow-y: visible; }
    body.menu-open .main-nav__inner { flex-direction: column; justify-content: flex-start; }
    body.menu-open .main-nav__link { font-size: .95rem; padding: 12px 0; }
    body.menu-open .main-nav__dd-menu { position: static; box-shadow: none; border: none; padding-left: 16px; display: block; min-width: 0; columns: 1; border-radius: 0; }

    .partner-cta { grid-template-columns: 1fr; text-align: center; }
    .partner-cta__desc { max-width: 100%; }
    .partner-cta__features { justify-content: center; }
}

@media (max-width: 768px) {
    .topbar__inner { font-size: .7rem; }
    .topbar__btn { font-size: .68rem; padding: 3px 10px; }

    .hero { padding: 48px 20px; }
    .hero__title { font-size: 1.8rem; }
    .hero__subtitle { font-size: .95rem; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-top { grid-template-columns: 1fr; }
    .product-info__title { font-size: 1.2rem; }
    .product-info__price { font-size: 1.4rem; }

    .product-tabs__nav { overflow-x: auto; }
    .product-tabs__btn { padding: 10px 14px; font-size: .82rem; white-space: nowrap; }

    .footer__inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
    .sections-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .videos-grid { grid-template-columns: 1fr; }
    .kit-list { grid-template-columns: 1fr; }
    .catalog-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .filter-tag { flex-shrink: 0; }
    .catalog-toolbar { gap: 10px; }
    .toolbar-filter--right { margin-left: 0; }
    .card__actions { flex-direction: column; gap: 4px; }
    .documents-grid { grid-template-columns: 1fr; }
    .product-gallery__thumbs { display: none; }
    .product-gallery__dots { display: flex; }
    .product-gallery__zoom-icon { opacity: 1; background: rgba(0,0,0,.35); }

    .header__search { display: none; }
    .header__city span { display: none; }
    .city-popup__panel { border-radius: 0; max-width: 100vw; max-height: 100dvh; width: 100%; }
    .geo-select__dropdown { max-height: 220px; }

    .partner-cta { padding: 28px 20px; }
    .partner-cta__title { font-size: 1.15rem; }
    .partner-cta__features { gap: 8px; }
    .partner-cta__feat { font-size: .75rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .card__body { padding: 8px 10px 10px; }
    .card__title { font-size: .78rem; }
    .card__price { font-size: 1rem; }
    .card__old-price { font-size: .72rem; }
    .card__colors { gap: 3px; }
    .card__color-dot { width: 15px; height: 15px; }
    .card__btn { font-size: .74rem; padding: 7px 4px; }
}

/* ── Инфо-страницы (О компании, Доставка, Как купить, Контакты, FAQ) ── */
.info-page { padding: 28px 0 56px; max-width: 920px; }
.info-page__title { font-size: 1.9rem; font-weight: 800; color: var(--text); margin: 0 0 10px; line-height: 1.2; }
.info-page__intro { font-size: 1.05rem; color: var(--text-light); margin: 0 0 28px; }
.info-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; margin-bottom: 18px; box-shadow: var(--shadow); }
.info-block h2 { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin: 0 0 12px; }
.info-block p { color: var(--text); line-height: 1.7; margin: 0 0 10px; }
.info-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.info-cols .info-block { margin-bottom: 0; }
.info-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.info-checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); line-height: 1.5; }
.info-checklist li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.info-note { background: var(--green-light); border-radius: var(--radius); padding: 16px 20px; color: var(--green-dark); font-weight: 500; margin: 0 0 18px; }
.info-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.how-ways { display: flex; flex-direction: column; gap: 12px; }
.how-way { display: flex; align-items: flex-start; gap: 14px; }
.how-way__num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.how-way__text { color: var(--text); line-height: 1.55; padding-top: 3px; }
.info-steps { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 9px; color: var(--text); line-height: 1.55; }
.contacts-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.contacts-list li { display: flex; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.contacts-list li:last-child { border-bottom: 0; }
.contacts-list__label { min-width: 150px; color: var(--text-light); }
.contacts-list a { color: var(--green-dark); font-weight: 600; }

/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 20px; box-shadow: var(--shadow); }
.faq-item__q { cursor: pointer; font-weight: 600; color: var(--text); padding: 14px 0; list-style: none; position: relative; padding-right: 28px; }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; position: absolute; right: 2px; top: 12px; font-size: 1.4rem; color: var(--green); font-weight: 400; }
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a { color: var(--text-light); line-height: 1.65; padding: 0 0 16px; }

/* ── Страница Адреса РЦ ── */
.offices-stats { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 22px; }
.offices-stat { color: var(--text-light); }
.offices-stat strong { color: var(--green-dark); font-size: 1.25rem; margin-right: 4px; }
.offices-map { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow); }
.offices-map iframe { display: block; border: 0; }
.offices-section { margin-bottom: 34px; }
.offices-section__title { font-size: 1.35rem; font-weight: 700; color: var(--text); margin: 0 0 16px; }
.offices-empty { background: var(--green-light); border-radius: var(--radius); padding: 16px 20px; color: var(--green-dark); }
.offices-search-wrap { margin-bottom: 18px; }
.offices-search { width: 100%; max-width: 420px; padding: 11px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: .95rem; background: var(--white); }
.offices-search:focus { outline: none; border-color: var(--green); }
.rc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.rc-city-group { margin-bottom: 26px; }
.rc-city-group__name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.rc-city-group__count { font-size: .75rem; font-weight: 600; color: var(--green-dark); background: var(--green-light); border-radius: 20px; padding: 2px 9px; }
.rc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 9px; }
.rc-card__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rc-card__badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; padding: 3px 9px; border-radius: 6px; }
.rc-card__badge--dealer { background: var(--green-light); color: var(--green-dark); }
.rc-card__badge--shop { background: #fff3e0; color: #e65100; }
.rc-card__badge--pvz { background: #e3f2fd; color: #1565c0; }
.rc-card__num { font-size: .8rem; color: var(--text-light); }
.rc-card__addr { display: flex; gap: 8px; color: var(--text); font-weight: 500; line-height: 1.4; }
.rc-card__addr svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.rc-card__hint { font-size: .82rem; color: var(--text-light); }
.rc-card__meta { display: flex; flex-direction: column; gap: 6px; margin-top: auto; padding-top: 6px; }
.rc-card__hours, .rc-card__phone { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--text-light); }
.rc-card__hours svg, .rc-card__phone svg { flex-shrink: 0; }
.rc-card__phone { color: var(--green-dark); font-weight: 600; }
.rc-card__map { font-size: .85rem; color: var(--green); font-weight: 600; }
.main-nav__dropdown--right .main-nav__dd-menu { right: 0; left: auto; }

@media (max-width: 700px) {
    .info-cols { grid-template-columns: 1fr; }
    .info-page__title { font-size: 1.5rem; }
    .contacts-list li { flex-direction: column; gap: 2px; }
    .contacts-list__label { min-width: 0; }
    .rc-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   ПРЕМИУМ-ДИЗАЙН v2 — мировой уровень (RF + world)
   ════════════════════════════════════════════════════════════════════ */

/* ── SEO-секция (текст внизу категории/товара) ── */
.seo-section { padding: 8px 0 44px; }
.seo-text { max-width: 920px; }
.seo-text__h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 0 0 16px; line-height: 1.25; letter-spacing: -0.01em; }
.seo-text > p { color: #4a4a4a; line-height: 1.8; margin: 0 0 16px; font-size: 1.02rem; }
.seo-siblings { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 20px 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.seo-siblings__label { font-weight: 600; color: var(--text-light); font-size: .9rem; }
.seo-siblings__link { display: inline-flex; padding: 6px 14px; background: var(--green-light); color: var(--green-dark); border-radius: 20px; font-size: .85rem; font-weight: 600; transition: all .18s ease; }
.seo-siblings__link:hover { background: var(--green); color: #fff; transform: translateY(-1px); }
.seo-faq { margin-top: 28px; }
.seo-faq__title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0 0 14px; }
.rc-in-city { margin-top: 30px; padding: 24px; background: linear-gradient(135deg, var(--green-light), #f1f8e9); border-radius: 16px; border: 1px solid rgba(112,185,65,.18); }
.rc-in-city__title { display: flex; align-items: center; gap: 9px; font-size: 1.18rem; font-weight: 700; color: var(--green-dark); margin: 0 0 16px; }
.rc-in-city .rc-card { background: #fff; }
.rc-in-city__all { display: inline-block; margin-top: 16px; color: var(--green-dark); font-weight: 600; }
.rc-in-city__all:hover { color: var(--green); }

/* ── Блок городов (перелинковка + доверие) ── */
.cities-section { background: linear-gradient(180deg, #fff 0%, var(--green-light) 100%); padding: 44px 0; }
.cities-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 0 0 28px; }
.cities-trust__item { flex: 1; min-width: 150px; max-width: 240px; text-align: center; background: #fff; border-radius: 16px; padding: 22px 18px; box-shadow: 0 4px 20px rgba(27,94,32,.07); border: 1px solid rgba(112,185,65,.15); }
.cities-trust__item strong { display: block; font-size: 2.1rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.cities-trust__item span { color: var(--text-light); font-size: .9rem; font-weight: 500; }
.cities-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 auto; max-width: 1000px; }
.cities-cloud__item { display: inline-flex; padding: 7px 15px; background: #fff; border: 1px solid var(--border); border-radius: 22px; font-size: .88rem; color: #444; font-weight: 500; transition: all .18s ease; }
.cities-cloud__item:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(112,185,65,.18); }
.cities-cloud__item--active { background: var(--green); color: #fff; border-color: var(--green); pointer-events: none; }
.cities-section__cta { text-align: center; margin-top: 28px; }

/* ── Hero v2 — премиум ── */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 45%, var(--green) 100%); padding: 64px 0 72px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.14), transparent 42%), radial-gradient(circle at 12% 85%, rgba(255,255,255,.10), transparent 38%); pointer-events: none; }
.hero::after { content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero__title { font-size: 2.9rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 16px; text-shadow: 0 2px 20px rgba(0,0,0,.12); }
.hero__subtitle { font-size: 1.18rem; color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 28px; line-height: 1.55; }

/* ── Кнопки v2 ── */
.btn { transition: all .2s cubic-bezier(.4,0,.2,1); font-weight: 600; letter-spacing: .01em; }
.btn--primary { background: linear-gradient(135deg, var(--green) 0%, #5da832 100%); box-shadow: 0 4px 16px rgba(112,185,65,.32); border: none; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(112,185,65,.42); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn--lg { padding: 14px 30px; font-size: 1.02rem; border-radius: 12px; }

/* ── Карточки товара v2 ── */
.card { transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease; border: 1px solid #eef0ee; }
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,94,32,.13); border-color: rgba(112,185,65,.3); }
.card__img { transition: transform .4s cubic-bezier(.2,.6,.2,1); }
.card:hover .card__img { transform: scale(1.06); }
.card__pv { display: inline-flex; align-items: center; background: linear-gradient(135deg,#fff8e1,#ffecb3); color: #b8860b; font-size: .68rem; font-weight: 700; padding: 2px 7px; border-radius: 5px; letter-spacing: .02em; }
.card__badge--discount { background: linear-gradient(135deg,#ff6b35,#e8491d); box-shadow: 0 2px 8px rgba(232,73,29,.3); }
.sticker--new { background: linear-gradient(135deg,#43a047,#2e7d32); }
.sticker--hit { background: linear-gradient(135deg,#e31e24,#b71c1c); }

/* ── Секции/заголовки v2 ── */
.section__title { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; position: relative; }
.section__title::after { content: ''; display: block; width: 52px; height: 4px; border-radius: 3px; background: linear-gradient(90deg, var(--green), transparent); margin-top: 10px; }
.section--alt { background: linear-gradient(180deg, var(--bg2), #fff); }

/* ── Плитки разделов на главной v2 (карточка с фото) ── */
.section-tile { display: flex; flex-direction: column; align-items: stretch; text-align: left; padding: 0; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: 16px; transition: all .22s ease; min-height: 0; }
.section-tile:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: 0 16px 34px rgba(27,94,32,.12); }
.section-tile__img { display: flex; align-items: center; justify-content: center; height: 140px; background: linear-gradient(135deg, var(--green-light), #f1f8e9); color: var(--green); overflow: hidden; }
.section-tile__img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .35s ease; }
.section-tile:hover .section-tile__img img { transform: scale(1.07); }
.section-tile__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 4px; }
.section-tile__name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.section-tile__subs { font-size: .82rem; color: var(--text-light); line-height: 1.4; }
.sections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
@media (max-width: 560px) { .section-tile__img { height: 110px; } .sections-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ── Анимированные счётчики ── */
.gw-counter { font-variant-numeric: tabular-nums; }

/* ── Trust-bar (счётчики доверия под hero) ── */
.trust-bar { position: relative; z-index: 3; margin-top: -38px; padding-bottom: 8px; }
.trust-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 18px; box-shadow: 0 12px 40px rgba(27,94,32,.14); overflow: hidden; border: 1px solid rgba(112,185,65,.12); }
.trust-stat { text-align: center; padding: 24px 16px; position: relative; }
.trust-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 22%; height: 56%; width: 1px; background: var(--border); }
.trust-stat .gw-counter { display: block; font-size: 2.3rem; font-weight: 800; color: var(--green-dark); line-height: 1; letter-spacing: -0.02em; }
.trust-stat small { display: block; margin-top: 7px; color: var(--text-light); font-size: .86rem; font-weight: 500; }

@media (max-width: 640px) {
    .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
    .trust-stat:nth-child(2)::after { display: none; }
    .trust-stat .gw-counter { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .hero { padding: 44px 0 50px; }
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 1.02rem; }
    .section__title { font-size: 1.35rem; }
    .seo-text__h2 { font-size: 1.25rem; }
    .cities-trust__item strong { font-size: 1.7rem; }
    .cities-trust__item { padding: 16px 12px; min-width: 100px; }
}
