:root {
    --bg: #f4f5f7;
    --ink: #101820;
    --muted: #68717c;
    --line: #d8dde3;
    --panel: #ffffff;
    --accent: #f47721;
    --accent-dark: #c6530b;
    --navy: #243a59;
    --gold: #f2c500;
    --berry: #9d3f5c;
    --shadow: 0 14px 34px rgba(16, 24, 32, .09);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; }
body { width: 100%; max-width: 100%; margin: 0; overflow-x: hidden; overflow-x: clip; color: var(--ink); background: var(--bg); font-family: Arial, Helvetica, sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: 0; }
h1 { margin-bottom: 20px; font-size: clamp(42px, 6vw, 78px); }
h2 { margin-bottom: 14px; font-size: clamp(28px, 4vw, 46px); }
h3 { margin-bottom: 8px; font-size: 20px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 9px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(248, 249, 250, .95);
    backdrop-filter: blur(12px);
}
.brand { display: flex; width: 230px; height: 58px; flex: 0 0 230px; align-items: center; text-decoration: none; }
.brand img { width: 230px; height: auto; }
.main-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.main-nav a, .market-links a, .media-links a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .58);
    font-size: 13px;
    text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--accent); color: var(--accent-dark); background: var(--panel); }
.nav-toggle { display: none; min-height: 40px; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; color: var(--ink); background: var(--panel); cursor: pointer; }

.hero-slider {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(244, 119, 33, .2);
    background: var(--navy);
}
.hero-slides { position: relative; display: grid; }
.hero-slide {
    position: relative;
    grid-area: 1 / 1;
    display: flex;
    justify-content: flex-end;
    min-height: clamp(520px, calc(100vh - 120px), 760px);
    align-items: center;
    padding: clamp(34px, 5vw, 76px) clamp(18px, 6vw, 84px);
    padding-bottom: clamp(96px, 8vw, 118px);
    color: #fff;
    background-color: var(--navy);
    background-image: var(--hero-image, none);
    background-position: center;
    background-size: cover;
    visibility: hidden;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.hero-slide::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(270deg, rgba(16, 24, 32, .94) 0%, rgba(16, 24, 32, .78) 46%, rgba(16, 24, 32, .28) 78%, rgba(16, 24, 32, .16) 100%);
    content: '';
    pointer-events: none;
}
.hero-slide:not(.hero-slide--image)::before { background: linear-gradient(112deg, rgba(16, 24, 32, .2), rgba(244, 119, 33, .13)); }
.hero-slide.active { z-index: 1; visibility: visible; opacity: 1; transform: translateX(0); }
.hero-product-visual {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: clamp(70px, 12vw, 220px);
    display: flex;
    width: min(32vw, 520px);
    height: calc(100% - 72px);
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}
.hero-product-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .38));
}
.hero-content { position: relative; z-index: 2; width: min(52%, 820px); }
.hero-content, .product-info, .product-summary, .recipe-row > div { min-width: 0; }
.hero-content h1 { max-width: 790px; }
.hero-content > p:not(.eyebrow) { max-width: 650px; color: rgba(255, 255, 255, .78); font-size: 17px; }
.hero-content .eyebrow { color: #ffd4b3; }
.hero-content .button-ghost { border-color: rgba(255, 255, 255, .52); color: #fff; background: rgba(16, 24, 32, .18); }
.hero-content .hero-actions { margin-top: 22px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.hero-facts span {
    border-left: 3px solid var(--accent);
    padding: 7px 10px;
    color: #fff;
    background: rgba(16, 24, 32, .58);
    font-size: 13px;
    font-weight: 800;
}
.eyebrow, .kicker {
    display: block;
    margin: 0 0 12px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.hero-actions, .product-actions, .market-links, .media-links, .marketplace-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.marketplace-link { display: inline-flex; align-items: center; gap: 8px; }
.marketplace-link img { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 6px; object-fit: cover; }
.hero-controls { position: absolute; z-index: 3; right: clamp(18px, 6vw, 84px); bottom: 28px; display: flex; align-items: center; gap: 8px; }
.hero-arrow, .hero-pagination button { min-height: 38px; border: 1px solid var(--line); background: rgba(255, 255, 255, .92); color: var(--ink); cursor: pointer; }
.hero-arrow { display: grid; width: 38px; place-items: center; border-radius: 8px; padding: 0; font-size: 18px; }
.hero-pagination { display: flex; gap: 6px; }
.hero-pagination button { border-radius: 8px; padding: 7px 10px; font-size: 12px; }
.hero-pagination button[aria-pressed='true'] { border-color: var(--accent-dark); color: #fff; background: var(--accent-dark); }
.button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
}
.button-primary { color: #fff; background: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { color: #fff; background: var(--navy); }
.button-ghost { border-color: var(--line); background: transparent; }
.button-market { border-color: var(--line); color: var(--ink); background: var(--panel); }

.marketplace-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px clamp(18px, 6vw, 84px);
    color: #fff;
    background: var(--ink);
}
.marketplace-band-copy { display: grid; gap: 5px; }
.marketplace-band-copy strong { font-size: 17px; }
.marketplace-band span { color: rgba(255, 255, 255, .7); }
.marketplace-band .market-links { min-width: 0; flex: 1 1 0; gap: 14px; margin-right: 0; }
.marketplace-band .marketplace-link {
    min-width: 0;
    min-height: 60px;
    flex: 1 1 0;
    justify-content: center;
    border-color: rgba(255, 255, 255, .3);
    padding: 10px 18px;
    background: rgba(255, 255, 255, .1);
    font-size: 16px;
    font-weight: 800;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.marketplace-band .marketplace-link:hover { border-color: rgba(255, 255, 255, .62); background: rgba(255, 255, 255, .17); transform: translateY(-2px); }
.marketplace-band .marketplace-link img { width: 38px; height: 38px; flex-basis: 38px; border-radius: 9px; }
.marketplace-band .marketplace-link span { color: #fff; }

.promotion-band {
    position: relative;
    display: grid;
    min-height: 168px;
    grid-template-columns: auto minmax(240px, 1fr) auto auto;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    isolation: isolate;
    padding: 30px clamp(18px, 6vw, 84px);
    border-top: 1px solid rgba(244, 119, 33, .34);
    border-bottom: 1px solid rgba(244, 119, 33, .24);
    color: var(--ink);
    background: #fff4ec;
    box-shadow: inset 5px 0 0 var(--accent);
}
.stripe-accent {
    position: relative;
    z-index: 1;
    overflow: visible;
    isolation: isolate;
}
.stripe-accent--contained { overflow: hidden; }
.stripe-accent::after {
    position: absolute;
    z-index: 0;
    width: min(58vw, 940px);
    height: clamp(150px, 15vw, 224px);
    background: url('/images/section-stripes.webp') center / contain no-repeat;
    content: '';
    opacity: .12;
    pointer-events: none;
}
.marketplace-band > *,
.promotion-band > *,
.featured-products-section > *,
.catalog-section > *,
.recommendations-section > *,
.about-section > *,
.faq-section > *,
.home-contacts > * {
    position: relative;
    z-index: 1;
}
.stripe-accent--left::after {
    top: -42px;
    left: -9vw;
    background-position: left top;
    transform: rotate(-1.5deg);
    transform-origin: left top;
}
.stripe-accent--right::after {
    right: -9vw;
    bottom: -62px;
    background-position: right bottom;
    transform: rotate(1.5deg);
    transform-origin: right bottom;
}
.stripe-accent--compact::after {
    width: min(52vw, 840px);
    height: 226px;
    opacity: .28;
}
.stripe-accent--left.stripe-accent--compact::after { top: -58px; }
.stripe-accent--right.stripe-accent--compact::after { bottom: -78px; }
.stripe-accent--dark::after { opacity: .42; }
.stripe-accent--strong::after {
    top: clamp(-26px, -1.5vw, -20px);
    bottom: auto;
    left: 0;
    width: 100%;
    height: clamp(40px, 3vw, 52px);
    background:
        url('/images/section-stripes-horizontal.webp') center / 100% auto no-repeat,
        repeating-linear-gradient(125deg, #f47721 0 44px, #0b0f13 44px 88px);
    opacity: .96;
    transform: none;
}
.promotion-band > img { width: 92px; height: 74px; object-fit: contain; }
.promotion-copy { display: grid; gap: 8px; padding-block: 4px; }
.promotion-copy strong { font-size: 21px; }
.promotion-copy > span:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.promotion-code { border: 1px dashed var(--accent); border-radius: 6px; padding: 10px 14px; color: var(--accent-dark); background: #fff; font-weight: 800; }

.section { padding: clamp(50px, 6vw, 84px) clamp(18px, 6vw, 84px); }
.section-striped { padding-top: clamp(50px, 6vw, 84px); }
.section.stripe-accent--strong { padding-top: clamp(78px, 7vw, 108px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-heading h2 { margin-bottom: 0; }
.text-link { color: var(--accent-dark); font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--berry); }
.filter-row, .recipe-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter-row a, .recipe-tabs a, .catalog-filters a {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    background: var(--panel);
    font-size: 13px;
    text-decoration: none;
}
.filter-row a.active, .recipe-tabs a.active, .catalog-filters a.active { border-color: var(--ink); color: #fff; background: var(--ink); }

.catalog-section { background: var(--bg); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); box-shadow: 0 10px 30px rgba(16, 24, 32, .06); }
.product-card-media { position: relative; display: grid; min-height: 220px; place-items: center; overflow: hidden; border-bottom: 1px solid var(--line); background: #f0f2f5; }
.product-card-media img { width: 100%; height: 220px; object-fit: contain; filter: drop-shadow(0 12px 14px rgba(16, 24, 32, .13)); transition: transform .2s ease; }
.product-card:hover .product-card-media img { transform: scale(1.025); }
.flag { position: absolute; top: 12px; left: 12px; border-radius: 6px; padding: 6px 9px; color: var(--ink); background: var(--gold); font-size: 11px; font-weight: 800; }
.product-card-body { padding: 18px; }
.product-card-body h3 { margin: 7px 0 9px; }
.product-card-body h3 a { text-decoration: none; }
.product-card-body p { min-height: 64px; color: var(--muted); font-size: 14px; }
.category-label { color: var(--accent-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.weights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.weights span { border: 1px solid var(--line); border-radius: 6px; padding: 4px 7px; color: var(--muted); font-size: 12px; }

.featured-products-section { background: #eef1f5; }
.featured-products-section .section-heading { margin-bottom: clamp(28px, 4vw, 48px); }
.section-count { color: var(--muted); font-size: 13px; }
.benefits-section { background: #fff7f1; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.benefit-item {
    min-height: 220px;
    border: 1px solid rgba(244, 119, 33, .24);
    border-radius: 8px;
    padding: 22px;
    background: rgba(255, 255, 255, .84);
}
.benefit-number { color: var(--accent-dark); font-size: 12px; font-weight: 800; }
.benefit-item h3 { margin: 28px 0 12px; font-size: 21px; }
.benefit-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.featured-product {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
    align-items: center;
    gap: clamp(30px, 6vw, 82px);
    background: #eef1f5;
}
.featured-product-media { position: relative; display: grid; min-height: 430px; place-items: center; }
.featured-product-media img { width: min(100%, 420px); max-height: 430px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(16, 24, 32, .14)); transition: opacity .2s ease; }
.product-badge { position: absolute; top: 10px; left: 0; z-index: 1; border-radius: 8px; padding: 9px 13px; color: #231709; background: var(--gold); font-size: 12px; font-weight: 800; }
.product-info > p:not(.eyebrow) { color: var(--muted); }
.weight-picker, .variant-list { display: grid; grid-template-columns: repeat(3, minmax(86px, 1fr)); gap: 10px; margin: 22px 0; }
.weight-picker button, .variant-list button { display: grid; min-height: 62px; place-items: center; border: 1px solid var(--line); border-radius: 8px; padding: 8px; color: var(--ink); background: var(--panel); text-align: center; }
.weight-picker button span, .variant-list button span { display: block; color: var(--muted); font-size: 12px; }
.weight-picker button.active, .variant-list button.active { border-color: var(--accent-dark); color: #fff; background: var(--accent-dark); }
.weight-picker button.active span, .variant-list button.active span { color: rgba(255, 255, 255, .7); }
.variant-guidance { display: grid; gap: 8px; margin: -6px 0 22px; }
.variant-guidance p { margin: 0; border-left: 3px solid var(--accent); padding-left: 12px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.variant-guidance [data-variant-guidance] { color: var(--ink); font-weight: 700; }
.spec-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 0 0 22px; }
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; font-weight: 700; }

.split-section, .about-section, .home-contacts, .contacts-layout {
    display: grid;
    grid-template-columns: minmax(280px, .86fr) minmax(340px, 1.14fr);
    gap: clamp(30px, 6vw, 76px);
}
.split-section { background: #f7f8fa; }
.recipe-showcase {
    display: grid;
    min-height: 278px;
    grid-template-columns: minmax(140px, .9fr) minmax(0, 1.1fr);
    align-items: center;
    margin-top: 34px;
    overflow: hidden;
    border-top: 1px solid rgba(244, 119, 33, .24);
    border-bottom: 1px solid rgba(244, 119, 33, .24);
    background: rgba(244, 119, 33, .06);
    text-decoration: none;
}
.recipe-showcase img { width: 100%; height: 278px; object-fit: contain; mix-blend-mode: multiply; transition: transform .2s ease; }
.recipe-showcase:hover img { transform: scale(1.025); }
.recipe-showcase-copy { display: grid; gap: 9px; padding: 22px 22px 22px 10px; }
.recipe-showcase-copy strong { font-size: 20px; line-height: 1.16; }
.recipe-showcase-copy small { color: var(--accent-dark); font-size: 13px; font-weight: 800; }
.recipe-list { display: grid; gap: 12px; }
.recipe-row { display: flex; min-height: 132px; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: var(--panel); box-shadow: 0 8px 24px rgba(16, 24, 32, .05); }
.recipe-row h3 { margin: 5px 0 7px; }
.recipe-row p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.recommendations-section { background: var(--bg); }
.content-slider-group + .content-slider-group { margin-top: clamp(42px, 6vw, 72px); }
.content-slider-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.content-slider-heading h3 { margin: 0; font-size: 24px; }
.content-slider-heading span { color: var(--muted); font-size: 13px; }
.content-slider-group, .content-slider, .content-slider-viewport { min-width: 0; max-width: 100%; }
.content-slider { position: relative; }
.content-slider-viewport { margin: -6px; overflow: hidden; padding: 6px; touch-action: pan-y; }
.content-slider-track {
    display: flex;
    min-width: 0;
    align-items: stretch;
    gap: 16px;
    transition: transform .35s ease;
    will-change: transform;
}
.content-slide { height: auto; flex: 0 0 calc((100% - 32px) / 3); }
.featured-product-slide { min-width: 0; flex: 0 0 100%; }
.content-slider-controls { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.content-slider-controls span { min-width: 54px; color: var(--muted); font-size: 13px; text-align: center; }
.content-slider-arrow {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--panel);
    cursor: pointer;
    font-size: 18px;
}
.content-slider-arrow:disabled { cursor: default; opacity: .38; }
.review-card { display: flex; min-width: 0; flex-direction: column; margin: 0; border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: var(--panel); box-shadow: 0 10px 30px rgba(16, 24, 32, .06); }
.review-card p { flex: 1; }
.review-card cite { font-style: normal; font-weight: 800; }
.review-photo { width: 54px; height: 54px; margin-bottom: 14px; border-radius: 50%; object-fit: cover; }
.review-video { width: 100%; margin-bottom: 16px; }
.content-video, .external-video { display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 6px; background: var(--ink); object-fit: contain; }
.external-video iframe { display: block; width: 100%; height: 100%; border: 0; }
.external-video-link { width: 100%; margin-bottom: 16px; }
.review-source { display: block; margin-top: 12px; color: var(--accent-dark); font-size: 13px; font-weight: 800; text-decoration: none; }
.stars { color: var(--gold); font-weight: 800; }
.resource-card { display: grid; min-height: 138px; align-content: center; gap: 7px; text-decoration: none; }
.resource-card span { color: var(--muted); }
.creator-card { overflow: hidden; padding: 0; }
.creator-card .review-video { margin: 0; border-radius: 0; }
.creator-card .external-video-link { min-height: 220px; margin: 0; border: 0; border-radius: 0; }
.external-video-fallback {
    display: flex;
    aspect-ratio: 16 / 9;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    color: #fff;
    background: var(--ink);
    text-align: center;
    text-decoration: none;
}
.external-video-fallback strong { overflow-wrap: anywhere; font-size: 20px; }
.external-video-provider { border: 1px solid rgba(255, 255, 255, .34); border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 800; }
.external-video-fallback--vk { background: #1769aa; }
.external-video-fallback--dzen { background: #17131f; }
.external-video-fallback:hover { filter: brightness(1.08); }
.creator-card-copy { display: flex; flex: 1; flex-direction: column; padding: 18px 20px 20px; }
.creator-card-copy h3 { margin-bottom: 8px; }
.creator-card-copy p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.creator-card-copy--compact { flex: 0 0 auto; padding-block: 14px; }
.creator-card-copy--compact .review-source { margin-top: 0; }

.about-section {
    align-items: center;
    border-top: 1px solid rgba(244, 119, 33, .14);
    border-bottom: 1px solid rgba(244, 119, 33, .14);
    background: #fff8f3;
}
.about-section > div:first-child > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.certificate-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.certificate-row a,
.certificate-row button {
    display: flex;
    min-height: 78px;
    align-items: flex-start;
    border: 1px solid rgba(244, 119, 33, .24);
    border-radius: 8px;
    padding: 14px;
    box-shadow: inset 4px 0 0 var(--accent);
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.certificate-row a:hover,
.certificate-row button:hover { border-color: var(--accent); background: #fff; transform: translateY(-2px); }
.certificate-row a:focus-visible,
.certificate-row button:focus-visible { outline: 3px solid rgba(244, 119, 33, .3); outline-offset: 2px; }
.production-gallery {
    width: min(100%, 420px);
    aspect-ratio: 224 / 235;
    min-height: 0;
    justify-self: end;
}
.production-card {
    position: relative;
    min-width: 0;
    aspect-ratio: 224 / 235;
    min-height: 0;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(244, 119, 33, .2);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #fff;
}
.production-card img { display: block; width: 100%; height: 100%; }
.production-card--facility img { object-fit: contain; object-position: center; }
.production-card figcaption,
.production-card > span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: 6px;
    color: #fff;
    background: rgba(16, 24, 32, .88);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.product-image-dialog.declaration-dialog {
    width: min(94vw, 820px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
}
.declaration-dialog .product-image-close {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: -42px 0 8px auto;
}
.declaration-dialog.declaration-dialog--open {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    bottom: auto;
    left: 12px;
    z-index: 1000;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 0 100vmax rgba(16, 24, 32, .72);
}
html.dialog-open,
html.dialog-open body { overflow: hidden; }

.home-contacts { border-bottom: 1px solid rgba(244, 119, 33, .24); color: #fff; background: #0b0f13; }
.home-contacts .eyebrow { color: #ffad73; }
.home-contacts .contact-list li, .home-contacts .social-heading, .home-contacts .contact-form label { color: rgba(255, 255, 255, .72); }
.home-contacts .social-link { border-color: rgba(255, 255, 255, .24); color: var(--ink); }
.home-contacts .contact-form input, .home-contacts .contact-form textarea { border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .94); }
.contact-list { display: grid; gap: 9px; padding: 0; list-style: none; }
.contact-list a { font-weight: 800; text-decoration: none; }
.social-heading { margin: 26px 0 10px; color: var(--muted); font-size: 13px; font-weight: 700; }
.social-row { display: flex; flex-wrap: wrap; gap: 9px; }
.social-row .social-link { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 8px; padding: 7px 11px 7px 7px; background: var(--panel); font-size: 13px; font-weight: 800; text-decoration: none; }
.social-icon-wrap { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 7px; color: #fff; }
.social-icon-wrap svg { width: 17px; height: 17px; }
.social-icon-wrap img { width: 30px; height: 30px; border-radius: 7px; object-fit: contain; }
.social-link--vk .social-icon-wrap, .social-link--telegram .social-icon-wrap, .social-link--max .social-icon-wrap, .social-link--whatsapp .social-icon-wrap { background: transparent; }
.social-link:hover { border-color: var(--accent); }
.contact-form { display: grid; gap: 14px; align-content: start; }
#contact-form { scroll-margin-top: 96px; }
.contact-form-sent { min-height: 180px; align-content: center; }
.contact-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.captcha-field { min-height: 100px; display: grid; gap: 8px; align-content: start; }
.smart-captcha { min-height: 100px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; color: var(--ink); background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .consent-field { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: start; gap: 10px; color: var(--muted); font-size: 12px; font-weight: 400; line-height: 1.45; }
.contact-form .consent-field input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--accent); }
.consent-field a { color: var(--accent-dark); font-weight: 700; }
.field-error { margin-top: -7px; color: #7b1f1f; font-size: 12px; font-weight: 700; }
.success-message, .error-message { border-radius: 8px; padding: 12px; font-weight: 700; }
.success-message { color: #17324f; background: #e3ebf4; }
.error-message { color: #7b1f1f; background: #f5dcdc; }

.page-hero { padding: clamp(62px, 8vw, 112px) clamp(18px, 8vw, 120px); border-bottom: 1px solid var(--line); background: #f7f8fa; }
.page-hero h1 { max-width: 980px; margin-bottom: 16px; }
.page-hero p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.legal-page { max-width: 1040px; margin: 0 auto; }
.legal-page > section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-page > section:first-of-type { padding-top: 10px; }
.legal-page h2 { font-size: clamp(25px, 3vw, 34px); }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page a { color: var(--accent-dark); font-weight: 700; }
.legal-page ul { display: grid; gap: 8px; padding-left: 22px; }
.legal-updated { margin-bottom: 28px; color: var(--muted); font-size: 13px; }
.legal-page .consent-document { margin-top: 28px; border: 1px solid rgba(244, 119, 33, .26); border-radius: 8px; padding: clamp(24px, 5vw, 48px); background: #fff8f3; }
.consent-document:target { scroll-margin-top: 96px; }
.catalog-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 34px; }
.catalog-filters { display: grid; gap: 6px; align-content: start; position: sticky; top: 98px; }
.catalog-filters strong { margin-bottom: 7px; }
.catalog-meta { margin-bottom: 18px; color: var(--muted); }
.site-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.pagination-summary { margin: 0; color: var(--muted); font-size: 14px; }
.pagination-summary strong { color: var(--ink); }
.pagination-links { display: flex; align-items: center; gap: 6px; }
.pagination-link, .pagination-ellipsis {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
}
.pagination-link {
    border: 1px solid var(--line);
    color: var(--ink);
    background: var(--panel);
    font-weight: 800;
    text-decoration: none;
}
a.pagination-link:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination-link.current { border-color: var(--ink); color: #fff; background: var(--ink); }
.pagination-link.disabled { color: #9ca5af; background: #f0f2f5; cursor: not-allowed; }
.pagination-ellipsis { color: var(--muted); }

.product-page { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(380px, 1.1fr); align-items: center; gap: clamp(34px, 7vw, 94px); background: #eef1f5; }
.product-gallery { display: grid; min-height: 560px; place-items: center; }
.product-gallery img { width: 100%; max-height: 600px; object-fit: contain; filter: drop-shadow(0 20px 22px rgba(16, 24, 32, .14)); }
.product-image-button { width: 100%; border: 0; padding: 0; background: transparent; cursor: zoom-in; }
.product-image-dialog { width: min(92vw, 900px); max-height: 90vh; border: 0; border-radius: 8px; padding: 52px 28px 28px; background: var(--panel); }
.product-image-dialog::backdrop { background: rgba(16, 24, 32, .72); }
.product-image-dialog img { width: 100%; max-height: calc(90vh - 80px); object-fit: contain; }
.product-image-close { position: absolute; top: 10px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--panel); font-size: 26px; line-height: 1; cursor: pointer; }
.product-summary h1 { margin: 16px 0; font-size: clamp(40px, 5vw, 66px); }
.lead { color: var(--muted); font-size: 17px; }
.back-link { color: var(--accent-dark); font-weight: 800; text-decoration: none; }
.field-label { display: block; margin-top: 24px; }
.marketplace-actions { margin-bottom: 24px; }
.product-specs { margin: 0; border-top: 1px solid var(--line); }
.product-specs div { display: grid; grid-template-columns: 145px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.product-specs dt { color: var(--muted); }
.product-specs dd { margin: 0; font-weight: 700; }
.detail-band { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.detail-band > div { padding: clamp(42px, 7vw, 88px); background: var(--panel); }
.detail-band p { color: var(--muted); }

.recipe-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.recipe-card { display: grid; grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr); min-height: 260px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.recipe-card img { width: 100%; height: 100%; object-fit: contain; background: #f0f2f5; mix-blend-mode: multiply; }
.recipe-card > div { align-self: center; padding: 24px; }
.recipe-card h2, .recipe-card h3 { margin: 7px 0 9px; }
.recipe-card p { color: var(--muted); }
.recipe-grid-wide .recipe-card { min-height: 320px; }
.recipe-page { background: var(--bg); }
.recipe-header { display: grid; grid-template-columns: minmax(320px, .95fr) minmax(360px, 1.05fr); min-height: 620px; background: #eef1f5; }
.recipe-header img { width: 100%; height: 100%; max-height: 650px; object-fit: contain; mix-blend-mode: multiply; }
.recipe-header > div { align-self: center; padding: clamp(34px, 7vw, 100px); }
.recipe-header h1 { margin: 17px 0; font-size: clamp(40px, 5vw, 66px); }
.recipe-header p { color: var(--muted); font-size: 17px; }
.recipe-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 8vw, 110px); padding: clamp(54px, 8vw, 110px) clamp(18px, 10vw, 150px); }
.preline { white-space: pre-line; color: var(--muted); font-size: 16px; }
.recipe-content aside { margin-top: 28px; border-left: 4px solid var(--gold); padding: 18px 22px; background: var(--panel); }
.recipe-content aside p { margin-bottom: 0; }
.recipe-video-section { padding: clamp(36px, 6vw, 72px) clamp(18px, 10vw, 150px) 0; background: var(--bg); }
.recipe-video-section > .content-video, .recipe-video-section > .external-video { width: min(100%, 1180px); max-height: 72vh; margin: 0 auto; border-radius: 8px; box-shadow: var(--shadow); }

.contacts-layout { background: var(--bg); }
.contact-details { display: grid; gap: 18px; align-content: start; }
.contact-details > div:not(.social-row) { display: grid; gap: 4px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); font-size: 13px; font-weight: 700; }
.contact-details a { font-size: 20px; font-weight: 800; text-decoration: none; }
.contacts-layout .contact-form { border: 1px solid var(--line); border-radius: 8px; padding: clamp(22px, 4vw, 40px); background: var(--panel); }

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(320px, 1.3fr);
    align-items: start;
    gap: clamp(32px, 8vw, 110px);
    background: #f7f8fa;
}
.faq-intro p:last-child { max-width: 520px; margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    display: grid;
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) 36px;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    color: var(--ink);
    cursor: pointer;
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 800;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--accent);
    content: '+';
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 780px; padding: 0 56px 24px 0; color: var(--muted); line-height: 1.7; }
.contact-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(42px, 6vw, 70px) clamp(18px, 6vw, 84px); color: #fff; background: var(--navy); }
.contact-cta h2 { margin-bottom: 0; }
.contact-cta .kicker { color: #ffd4b3; }

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 28px;
    padding: 28px clamp(18px, 6vw, 84px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #f7f8fa;
    font-size: 13px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 220px; margin: 0; }
.site-footer > a { text-decoration: none; }
.footer-legal { margin-left: auto; }

nav[role='navigation'] { margin-top: 28px; }
nav[role='navigation'] a, nav[role='navigation'] span { display: inline-flex; min-width: 38px; min-height: 38px; align-items: center; justify-content: center; border: 1px solid var(--line); padding: 6px; background: var(--panel); text-decoration: none; }

@media (max-width: 1080px) {
    .brand { width: 205px; flex-basis: 205px; }
    .brand img { width: 205px; }
    .main-nav a { padding: 7px 9px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .marketplace-band { align-items: flex-start; flex-direction: column; }
    .marketplace-band .market-links { width: 100%; margin-right: 0; }
    .marketplace-band .marketplace-link { flex: 1 1 0; }
    .promotion-band { grid-template-columns: auto minmax(0, 1fr); }
    .promotion-band .button { justify-self: start; }
    .site-footer { justify-content: flex-start; }
    .footer-legal { width: 100%; margin-left: 0; }
}

@media (max-width: 840px) {
    .site-header { min-height: 70px; }
    .brand { width: 190px; height: 52px; flex-basis: 190px; }
    .brand img { width: 190px; }
    .nav-toggle { display: block; }
    .main-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; flex-direction: column; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); background: #f7f8fa; }
    .main-nav.open { display: flex; }
    .main-nav a { width: 100%; }
    .featured-product, .split-section, .about-section, .home-contacts, .product-page, .recipe-header, .recipe-content, .contacts-layout, .faq-section { grid-template-columns: 1fr; }
    .hero-slide { min-height: 720px; align-items: flex-start; padding-bottom: 280px; background-position: 24% center; }
    .hero-slide::before {
        background: linear-gradient(
            180deg,
            rgba(16, 24, 32, .78) 0%,
            rgba(16, 24, 32, .7) 58%,
            rgba(16, 24, 32, .44) 100%
        );
    }
    .hero-content { width: min(100%, 680px); }
    .hero-product-visual {
        bottom: 48px;
        left: 50%;
        width: min(72vw, 360px);
        height: 250px;
        transform: translateX(-50%);
    }
    .hero-product-image { max-height: 100%; }
    .hero-controls {
        right: auto;
        bottom: 24px;
        left: 50%;
        justify-content: center;
        transform: translateX(-50%);
    }
    .product-grid, .recipe-grid { grid-template-columns: 1fr; }
    .content-slide { flex-basis: calc((100% - 16px) / 2); }
    .featured-product-media { min-height: 370px; }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-filters { position: static; display: flex; flex-wrap: wrap; }
    .product-gallery { min-height: 440px; }
    .detail-band { grid-template-columns: 1fr; }
    .recipe-header { min-height: auto; }
    .recipe-header img { max-height: 500px; }
    .section-heading, .marketplace-band, .contact-cta { align-items: flex-start; flex-direction: column; }
    .marketplace-band .market-links { margin-right: 0; }
    .marketplace-band .market-links { width: 100%; }
    .marketplace-band .marketplace-link { flex: 1 1 148px; }
    .promotion-band { grid-template-columns: 1fr; }
    .promotion-band > img { display: none; }
    .production-gallery { justify-self: center; }
}

@media (max-width: 560px) {
    h1 { font-size: 40px; }
    .brand { width: 170px; flex-basis: 170px; }
    .brand img { width: 170px; }
    .hero-slide { min-height: 820px; padding-top: 54px; padding-bottom: 280px; background-position: 20% center; }
    .hero-content h1, .hero-content p, .eyebrow { max-width: 100%; overflow-wrap: anywhere; }
    .hero-actions .button { width: 100%; }
    .marketplace-band .marketplace-link { width: 100%; }
    .faq-answer { padding-right: 0; }
    .site-pagination { align-items: stretch; flex-direction: column; gap: 14px; }
    .pagination-summary { text-align: center; }
    .pagination-links { justify-content: center; }
    .certificate-row { grid-template-columns: 1fr; }
    .product-image-dialog.declaration-dialog {
        width: calc(100vw - 24px);
        max-width: none;
        max-height: calc(100dvh - 24px);
        margin: 0 auto;
        padding: 52px 12px 16px;
    }
    .declaration-dialog img {
        width: 100%;
        height: auto;
        max-height: none;
    }
    .production-gallery { width: min(100%, 320px); }
    .section-striped { padding-top: 64px; }
    .section.stripe-accent--strong { padding-top: 76px; }
    .stripe-accent::after { width: 92vw; height: 132px; opacity: .1; }
    .stripe-accent--left::after { top: -22px; left: -32vw; }
    .stripe-accent--right::after { right: -32vw; bottom: -36px; }
    .stripe-accent--compact::after { width: 118vw; height: 168px; opacity: .22; }
    .stripe-accent--left.stripe-accent--compact::after { top: -42px; }
    .stripe-accent--right.stripe-accent--compact::after { bottom: -56px; }
    .stripe-accent--dark::after { opacity: .36; }
    .stripe-accent--strong::after {
        top: -15px;
        left: 0;
        width: 100%;
        height: 30px;
        background:
            url('/images/section-stripes-horizontal.webp') center / 100% auto no-repeat,
            repeating-linear-gradient(125deg, #f47721 0 28px, #0b0f13 28px 56px);
        opacity: .96;
        transform: none;
    }
    .recipe-showcase { grid-template-columns: minmax(120px, .85fr) minmax(0, 1.15fr); }
    .hero-pagination button { width: 12px; min-height: 12px; border-radius: 50%; padding: 0; overflow: hidden; color: transparent; font-size: 0; }
    .hero-pagination button[aria-pressed='true'] { color: transparent; }
    .content-slider-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
    .content-slide { flex-basis: 100%; }
    .content-slider-controls { justify-content: center; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card-body p { min-height: 0; }
    .benefit-item { min-height: 0; }
    .weight-picker, .variant-list, .certificate-row { grid-template-columns: 1fr; }
    .recipe-card { grid-template-columns: 1fr; }
    .recipe-card img { height: 260px; }
    .recipe-row { align-items: flex-start; flex-direction: column; }
    .product-specs div, .form-row { grid-template-columns: 1fr; gap: 4px; }
    .footer-brand { width: 100%; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; }
}
