:root {
    --color-white: #ffffff;
    --color-bg: #f5f8f6;
    --color-green: #13a538;
    --color-green-dark: #06752a;
    --color-green-soft: #e7f8ec;
    --color-accent: #f5c542;
    --color-text: #132118;
    --color-muted: #6b7a70;
    --color-border: #dfe9e2;
    --shadow-soft: 0 18px 50px rgba(19, 33, 24, .08);
    --shadow-card: 0 12px 34px rgba(19, 33, 24, .07);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1180px;
    --font-main: "Manrope", Arial, Helvetica, sans-serif;
    --font-heading: "Geologica", "Manrope", Arial, Helvetica, sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button, input {
    font: inherit;
}
h1, h2, h3, h4, .brand__name, .price {
    font-family: var(--font-heading);
    font-weight: 800;
}
h1, h2 {
    text-wrap: balance;
}
p, li, .footer-nav a, .footer-contacts a, .footer-contacts span, .product-card p, .category-card p, .step-card p {
    font-weight: 500;
}
strong, b {
    font-weight: 800;
}
.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(223, 233, 226, .8);
    backdrop-filter: blur(18px);
}
.header-top {
    background: linear-gradient(90deg, var(--color-green-dark), var(--color-green));
    color: var(--color-white);
    font-size: 13px;
}
.header-top__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.header-top__note {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .96;
}
.header-top__note::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(245, 197, 66, .22);
}
.header-top__links {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}
.header-main {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}
.brand__mark {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    overflow: hidden;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 16px;
    background: radial-gradient(circle at 74% 22%, rgba(245, 197, 66, .95) 0 8px, transparent 9px),
        linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 28px rgba(19, 165, 56, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.brand__mark::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .16), transparent 54%);
    pointer-events: none;
}
.brand__num {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.075em;
    color: #ffffff;
    transform: translateX(-1px);
}
.brand__leaf {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 3;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(245, 197, 66, .22);
}
.brand__leaf::after {
    content: none;
}
.brand__text {
    display: block;
}
.brand__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: .98;
}
.brand__caption {
    display: block;
    margin-top: 5px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: -0.012em;
}
.brand:hover .brand__mark {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(19, 165, 56, .26);
}
.nav-toggle {
    display: none;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.main-nav__link {
    padding: 10px 13px;
    border-radius: 999px;
    color: #26372c;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    transition: .2s ease;
}
.main-nav__link:hover, .main-nav__link.is-active {
    color: var(--color-green-dark);
    background: var(--color-green-soft);
}
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.header-search {
    width: 232px;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px 0 10px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-muted);
    box-shadow: 0 8px 24px rgba(19, 33, 24, .04);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.header-search:hover, .header-search:focus-within {
    border-color: rgba(19, 165, 56, .35);
    box-shadow: 0 0 0 4px rgba(19, 165, 56, .08);
}
.header-search__btn {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    min-width: 32px;
    min-height: 32px;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color .2s ease, color .2s ease;
}
.header-search__btn:hover, .header-search__btn:focus-visible {
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}
.header-search__btn svg, .header-search svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
    flex: 0 0 18px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.header-search > span[aria-hidden="true"] {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 18px;
    overflow: visible;
    color: var(--color-muted);
    font-size: 0;
    line-height: 0;
}
.header-search > span[aria-hidden="true"]::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.header-search > span[aria-hidden="true"]::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: center;
}
.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-text);
}
.header-search input::placeholder {
    color: #8a968e;
}
.header-cart {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0 8px;
    border: 1px solid rgba(19, 165, 56, .2);
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-text);
    font-weight: 850;
    letter-spacing: -0.012em;
    box-shadow: 0 10px 28px rgba(19, 33, 24, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.header-cart:hover {
    transform: translateY(-1px);
    border-color: rgba(19, 165, 56, .36);
    background: #f8fff9;
    color: var(--color-green-dark);
    box-shadow: 0 14px 34px rgba(19, 165, 56, .13);
}
.header-cart__icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    transition: transform .2s ease;
}
.header-cart:hover .header-cart__icon {
    transform: scale(1.04);
}
.header-cart__icon svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.header-cart__text {
    line-height: 1;
}
.header-cart__count {
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(19, 33, 24, .06);
}
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}
.burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-text);
    border-radius: 10px;
}
.site-main {
    overflow: hidden;
}
.hero {
    position: relative;
    padding: 62px 0 42px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -160px -10% auto auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,165,56,.18), transparent 68%);
    pointer-events: none;
}
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 44px;
}
.hero__eyebrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(19,165,56,.18);
    border-radius: 999px;
    background: #fff;
    color: var(--color-green-dark);
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 8px 26px rgba(19, 33, 24, .05);
}
.hero__eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-green);
}
.hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.4vw, 72px);
    font-weight: 850;
    line-height: .96;
    letter-spacing: -0.055em;
}
.hero h1 span {
    color: var(--color-green);
}
.hero__text {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}
.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.015em;
    transition: .2s ease;
}
.btn--primary {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    box-shadow: 0 16px 34px rgba(19, 165, 56, .28);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(19, 165, 56, .32);
}
.btn--secondary {
    background: #fff;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}
.btn--secondary:hover {
    border-color: rgba(19,165,56,.32);
    color: var(--color-green-dark);
    transform: translateY(-2px);
}
.hero__badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}
.hero-badge {
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.78);
}
.hero-badge strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
}
.hero-badge span {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 13px;
}
.hero-card {
    position: relative;
    padding: 18px;
    border-radius: 36px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.hero-card__image {
    min-height: 430px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(19,165,56,.02), rgba(19,165,56,.2)),
        url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?q=80&w=1200&auto=format&fit=crop") center/cover;
}
.hero-card__float {
    position: absolute;
    left: -14px;
    bottom: 30px;
    width: min(300px, 80%);
    padding: 16px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}
.hero-card__float strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}
.hero-card__float p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}
.section {
    padding: 54px 0;
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.section-head h2 {
    margin: 0;
    max-width: 720px;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 820;
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.section-head p {
    max-width: 420px;
    margin: 0;
    color: var(--color-muted);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: .2s ease;
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19,165,56,.28);
}
.category-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-weight: 900;
}
.category-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 760;
    letter-spacing: -0.035em;
}
.category-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}
.category-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(19,165,56,.08);
}
.benefits {
    padding: 26px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 90% 15%, rgba(245,197,66,.26), transparent 28%),
        linear-gradient(135deg, #0b7d31, #13a538);
    color: #fff;
}
.benefits__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: center;
}
.benefits h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
}
.benefits p {
    margin: 18px 0 0;
    color: rgba(255,255,255,.78);
}
.benefit-list {
    display: grid;
    gap: 12px;
}
.benefit-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(255,255,255,.1);
}
.benefit-item__num {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    color: var(--color-green-dark);
    font-weight: 900;
}
.benefit-item strong {
    display: block;
    margin-bottom: 4px;
}
.benefit-item span {
    color: rgba(255,255,255,.78);
    font-size: 14px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.product-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.product-card__image {
    position: relative;
    min-height: 220px;
    background: #eef5f0 center/cover;
}
.product-card__label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 850;
}
.product-card__body {
    padding: 16px;
}
.product-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 760;
    letter-spacing: -0.035em;
    line-height: 1.15;
}
.product-card p {
    margin: 0 0 14px;
    color: var(--color-muted);
    font-size: 14px;
}
.product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.04em;
}
.mini-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: var(--color-green);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    transition: .2s ease;
}
.mini-btn:hover {
    background: var(--color-green-dark);
    transform: translateY(-2px);
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.step-card {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.step-card__num {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: var(--color-text);
    color: #fff;
    font-weight: 900;
}
.step-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}
.step-card p {
    margin: 0;
    color: var(--color-muted);
}
.seo-text {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.seo-text h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}
.seo-text p {
    font-size: 16px;
    line-height: 1.72;
    margin: 0 0 12px;
    color: var(--color-muted);
}
.seo-text p:last-child {
    margin-bottom: 0;
}
.site-footer {
    margin-top: 42px;
    padding: 54px 0 24px;
    background: radial-gradient(circle at 12% 10%, rgba(19,165,56,.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef7f1 100%);
    border-top: 1px solid var(--color-border);
}
.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, .75fr));
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.78);
    box-shadow: var(--shadow-card);
}
.brand--footer {
    width: fit-content;
}
.footer-brand__text {
    max-width: 360px;
    margin: 20px 0 0;
    color: var(--color-muted);
}
.footer-warning {
    max-width: 390px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(19,165,56,.18);
    border-radius: 18px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 13px;
    font-weight: 650;
}
.footer-col h3 {
    margin: 0 0 16px;
    font-size: 17px;
    letter-spacing: -0.03em;
}
.footer-nav, .footer-contacts {
    display: grid;
    gap: 10px;
}
.footer-nav a, .footer-contacts a, .footer-contacts span {
    color: var(--color-muted);
    font-size: 14px;
    transition: .2s ease;
}
.footer-nav a:hover, .footer-contacts a:hover, .footer-bottom__links a:hover {
    color: var(--color-green-dark);
}
.footer-subscribe {
    margin-top: 20px;
}
.footer-subscribe label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 750;
}
.footer-subscribe__row {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
}
.footer-subscribe input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
}
.footer-subscribe button {
    width: 54px;
    border: 0;
    background: var(--color-green);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}
.footer-subscribe button:hover {
    background: var(--color-green-dark);
}
.footer-subscribe small {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1.35;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 4px 0;
    color: var(--color-muted);
    font-size: 13px;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-bottom__links a {
    transition: .2s ease;
}
@media (max-width: 1040px) {
    .header-search {
        display: none;
    }
    .hero__grid, .benefits__grid {
        grid-template-columns: 1fr;
    }
    .hero-card__image {
        min-height: 360px;
    }
    .category-grid, .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .header-top__links {
        display: none;
    }
    .burger span {
        grid-column: 1;
        grid-row: 1;
    }
    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }
    .main-nav__link {
        border-radius: 14px;
    }
    .header-cart__text {
        display: none;
    }
    .hero {
        padding-top: 34px;
    }
    .hero__badges, .category-grid, .product-grid, .steps {
        grid-template-columns: 1fr;
    }
    .section-head {
        display: block;
    }
    .section-head p {
        margin-top: 12px;
    }
    .benefits {
        padding: 20px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom__links {
        margin-top: 10px;
    }
}

.contacts-page {
    padding-bottom: 28px;
}
.contacts-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 34px;
}
.contacts-hero::before {
    content: "";
    position: absolute;
    right: -190px;
    top: -220px;
    width: 590px;
    height: 590px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 165, 56, .16), transparent 68%);
    pointer-events: none;
}
.contacts-hero::after {
    content: "";
    position: absolute;
    left: -190px;
    bottom: -280px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 66, .16), transparent 64%);
    pointer-events: none;
}
.contacts-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .82fr);
    gap: 34px;
    align-items: stretch;
}
.contacts-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--color-green-dark);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 26px rgba(19, 33, 24, .05);
}
.contacts-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 50%;
    background: var(--color-green);
}
.contacts-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 850;
    line-height: .99;
    letter-spacing: -0.055em;
}
.contacts-hero h1 span {
    display: block;
    color: var(--color-green);
}
.contacts-hero__text {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.7;
}
.contacts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
.contacts-hero__note {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    max-width: 650px;
    margin-top: 28px;
    padding: 16px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 8px 26px rgba(19, 33, 24, .05);
}
.contacts-hero__note-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-weight: 900;
}
.contacts-hero__note strong {
    display: block;
    margin-bottom: 4px;
}
.contacts-hero__note span {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}
.contacts-main-card {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(19, 165, 56, .16);
    border-radius: 34px;
    background: radial-gradient(circle at 86% 12%, rgba(245, 197, 66, .26), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #eefaf2 100%);
    box-shadow: var(--shadow-soft);
}
.contacts-main-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background: rgba(19, 165, 56, .08);
}
.contacts-main-card__top, .contacts-main-card__list {
    position: relative;
    z-index: 1;
}
.contacts-main-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--color-green);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.contacts-main-card h2 {
    margin: 18px 0 10px;
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}
.contacts-main-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}
.contacts-main-card__list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}
.contacts-main-line {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(223, 233, 226, .92);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
}
.contacts-main-line__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-weight: 900;
}
.contacts-main-line span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}
.contacts-main-line a, .contacts-main-line strong {
    display: block;
    margin-top: 2px;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 850;
}
.contacts-main-line a:hover {
    color: var(--color-green-dark);
}
.contacts-section {
    padding: 44px 0;
}
.contacts-section--compact {
    padding-top: 22px;
}
.contacts-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.contacts-head h2 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 820;
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.contacts-head p {
    max-width: 460px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}
.contacts-methods {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.contacts-method {
    position: relative;
    overflow: hidden;
    min-height: 218px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contacts-method:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 165, 56, .28);
    box-shadow: 0 18px 42px rgba(19, 33, 24, .09);
}
.contacts-method::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 136px;
    height: 136px;
    border-radius: 50%;
    background: rgba(19, 165, 56, .08);
}
.contacts-method__icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 20px;
    font-weight: 900;
}
.contacts-method h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 820;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.contacts-method p {
    position: relative;
    z-index: 1;
    min-height: 44px;
    margin: 0 0 14px;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}
.contacts-method a, .contacts-method strong {
    position: relative;
    z-index: 1;
    color: var(--color-green-dark);
    font-weight: 900;
}
.contacts-method a:hover {
    color: var(--color-green);
}
.contacts-split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 18px;
    align-items: stretch;
}
.contacts-map-card, .contacts-form-card, .contacts-reviews-card, .contacts-faq-card, .contacts-requisites-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.contacts-map-card {
    overflow: hidden;
}
.contacts-map-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px 18px;
}
.contacts-map-card h2, .contacts-form-card h2, .contacts-reviews-card h2, .contacts-faq-card h2, .contacts-requisites-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.contacts-map-card p, .contacts-form-card p, .contacts-reviews-card p, .contacts-faq-card p, .contacts-requisites-card p {
    margin: 8px 0 0;
    color: var(--color-muted);
    line-height: 1.65;
}
.contacts-map-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}
.contacts-map-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
}
.contacts-map {
    position: relative;
    min-height: 420px;
    background: radial-gradient(circle at 70% 20%, rgba(245, 197, 66, .24), transparent 28%),
        linear-gradient(135deg, #eaf6ee, #ffffff);
}
.contacts-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.contacts-map-card__bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--color-border);
    background: rgba(245, 248, 246, .76);
}
.contacts-route {
    padding: 14px;
    border: 1px solid rgba(223, 233, 226, .92);
    border-radius: 18px;
    background: #fff;
}
.contacts-route strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}
.contacts-route span {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
}
.contacts-form-card {
    padding: 24px;
}
.contacts-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.contacts-field {
    display: grid;
    gap: 7px;
}
.contacts-field label {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 850;
}
.contacts-field input, .contacts-field textarea, .contacts-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: #fff;
    color: var(--color-text);
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contacts-field textarea {
    min-height: 116px;
    padding-top: 13px;
    resize: vertical;
}
.contacts-field input:focus, .contacts-field textarea:focus, .contacts-field select:focus {
    border-color: rgba(19, 165, 56, .36);
    box-shadow: 0 0 0 4px rgba(19, 165, 56, .08);
}
.contacts-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contacts-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.45;
}
.contacts-form__agree input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--color-green);
}
.contacts-form .btn {
    width: fit-content;
}
.contacts-ratings {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: stretch;
}
.contacts-reviews-card {
    padding: 24px;
}
.contacts-rating-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.contacts-rating {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contacts-rating:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 165, 56, .26);
    box-shadow: 0 14px 32px rgba(19, 33, 24, .07);
}
.contacts-rating__logo {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
}
.contacts-rating__logo--ya {
    background: linear-gradient(135deg, #ffdb4d, #ff6b4a);
    color: #1c1c1c;
}
.contacts-rating__logo--google {
    background: linear-gradient(135deg, #4285f4, #34a853);
}
.contacts-rating__logo--site {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
}
.contacts-rating h3 {
    margin: 0 0 4px;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.contacts-rating p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
}
.contacts-rating__score {
    text-align: right;
}
.contacts-rating__score strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
}
.contacts-stars {
    display: block;
    margin-top: 5px;
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: .06em;
}
.contacts-review-note {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 18px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.55;
}
.contacts-faq-card {
    padding: 24px;
}
.contacts-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.contacts-faq-item {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-bg);
}
.contacts-faq-item strong {
    display: block;
    margin-bottom: 6px;
}
.contacts-faq-item span {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}
.contacts-requisites-card {
    padding: 24px;
}
.contacts-requisites {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}
.contacts-requisites__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--color-border);
}
.contacts-requisites__row:last-child {
    border-bottom: 0;
}
.contacts-requisites__row span {
    color: var(--color-muted);
    font-size: 14px;
}
.contacts-requisites__row strong {
    font-size: 14px;
}
.contacts-warning {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.contacts-warning__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
}
.contacts-warning h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.contacts-warning p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.68;
}
@media (max-width: 1040px) {
    .contacts-hero__grid, .contacts-split, .contacts-ratings {
        grid-template-columns: 1fr;
    }
    .contacts-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contacts-main-card {
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .contacts-hero {
        padding-top: 34px;
    }
    .contacts-hero h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.045em;
    }
    .contacts-hero__text {
        font-size: 15px;
    }
    .contacts-main-card, .contacts-form-card, .contacts-reviews-card, .contacts-faq-card, .contacts-requisites-card, .contacts-warning {
        padding: 22px;
    }
    .contacts-head {
        display: block;
    }
    .contacts-head p {
        margin-top: 12px;
    }
    .contacts-methods, .contacts-form__grid, .contacts-map-card__bottom {
        grid-template-columns: 1fr;
    }
    .contacts-map-card__head {
        display: block;
    }
    .contacts-map-status {
        margin-top: 12px;
    }
    .contacts-map {
        min-height: 360px;
    }
    .contacts-rating {
        grid-template-columns: 48px 1fr;
    }
    .contacts-rating__logo {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
    .contacts-rating__score {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 62px;
    }
    .contacts-requisites__row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .contacts-warning {
        grid-template-columns: 1fr;
    }
    .contacts-warning__icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }
}

.product-breadcrumbs a {
    color: var(--color-green-dark);
    transition: .2s ease;
}
.product-breadcrumbs a:hover {
    color: var(--color-green);
}
.product-breadcrumbs span {
    color: #9aa8a0;
}
.product-label--accent {
    border-color: rgba(245, 197, 66, .48);
    background: rgba(245, 197, 66, .16);
    color: var(--color-text);
}
.product-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
}
.product-label--accent::before {
    background: var(--color-accent);
}
.product-share {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}
.product-share__btn:hover {
    border-color: rgba(19, 165, 56, .28);
    color: var(--color-green-dark);
    background: var(--color-green-soft);
}
.product-gallery-card, .product-info-card, .product-buy-card, .product-delivery-card, .product-warning-card, .product-tabs, .product-related, .product-reviews-card {
    border: 1px solid var(--color-border);
    border-radius: 30px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-card);
}
.product-gallery__main {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: radial-gradient(circle at 78% 18%, rgba(245, 197, 66, .20), transparent 28%),
        linear-gradient(135deg, #f1faf4 0%, #ffffff 100%);
}
.product-gallery__placeholder {
    min-height: 500px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: radial-gradient(circle at 75% 20%, rgba(245, 197, 66, .22), transparent 28%),
        linear-gradient(135deg, #f1faf4, #ffffff);
    color: var(--color-muted);
    text-align: center;
    font-weight: 800;
}
.product-gallery__thumb:hover, .product-gallery__thumb.is-active {
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px rgba(19, 165, 56, .08);
}
.product-rating__stars {
    color: #ffb340;
    letter-spacing: .05em;
}
.product-article {
    color: #94a198;
    font-size: 13px;
    font-weight: 750;
}
.product-stock__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-green-dark);
}
.product-stock__status::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 0 4px rgba(19, 165, 56, .12);
}
.product-price-box__top {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}
.product-sale-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: #ff4f76;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.product-old-price {
    color: #8e9a93;
    font-size: 14px;
    font-weight: 850;
    text-decoration: line-through;
}
.product-option-selects {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.product-select {
    display: grid;
    gap: 7px;
}
.product-select span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}
.product-select select {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    color: var(--color-text);
    outline: 0;
    font-weight: 750;
}
.product-qty button {
    border: 0;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    font-size: 20px;
    font-weight: 900;
    transition: .2s ease;
}
.product-qty button:hover {
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}
.product-qty input {
    width: 100%;
    border: 0;
    outline: 0;
    background: #fff;
    color: var(--color-text);
    text-align: center;
    font-weight: 900;
}
.product-buy-btn {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    box-shadow: 0 16px 30px rgba(19, 165, 56, .22);
}
.product-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(19, 165, 56, .28);
}
.product-one-click {
    border: 1px solid rgba(19, 165, 56, .22);
    background: #fff;
    color: var(--color-green-dark);
}
.product-one-click:hover {
    background: var(--color-green-soft);
}
.product-pay-parts__dots span:nth-child(2) {
    background: #6dd3a8;
}
.product-pay-parts__dots span:nth-child(3) {
    background: #b4dd33;
}
.product-pay-parts__dots span:nth-child(4) {
    background: var(--color-accent);
}
.product-pay-parts span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
}
.product-side-item span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.4;
}
.product-delivery-card {
    padding: 18px;
}
.product-delivery-list strong {
    display: block;
    font-size: 13px;
}
.product-delivery-list span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
}
.product-delivery-list em {
    color: var(--color-green-dark);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}
.product-warning-card {
    padding: 18px;
    border-color: rgba(245, 197, 66, .38);
    background: radial-gradient(circle at 96% 0%, rgba(245, 197, 66, .18), transparent 36%),
        #fff;
}
.product-tabs__nav::-webkit-scrollbar {
    display: none;
}
.product-tabs__nav button:hover, .product-tabs__nav button.is-active {
    border-color: rgba(19, 165, 56, .24);
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}
.product-tab-panel {
    display: none;
}
.product-tab-panel.is-active {
    display: block;
}
.product-text h2, .product-text h3 {
    margin: 0 0 12px;
    color: var(--color-text);
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}
.product-text p {
    margin: 0 0 14px;
}
.product-text p:last-child {
    margin-bottom: 0;
}
.product-prop span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}
.product-prop strong {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.45;
}
.product-doc:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 165, 56, .28);
    background: var(--color-green-soft);
}
.product-doc strong {
    font-size: 15px;
}
.product-doc span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}
.product-review-score span {
    display: block;
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}
.product-review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}
.product-review-card__top strong {
    font-size: 15px;
}
.product-review-card__top span {
    color: #ffb340;
}
.product-review-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.62;
}
.product-related__head a {
    color: var(--color-green-dark);
    font-size: 14px;
    font-weight: 900;
}
@media (max-width: 1180px) {
    .product-main {
        grid-template-columns: minmax(340px, .85fr) minmax(0, 1fr);
    }
    .product-buy-card {
        position: relative;
        top: auto;
        grid-column: 1 / -1;
    }
    .product-buy-card .product-actions {
        grid-template-columns: 180px minmax(220px, 1fr) minmax(170px, .6fr);
        align-items: center;
    }
}

@media (max-width: 920px) {
    .product-main {
        grid-template-columns: 1fr;
    }
    .product-gallery-card {
        position: relative;
        top: auto;
    }
    .product-gallery__main, .product-gallery__placeholder {
        min-height: 420px;
    }
    .product-buy-card .product-actions {
        grid-template-columns: 1fr;
    }
    .product-benefits-mini, .product-props, .product-docs, .product-reviews-grid {
        grid-template-columns: 1fr;
    }
    .product-related__head {
        display: block;
    }
    .product-related__head a {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 640px) {
    .product-page {
        padding-top: 20px;
    }
    .product-topline, .product-rating-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .product-main {
        gap: 16px;
    }
    .product-info-card, .product-tabs__body, .product-reviews-card, .product-related {
        padding: 18px;
    }
    .product-gallery-card {
        padding: 12px;
        border-radius: 24px;
    }
    .product-gallery__main, .product-gallery__placeholder {
        min-height: 330px;
        border-radius: 20px;
    }
    .product-gallery__main img {
        padding: 18px;
    }
    .product-gallery__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .product-title {
        font-size: clamp(30px, 9vw, 40px);
    }
    .product-facts {
        grid-template-columns: 1fr;
    }
    .product-price {
        font-size: 34px;
    }
    .product-delivery-list div, .product-prop {
        grid-template-columns: 1fr;
    }
}

.about-page {
    padding-bottom: 24px;
}
.about-hero {
    position: relative;
    padding: 54px 0 34px;
    overflow: hidden;
}
.about-hero::before {
    content: "";
    position: absolute;
    right: -180px;
    top: -210px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 165, 56, .15), transparent 68%);
    pointer-events: none;
}
.about-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: 42px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 650;
}
.breadcrumbs a {
    color: var(--color-green-dark);
    transition: .2s ease;
}
.breadcrumbs a:hover {
    color: var(--color-green);
}
.breadcrumbs span {
    color: #9aa8a0;
}
.about-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--color-green-dark);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 26px rgba(19, 33, 24, .05);
}
.about-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-green);
}
.about-hero h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 850;
    line-height: .98;
    letter-spacing: -0.055em;
}
.about-hero h1 span {
    display: block;
    color: var(--color-green);
}
.about-hero__text {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.68;
}
.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}
.about-hero__media {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(223, 233, 226, .9);
    border-radius: 36px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-soft);
}
.about-hero__image {
    min-height: 430px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(19, 165, 56, .04), rgba(19, 165, 56, .18)),
        url("https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1400&auto=format&fit=crop") center/cover;
}
.about-hero__float {
    position: absolute;
    left: -14px;
    bottom: 30px;
    width: min(318px, 82%);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 22px;
    background: rgba(255, 255, 255, .93);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}
.about-hero__float strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}
.about-hero__float p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}
.about-stat {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .78);
}
.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
}
.about-stat span {
    display: block;
    margin-top: 7px;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.35;
}
.about-section {
    padding: 54px 0;
}
.about-section--compact {
    padding-top: 28px;
}
.about-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.about-head h2 {
    max-width: 700px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 820;
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.about-head p {
    max-width: 430px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}
.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .74fr);
    gap: 18px;
}
.about-story__card {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.about-story__card h2, .about-story__card h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}
.about-story__card h2 {
    font-size: 34px;
    line-height: 1.05;
}
.about-story__card h3 {
    font-size: 24px;
    line-height: 1.1;
}
.about-story__card p {
    margin: 0 0 14px;
    color: var(--color-muted);
    line-height: 1.72;
}
.about-story__card p:last-child {
    margin-bottom: 0;
}
.about-story__side {
    display: grid;
    gap: 14px;
}
.about-mini-card {
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.about-mini-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 15px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-weight: 900;
}
.about-mini-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 17px;
    letter-spacing: -0.02em;
}
.about-mini-card span {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}
.about-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.about-value-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.about-value-card::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(19, 165, 56, .08);
}
.about-value-card__num {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: var(--color-text);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
}
.about-value-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 780;
    line-height: 1.1;
    letter-spacing: -0.035em;
}
.about-value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.62;
}
.about-quality {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 90% 15%, rgba(245, 197, 66, .25), transparent 28%),
        linear-gradient(135deg, #0b7d31, #13a538);
    color: #fff;
}
.about-quality__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
    gap: 28px;
    align-items: center;
}
.about-quality h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.05em;
}
.about-quality p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.68;
}
.about-checks {
    display: grid;
    gap: 12px;
}
.about-check {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .1);
}
.about-check__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    color: var(--color-green-dark);
    font-weight: 900;
}
.about-check strong {
    display: block;
    margin-bottom: 4px;
}
.about-check span {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.5;
}
.about-team {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 18px;
    align-items: stretch;
}
.about-team__image {
    min-height: 420px;
    border: 18px solid #fff;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(19, 165, 56, .04), rgba(19, 165, 56, .14)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1200&auto=format&fit=crop") center/cover;
    box-shadow: var(--shadow-soft);
}
.about-team__content {
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.about-team__content h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.about-team__content p {
    margin: 0 0 14px;
    color: var(--color-muted);
    line-height: 1.72;
}
.about-team__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.about-team__item {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-bg);
}
.about-team__item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}
.about-team__item span {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
}
.about-warning-box {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}
.about-warning-box__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
}
.about-warning-box h2 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.about-warning-box p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.72;
}
.about-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}
.about-cta::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(19, 165, 56, .09);
}
.about-cta h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.about-cta p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--color-muted);
    line-height: 1.65;
}
.about-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}
@media (max-width: 1040px) {
    .about-hero__grid, .about-story, .about-quality__grid, .about-team {
        grid-template-columns: 1fr;
    }
    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-hero__image, .about-team__image {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .about-hero {
        padding-top: 34px;
    }
    .about-hero h1 {
        font-size: clamp(36px, 11vw, 48px);
        letter-spacing: -0.045em;
    }
    .about-hero__media {
        padding: 12px;
        border-radius: 28px;
    }
    .about-hero__image {
        min-height: 300px;
        border-radius: 22px;
    }
    .about-hero__float {
        position: static;
        width: auto;
        margin: -44px 10px 0;
    }
    .about-stats, .about-values, .about-team__list {
        grid-template-columns: 1fr;
    }
    .about-head {
        display: block;
    }
    .about-head p {
        margin-top: 12px;
    }
    .about-story__card, .about-quality, .about-team__content, .about-cta {
        padding: 22px;
    }
    .about-warning-box {
        grid-template-columns: 1fr;
        padding: 22px;
    }
    .about-warning-box__icon {
        width: 52px;
        height: 52px;
        border-radius: 17px;
    }
    .about-cta {
        grid-template-columns: 1fr;
    }
    .about-cta__actions {
        justify-content: flex-start;
    }
}

.catalog-breadcrumbs a {
    color: var(--color-green-dark);
}
.catalog-breadcrumbs span {
    color: #98a59d;
}
.catalog-hero h1 span {
    color: var(--color-green);
}
.catalog-hero__badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}
.catalog-hero__badge::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--color-accent);
}
.catalog-chips::-webkit-scrollbar {
    display: none;
}
.catalog-chip:hover, .catalog-chip.is-active {
    border-color: rgba(19, 165, 56, .3);
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    transform: translateY(-1px);
}
.catalog-filter-head button, .catalog-reset {
    border: 0;
    background: transparent;
    color: var(--color-green-dark);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}
.catalog-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0 0;
}
.catalog-selected:empty {
    display: none;
}
.catalog-filter-group:last-child, #mse2_filters fieldset:last-of-type {
    border-bottom: 0;
}
.catalog-filter-group__body {
    display: grid;
    gap: 9px;
}
.catalog-check:hover, #mse2_filters label:hover {
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}
.catalog-check__label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.catalog-check__num, #mse2_filters .badge {
    margin-left: auto;
    color: #9aa69f;
    font-size: 12px;
    font-weight: 800;
}
#mse2_filters .disabled {
    opacity: .45;
    pointer-events: none;
}
#mse2_filters input[type="text"], #mse2_filters input[type="number"] {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    background: #fff;
    color: var(--color-text);
    outline: none;
}
#mse2_filters input[type="text"]:focus, #mse2_filters input[type="number"]:focus {
    border-color: rgba(19, 165, 56, .35);
    box-shadow: 0 0 0 4px rgba(19, 165, 56, .08);
}
#mse2_filters .mse2_number_inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
#mse2_filters .mse2_number_slider {
    margin: 14px 7px 4px;
}
.catalog-reset:hover {
    background: var(--color-green);
    color: #fff;
}
.catalog-results {
    min-width: 0;
}
.catalog-total span {
    color: var(--color-text);
    font-weight: 900;
}
.catalog-sort a:hover, .catalog-sort a.active, .catalog-limit a:hover, .catalog-limit a.active, #mse2_sort a:hover, #mse2_sort a.active, #mse2_limit a:hover, #mse2_limit a.active {
    border-color: rgba(19, 165, 56, .28);
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}
.catalog-view button.is-active, .catalog-view button:hover {
    background: var(--color-green);
    color: #fff;
}
.catalog-grid.is-list {
    grid-template-columns: 1fr;
}
.catalog-grid.is-list .catalog-product {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
}
.catalog-product__title:hover {
    color: var(--color-green-dark);
}
.catalog-product__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(19, 165, 56, .2);
}
.catalog-empty {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px dashed rgba(19, 165, 56, .35);
    border-radius: 24px;
    background: #fff;
    color: var(--color-muted);
    text-align: center;
    font-weight: 700;
}
.catalog-pagination, #mse2_pagination, .mse2_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}
.catalog-pagination ul, #mse2_pagination ul, .mse2_pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.catalog-pagination a, .catalog-pagination span, #mse2_pagination a, #mse2_pagination span, .mse2_pagination a, .mse2_pagination span {
    min-width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    background: #fff;
    color: var(--color-muted);
    font-weight: 850;
    transition: .2s ease;
}
.catalog-pagination a:hover, .catalog-pagination .active a, .catalog-pagination .active span, #mse2_pagination a:hover, #mse2_pagination .active a, #mse2_pagination .active span, .mse2_pagination a:hover, .mse2_pagination .active a, .mse2_pagination .active span {
    border-color: var(--color-green);
    background: var(--color-green);
    color: #fff;
}
.catalog-overlay {
    display: none;
}
@media (max-width: 1040px) {
    .catalog-hero__inner {
        grid-template-columns: 1fr;
    }
    .catalog-hero__badges {
        justify-content: flex-start;
    }
    .catalog-sidebar.is-open {
        transform: translateX(0);
    }
    .catalog-overlay {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: block;
        background: rgba(19, 33, 24, .42);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }
    .catalog-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }
    .catalog-filter-open {
        display: inline-flex;
    }
}

@media (max-width: 820px) {
    .catalog-grid.is-list .catalog-product {
        grid-template-columns: 1fr;
    }
    .catalog-grid.is-list .catalog-product__image {
        border-radius: 24px 24px 0 0;
    }
}

@media (max-width: 560px) {
    .catalog-hero h1 {
        font-size: clamp(34px, 12vw, 44px);
    }
    .catalog-hero__text {
        font-size: 15px;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .catalog-toolbar__left, .catalog-toolbar__right, .catalog-sort {
        align-items: stretch;
        flex-direction: column;
    }
    .catalog-filter-open, .catalog-sort a, .catalog-limit a, #mse2_sort a, #mse2_limit a {
        width: 100%;
    }
    .catalog-view {
        display: none;
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
.site-header, .site-main, .site-footer {
    max-width: 100%;
}
.header-top__note, .brand, .brand__text, .hero__content, .contacts-hero__content, .about-hero__content, .catalog-hero__inner, .product-main, .contacts-main-card, .hero__grid, .contacts-hero__grid, .about-hero__grid {
    min-width: 0;
}
@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, var(--container));
    }
    .header-top {
        font-size: 11px;
    }
    .header-top__inner {
        min-height: auto;
        padding: 6px 0;
        justify-content: flex-start;
        gap: 8px;
    }
    .header-top__note {
        min-width: 0;
        width: 100%;
        gap: 7px;
        line-height: 1.3;
        overflow: hidden;
    }
    .header-top__note::before {
        width: 6px;
        height: 6px;
        flex: 0 0 6px;
        box-shadow: 0 0 0 3px rgba(245, 197, 66, .2);
    }
    .header-main {
        min-height: 64px;
        gap: 8px;
    }
    .brand {
        flex: 1 1 auto;
        gap: 8px;
        min-width: 0;
    }
    .brand__mark {
        flex-basis: 44px;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 14px;
    }
    .brand__num {
        font-size: 18px;
    }
    .brand__leaf {
        right: 7px;
        top: 7px;
        width: 8px;
        height: 8px;
    }
    .brand__text {
        min-width: 0;
    }
    .brand__name {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 18px;
        letter-spacing: -0.035em;
    }
    .brand__caption {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-top: 3px;
        font-size: 11px;
    }
    .header-actions {
        flex: 0 0 auto;
        gap: 6px;
    }
    .header-cart {
        min-height: 42px;
        padding: 0 7px;
        gap: 6px;
        box-shadow: 0 8px 20px rgba(19, 33, 24, .05);
    }
    .header-cart__icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }
    .header-cart__count {
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 11px;
    }
    .burger {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 14px;
    }
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--color-border);
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow-soft);
        left: 12px;
        right: 12px;
        max-width: calc(100vw - 24px);
    }
    .hero, .contacts-hero, .about-hero {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .hero::before, .contacts-hero::before, .contacts-hero::after, .about-hero::before {
        width: 360px;
        height: 360px;
        opacity: .72;
    }
    .hero__grid, .contacts-hero__grid, .about-hero__grid, .catalog-layout, .product-main, .contacts-split, .contacts-ratings, .about-story, .about-quality__grid, .about-team {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }
    .hero__content, .contacts-hero__content, .about-hero__content {
        max-width: 100%;
    }
    .hero__eyebrow, .contacts-kicker, .about-kicker {
        max-width: 100%;
        padding: 8px 11px;
        font-size: 12px;
        line-height: 1.35;
        white-space: normal;
    }
    .hero h1, .contacts-hero h1, .about-hero h1, .catalog-hero h1 {
        max-width: 100%;
        font-size: clamp(31px, 9.2vw, 40px);
        line-height: 1.06;
        letter-spacing: -0.038em;
    }
    .hero h1 span, .contacts-hero h1 span, .about-hero h1 span {
        display: inline;
    }
    .hero__text, .contacts-hero__text, .about-hero__text, .catalog-hero__text {
        max-width: 100%;
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.62;
    }
    .hero__actions, .contacts-hero__actions, .about-hero__actions {
        gap: 10px;
        margin-top: 22px;
    }
    .btn {
        min-height: 46px;
        padding: 0 18px;
        font-size: 14px;
    }
    .hero__badges, .about-stats {
        gap: 10px;
        margin-top: 26px;
    }
    .hero-badge, .about-stat {
        padding: 12px;
    }
    .hero-card, .about-hero__media, .contacts-main-card, .catalog-hero, .product-gallery-card, .product-info-card, .product-buy-card, .contacts-form-card, .contacts-reviews-card, .contacts-faq-card, .contacts-requisites-card {
        border-radius: 24px;
    }
    .hero-card {
        padding: 12px;
    }
    .hero-card__image {
        min-height: 290px;
        border-radius: 20px;
    }
    .hero-card__float {
        position: static;
        width: auto;
        margin: -42px 10px 0;
    }
    .contacts-hero__note, .contacts-warning, .about-warning-box {
        grid-template-columns: minmax(0, 1fr);
    }
    .contacts-methods, .contacts-form__grid, .contacts-map-card__bottom, .about-values, .about-team__list, .product-facts, .product-benefits-mini, .product-props, .product-docs, .product-reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .catalog-sidebar {
        max-width: calc(100vw - 46px);
    }
}

@media (max-width: 390px) {
    .container {
        width: min(100% - 20px, var(--container));
    }
    .brand__name, .brand__caption {
        max-width: 132px;
    }
    .header-cart__count {
        display: none;
    }
    .hero h1, .contacts-hero h1, .about-hero h1, .catalog-hero h1 {
        font-size: clamp(29px, 9.4vw, 36px);
    }
    .btn {
        width: 100%;
    }
}

.catalog-product__meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    min-height: 22px;
    padding: 0 7px;
}
.catalog-product__price {
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}
.catalog-product__qty-btn:hover {
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}
.catalog-product__qty::-webkit-outer-spin-button, .catalog-product__qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.catalog-grid.is-list .catalog-product__image {
    min-height: 100%;
    border-radius: 22px 0 0 22px;
    height: auto;
}
.catalog-grid.is-list .catalog-product__bottom {
    grid-template-columns: minmax(110px, .3fr) minmax(240px, .7fr);
    align-items: end;
}
@media (max-width: 820px) {
    .catalog-grid.is-list .catalog-product__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .catalog-product {
        border-radius: 18px;
    }
    .catalog-product__image, .catalog-product__image img {
        min-height: 0;
    }
    .catalog-product__image {
        height: 176px;
        border-radius: 18px 18px 0 0;
    }
    .catalog-product__image img {
        padding: 12px;
    }
    .catalog-product__body {
        padding: 12px;
    }
    .catalog-product__title {
        min-height: auto;
        font-size: 15px;
        line-height: 1.16;
    }
    .catalog-product__desc {
        min-height: auto;
        margin-bottom: 10px;
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    .catalog-product__price-current {
        font-size: 20px;
    }
    .catalog-product__actions {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 7px;
    }
    .catalog-product__btn {
        padding: 0 9px;
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .catalog-product__image {
        height: 162px;
    }
    .catalog-product__actions {
        grid-template-columns: 96px minmax(0, 1fr);
    }
    .catalog-product__qtybox {
        grid-template-columns: 28px minmax(26px, 1fr) 28px;
    }
    .catalog-product__qty-btn {
        width: 28px;
    }
    .catalog-product__btn {
        font-size: 0;
    }
    .catalog-product__btn-icon {
        display: block;
    }
}

.catalog-page {
    padding: 24px 0 54px;
}
.catalog-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(19, 165, 56, .16);
    background: radial-gradient(circle at 82% 18%, rgba(245, 197, 66, .24), transparent 28%),
        radial-gradient(circle at 14% 24%, rgba(19, 165, 56, .16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #effaf3 100%);
    box-shadow: var(--shadow-card);
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 26px;
}
.catalog-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
}
.catalog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 12px;
}
.catalog-hero h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 850;
    line-height: 1;
    max-width: 650px;
    font-size: clamp(30px, 3.6vw, 46px);
    letter-spacing: -0.045em;
}
.catalog-hero__text {
    margin: 18px 0 0;
    color: var(--color-muted);
    max-width: 620px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
}
.catalog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(19, 165, 56, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--color-green-dark);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(19, 33, 24, .04);
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
}
.catalog-chips {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 2px;
}
.catalog-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: #26372c;
    font-weight: 800;
    transition: .2s ease;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(19, 33, 24, .035);
}
.catalog-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 16px;
}
.catalog-sidebar {
    position: sticky;
    top: 112px;
}
.catalog-filter-panel {
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(19, 33, 24, .045);
}
.catalog-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--color-border);
    padding: 13px 14px 10px;
}
.catalog-filter-head strong {
    font-family: var(--font-heading);
    font-weight: 820;
    letter-spacing: -0.04em;
    font-size: 17px;
}
.catalog-filter {
    padding: 0 14px 14px;
}
.catalog-filter-group, #mse2_filters fieldset {
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
}
.catalog-filter-group__title, #mse2_filters legend, #mse2_filters h4 {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 820;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
    font-size: 13px;
}
.catalog-check, #mse2_filters label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    cursor: pointer;
    font-weight: 700;
    transition: .2s ease;
    min-height: 29px;
    padding: 5px 6px;
    border-radius: 10px;
    font-size: 12px;
}
.catalog-check input, #mse2_filters input[type="checkbox"], #mse2_filters input[type="radio"] {
    accent-color: var(--color-green);
    cursor: pointer;
    width: 15px;
    height: 15px;
}
.catalog-reset {
    width: 100%;
    border-radius: 999px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    transition: .2s ease;
    min-height: 36px;
    margin-top: 8px;
    font-size: 12px;
}
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 8px 26px rgba(19, 33, 24, .04);
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 18px;
    gap: 10px;
}
.catalog-toolbar__left, .catalog-toolbar__right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.catalog-total {
    color: var(--color-muted);
    font-weight: 700;
    font-size: 12px;
}
.catalog-filter-open {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(19, 165, 56, .24);
    border-radius: 999px;
    background: #fff;
    color: var(--color-green-dark);
    cursor: pointer;
    font-weight: 850;
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
}
.catalog-sort {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.catalog-sort span {
    color: var(--color-muted);
    font-weight: 800;
    font-size: 12px;
}
.catalog-sort a, .catalog-limit a, #mse2_sort a, #mse2_limit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-muted);
    font-weight: 800;
    transition: .2s ease;
    min-height: 31px;
    padding: 0 10px;
    font-size: 12px;
}
.catalog-view {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    padding: 3px;
}
.catalog-view button {
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    transition: .2s ease;
    width: 28px;
    height: 28px;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.catalog-product {
    position: relative;
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    border-radius: 16px;
    box-shadow: 0 7px 20px rgba(19, 33, 24, .045);
}
.catalog-product:hover {
    border-color: rgba(19, 165, 56, .26);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(19, 33, 24, .065);
}
.catalog-product__image {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 0;
    background: radial-gradient(circle at 78% 18%, rgba(245, 197, 66, .18), transparent 26%),
        linear-gradient(135deg, #f3fbf6 0%, #ffffff 100%);
    height: clamp(132px, 11.5vw, 165px);
    border-radius: 16px 16px 0 0;
}
.catalog-product__image img {
    transition: transform .35s ease;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    padding: 10px;
}
.catalog-product__label {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-text);
    font-weight: 900;
    top: 8px;
    left: 8px;
    min-height: 21px;
    padding: 0 8px;
    font-size: 10px;
    box-shadow: none;
}
.catalog-product__favorite {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    color: var(--color-green-dark);
    backdrop-filter: blur(12px);
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    font-size: 14px;
}
.catalog-product__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px;
}
.catalog-product__meta {
    align-items: center;
    flex-wrap: wrap;
    color: var(--color-muted);
    font-weight: 800;
    gap: 6px;
    margin-bottom: 7px;
    font-size: 11px;
    display: none;
}
.catalog-product__title {
    margin: 0 0 8px;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 820;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 34px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.16;
    letter-spacing: -0.026em;
}
.catalog-product__desc {
    display: -webkit-box;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--color-muted);
    -webkit-box-orient: vertical;
    min-height: 18px;
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 1;
}
.catalog-product__bottom {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: auto;
    gap: 8px;
}
.catalog-product__price-current {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: -0.035em;
}
.catalog-product__price-old {
    color: #9aa69f;
    font-weight: 800;
    text-decoration: line-through;
    white-space: nowrap;
    font-size: 11px;
}
.catalog-product__actions {
    width: 100%;
    display: grid;
    align-items: center;
    margin: 0;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 7px;
}
.catalog-product__qtybox {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
    height: 34px;
    grid-template-columns: 26px minmax(26px, 1fr) 26px;
    border-radius: 11px;
}
.catalog-product__qty-btn {
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    font-weight: 900;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease;
    width: 26px;
    height: 34px;
    font-size: 15px;
}
.catalog-product__qty {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-radius: 0;
    background: #fff;
    color: var(--color-text);
    text-align: center;
    outline: 0;
    font-weight: 900;
    appearance: textfield;
    -moz-appearance: textfield;
    height: 34px;
    font-size: 12px;
}
.catalog-product__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    cursor: pointer;
    transition: .2s ease;
    min-width: 0;
    width: 100%;
    gap: 6px;
    line-height: 1.05;
    white-space: nowrap;
    min-height: 34px;
    padding: 0 9px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 900;
}
.catalog-product__btn-icon {
    display: none;
    flex: 0 0 17px;
    width: 15px;
    height: 15px;
    flex-basis: 15px;
}
.catalog-info {
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: var(--shadow-card);
    margin-top: 24px;
    padding: 20px;
    border-radius: 22px;
}
.catalog-info h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 820;
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-size: 24px;
}
.catalog-info p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
}
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .catalog-product__image {
        height: clamp(128px, 13vw, 155px);
    }
}

@media (max-width: 1040px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 80;
        overflow-y: auto;
        background: var(--color-bg);
        transform: translateX(-105%);
        transition: transform .25s ease;
        width: min(320px, calc(100% - 48px));
        padding: 12px;
    }
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .catalog-page {
        padding-top: 18px;
    }
    .catalog-hero {
        padding: 18px;
        border-radius: 22px;
    }
    .catalog-hero__badges {
        gap: 7px;
    }
    .catalog-toolbar {
        gap: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .catalog-toolbar__left, .catalog-toolbar__right {
        align-items: center;
        justify-content: flex-start;
    }
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;
    }
    .catalog-product__image {
        height: 138px;
    }
    .catalog-product__title {
        font-size: 13px;
    }
    .catalog-product__actions {
        grid-template-columns: 82px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .catalog-hero {
        padding: 16px;
    }
    .catalog-hero h1 {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.02;
    }
    .catalog-hero__text {
        font-size: 14px;
    }
    .catalog-chips {
        margin-inline: -4px;
        padding-inline: 4px;
    }
    .catalog-chip {
        min-height: 31px;
        padding: 0 10px;
        font-size: 12px;
    }
    .catalog-toolbar__left, .catalog-toolbar__right, .catalog-sort {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start;
    }
    .catalog-filter-open, .catalog-sort a, .catalog-limit a, #mse2_sort a, #mse2_limit a {
        width: auto !important;
        min-height: 30px;
        padding: 0 9px;
        font-size: 11px;
    }
    .catalog-sort span {
        display: none;
    }
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .catalog-product {
        border-radius: 14px;
    }
    .catalog-product__image {
        height: 118px;
        border-radius: 14px 14px 0 0;
    }
    .catalog-product__image img {
        padding: 7px;
    }
    .catalog-product__label {
        top: 7px;
        left: 7px;
        min-height: 19px;
        padding: 0 7px;
        font-size: 9px;
    }
    .catalog-product__favorite {
        top: 7px;
        right: 7px;
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    .catalog-product__body {
        padding: 8px;
    }
    .catalog-product__title {
        min-height: 30px;
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 1.2;
        -webkit-line-clamp: 2;
    }
    .catalog-product__desc {
        display: none;
    }
    .catalog-product__price-current {
        font-size: 16px;
    }
    .catalog-product__price-old {
        display: none;
    }
    .catalog-product__actions {
        grid-template-columns: 76px 34px;
        justify-content: space-between;
        gap: 6px;
    }
    .catalog-product__qtybox {
        height: 32px;
        grid-template-columns: 24px 28px 24px;
        border-radius: 10px;
    }
    .catalog-product__qty-btn {
        width: 24px;
        height: 32px;
        font-size: 14px;
    }
    .catalog-product__qty {
        height: 32px;
        font-size: 12px;
    }
    .catalog-product__btn {
        width: 34px;
        min-height: 32px;
        padding: 0;
        border-radius: 10px;
        font-size: 0;
    }
    .catalog-product__btn span {
        display: none;
    }
    .catalog-product__btn-icon {
        display: block;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 360px) {
    .catalog-grid {
        gap: 7px;
    }
    .catalog-product__image {
        height: 108px;
    }
    .catalog-product__body {
        padding: 7px;
    }
    .catalog-product__title {
        font-size: 11.5px;
    }
    .catalog-product__actions {
        grid-template-columns: 72px 32px;
    }
    .catalog-product__qtybox {
        grid-template-columns: 22px 28px 22px;
    }
    .catalog-product__qty-btn {
        width: 22px;
    }
    .catalog-product__btn {
        width: 32px;
    }
}

@media (max-width: 330px) {
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .catalog-product__image {
        height: 150px;
    }
    .catalog-product__desc {
        display: -webkit-box;
    }
    .catalog-product__actions {
        grid-template-columns: 86px minmax(0, 1fr);
    }
    .catalog-product__btn {
        width: 100%;
        font-size: 12px;
        padding: 0 9px;
    }
    .catalog-product__btn span {
        display: inline;
    }
}

.catalog-product__image, .catalog-grid.is-list .catalog-product__image {
    height: clamp(168px, 13vw, 198px) !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #ffffff !important;
    background-image: none !important;
}
.catalog-product__image img, .catalog-grid.is-list .catalog-product__image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 10px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: transparent !important;
}
.catalog-product:hover .catalog-product__image img {
    transform: none !important;
}
.catalog-product__image picture, .catalog-product__image source {
    max-width: 100%;
}
.catalog-product__image picture {
    width: 100%;
    height: 100%;
    display: block;
}
.catalog-product__image picture img {
    display: block;
}
@media (max-width: 1200px) {
    .catalog-product__image, .catalog-grid.is-list .catalog-product__image {
        height: clamp(160px, 15vw, 188px) !important;
    }
}

@media (max-width: 820px) {
    .catalog-product__image, .catalog-grid.is-list .catalog-product__image {
        height: 156px !important;
    }
    .catalog-product__image img, .catalog-grid.is-list .catalog-product__image img {
        padding: 9px !important;
    }
}

@media (max-width: 640px) {
    .catalog-product__image, .catalog-grid.is-list .catalog-product__image {
        height: 148px !important;
    }
    .catalog-product__image img, .catalog-grid.is-list .catalog-product__image img {
        padding: 8px !important;
    }
}

@media (max-width: 360px) {
    .catalog-product__image, .catalog-grid.is-list .catalog-product__image {
        height: 138px !important;
    }
    .catalog-product__image img, .catalog-grid.is-list .catalog-product__image img {
        padding: 7px !important;
    }
}

@media (max-width: 330px) {
    .catalog-product__image, .catalog-grid.is-list .catalog-product__image {
        height: 172px !important;
    }
}

.product-page {
    padding: 26px 0 64px;
    background: radial-gradient(circle at 8% 0%, rgba(19, 165, 56, .08), transparent 34%),
        radial-gradient(circle at 90% 12%, rgba(245, 197, 66, .10), transparent 30%),
        var(--color-bg);
}
.product-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-muted);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.35;
}
.product-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.product-labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.product-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--color-green-dark);
    font-weight: 850;
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
    box-shadow: none;
}
.product-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-muted);
    cursor: pointer;
    transition: .2s ease;
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
}
.product-gallery-card, .product-info-card, .product-buy-card, .product-tabs, .product-related, .product-reviews-card {
    border-radius: 26px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(19, 33, 24, .065);
}
.product-gallery-card {
    position: sticky;
    top: 112px;
    padding: 14px;
    overflow: hidden;
}
.product-gallery {
    display: grid;
    gap: 10px;
}
.product-gallery__main, .product-gallery__placeholder {
    min-height: 390px;
    border: 1px solid rgba(223, 233, 226, .95);
    border-radius: 22px;
    background: #fff;
}
.product-gallery__main::before {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(19, 165, 56, .08);
    border-radius: 20px;
    pointer-events: none;
    content: none;
}
.product-gallery__main img {
    transition: transform .35s ease;
    width: 100%;
    height: 390px;
    max-height: none;
    padding: 24px;
    object-fit: contain;
    object-position: center;
}
.product-gallery__main:hover img {
    transform: none;
}
.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 62px);
    justify-content: center;
    gap: 8px;
}
.product-gallery__thumb {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: .2s ease;
    border-radius: 14px;
    aspect-ratio: 1;
    background: #fff;
}
.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
}
.product-center {
    min-width: 0;
    display: grid;
    gap: 14px;
}
.product-info-card {
    padding: 22px;
}
.product-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 12px;
    gap: 10px;
}
.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-weight: 800;
    font-size: 13px;
}
.product-title {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 850;
    max-width: 100%;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}
.product-intro {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--color-muted);
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
}
.product-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
}
.product-fact {
    min-width: 0;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    padding: 12px;
    border-radius: 16px;
}
.product-fact span {
    display: block;
    color: var(--color-muted);
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 11px;
}
.product-fact strong {
    display: block;
    overflow: hidden;
    color: var(--color-text);
    line-height: 1.35;
    text-overflow: ellipsis;
    font-size: 13px;
}
.product-benefits-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
}
.product-benefit-mini {
    border: 1px solid rgba(19, 165, 56, .16);
    background: rgba(231, 248, 236, .58);
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 11px 12px;
    border-radius: 15px;
}
.product-benefit-mini::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--color-green-dark);
    font-size: 12px;
    font-weight: 900;
}
.product-benefit-mini strong {
    display: block;
    color: var(--color-green-dark);
    margin-bottom: 2px;
    font-size: 13px;
}
.product-benefit-mini span {
    display: block;
    color: var(--color-muted);
    line-height: 1.45;
    font-size: 12px;
}
.product-buy-card {
    overflow: hidden;
    position: sticky;
    top: 112px;
    padding: 16px;
    border-top: 5px solid var(--color-green);
}
.product-buy-card::before {
    content: "";
    height: 6px;
    margin: -18px -18px 18px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
    display: none;
}
.product-stock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-muted);
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 12px;
}
.product-price-box {
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    border: 1px solid var(--color-border);
}
.product-price {
    display: block;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    margin-top: 4px;
    font-size: 38px;
    letter-spacing: -0.045em;
}
.product-price-caption {
    display: block;
    color: var(--color-muted);
    font-weight: 750;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
}
.product-actions {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}
.product-qty {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
    height: 44px;
    grid-template-columns: 44px 1fr 44px;
    border-radius: 14px;
}
.product-buy-btn, .product-one-click {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    transition: .2s ease;
    min-height: 48px;
    border-radius: 14px;
    font-size: 14px;
}
.product-pay-parts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-border);
    background: #fff;
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
}
.product-pay-parts__dots {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: repeat(2, 10px);
    gap: 3px;
}
.product-pay-parts__dots span {
    border-radius: 50%;
    background: var(--color-green);
    width: 10px;
    height: 10px;
}
.product-pay-parts strong {
    display: block;
    font-size: 13px;
}
.product-pay-parts span, .product-side-item span {
    font-size: 11px;
}
.product-side-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}
.product-side-item {
    display: grid;
    background: var(--color-bg);
    grid-template-columns: 34px 1fr;
    gap: 9px;
    padding: 11px;
    border-radius: 15px;
}
.product-side-item__icon {
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--color-green-dark);
    font-weight: 900;
    width: 34px;
    height: 34px;
    border-radius: 11px;
}
.product-side-item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
}
.product-delivery-card, .product-warning-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 30px rgba(19, 33, 24, .055);
}
.product-delivery-card h3, .product-warning-card h3, .product-reviews-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    font-size: 20px;
}
.product-delivery-list {
    display: grid;
    gap: 8px;
}
.product-delivery-list div {
    display: grid;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    grid-template-columns: 30px 1fr auto;
    padding: 10px;
    border-radius: 14px;
}
.product-delivery-list b {
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--color-green-dark);
    width: 30px;
    height: 30px;
    border-radius: 10px;
}
.product-warning-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
    font-size: 13px;
}
.product-tabs {
    overflow: hidden;
    max-width: 100%;
    margin-top: 22px;
}
.product-tabs__nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border-bottom: 1px solid var(--color-border);
    scrollbar-width: none;
    padding: 12px;
}
.product-tabs__nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-weight: 850;
    transition: .2s ease;
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
}
.product-tabs__body {
    padding: 22px;
}
.product-text h2 {
    font-size: 26px;
}
.product-text h3 {
    font-size: 21px;
}
.product-text {
    color: var(--color-muted);
    line-height: 1.75;
    font-size: 15px;
}
.product-props {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.product-prop {
    display: grid;
    gap: 14px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    grid-template-columns: minmax(110px, .75fr) minmax(0, 1fr);
    padding: 12px;
    border-radius: 14px;
}
.product-docs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.product-doc {
    display: grid;
    align-content: space-between;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    transition: .2s ease;
    min-height: 96px;
    padding: 14px;
    border-radius: 16px;
}
.product-reviews-card, .product-related {
    margin-top: 22px;
    padding: 22px;
    border-radius: 26px;
}
.product-reviews-grid {
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
    gap: 12px;
}
.product-review-score {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 70% 18%, rgba(245, 197, 66, .26), transparent 30%),
        var(--color-green-soft);
    color: var(--color-green-dark);
    text-align: center;
    min-height: 150px;
    border-radius: 20px;
}
.product-review-score strong {
    display: block;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.06em;
    font-size: 46px;
}
.product-review-card {
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    padding: 16px;
    border-radius: 20px;
}
.product-related__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}
.product-related__head h2 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-size: clamp(26px, 3vw, 36px);
}
@media (max-width: 1240px) {
    .product-main {
        grid-template-columns: 360px minmax(0, 1fr) 300px;
        gap: 14px;
    }
    .product-gallery__main, .product-gallery__placeholder {
        min-height: 360px;
    }
    .product-gallery__main img {
        height: 360px;
    }
    .product-title {
        font-size: clamp(28px, 3vw, 38px);
    }
}

@media (max-width: 1080px) {
    .product-main {
        grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
    }
    .product-buy-card {
        position: relative;
        top: auto;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 14px;
        align-items: start;
    }
    .product-buy-card .product-actions, .product-buy-card .product-pay-parts, .product-buy-card .product-side-list {
        margin-top: 0;
    }
    .product-buy-card .product-actions {
        align-self: end;
    }
    .product-delivery-card, .product-warning-card {
        display: none;
    }
    .product-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-review-score {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .product-page {
        padding-top: 18px;
    }
    .product-main {
        grid-template-columns: 1fr;
    }
    .product-gallery-card, .product-buy-card {
        position: relative;
        top: auto;
    }
    .product-buy-card {
        display: block;
    }
    .product-gallery__main, .product-gallery__placeholder {
        min-height: 330px;
    }
    .product-gallery__main img {
        height: 330px;
        padding: 18px;
    }
    .product-gallery__thumbs {
        grid-template-columns: repeat(5, 54px);
        justify-content: start;
        overflow-x: auto;
        padding-bottom: 2px;
    }
    .product-benefits-mini {
        grid-template-columns: 1fr;
    }
    .product-reviews-grid, .product-props, .product-docs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .product-page {
        padding-bottom: 44px;
    }
    .product-breadcrumbs {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .product-topline {
        align-items: flex-start;
        flex-direction: column;
    }
    .product-labels {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: none;
    }
    .product-labels::-webkit-scrollbar {
        display: none;
    }
    .product-label {
        flex: 0 0 auto;
    }
    .product-gallery-card, .product-info-card, .product-buy-card, .product-tabs, .product-reviews-card, .product-related {
        border-radius: 22px;
    }
    .product-gallery-card {
        padding: 10px;
    }
    .product-gallery__main, .product-gallery__placeholder {
        min-height: 300px;
        border-radius: 18px;
    }
    .product-gallery__main img {
        height: 300px;
        padding: 12px;
    }
    .product-info-card, .product-buy-card, .product-tabs__body, .product-reviews-card, .product-related {
        padding: 16px;
    }
    .product-title {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.08;
    }
    .product-intro {
        font-size: 14px;
    }
    .product-facts {
        grid-template-columns: 1fr;
    }
    .product-price {
        font-size: 34px;
    }
    .product-tabs__nav {
        padding: 10px;
    }
    .product-tabs__nav button {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }
    .product-prop {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.product-main {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}
.product-right {
    position: sticky;
    top: 126px;
    display: grid;
    gap: 14px;
    align-self: start;
    min-width: 0;
}
.product-right .product-buy-card {
    position: relative;
    top: auto;
}
.product-right .product-delivery-card, .product-right .product-warning-card {
    margin: 0;
}
.product-right .product-delivery-card {
    padding: 16px;
}
.product-right .product-warning-card {
    padding: 16px;
}
.product-center > .product-delivery-card, .product-center > .product-warning-card {
    display: none;
}
.product-right .product-delivery-list {
    gap: 9px;
}
.product-right .product-delivery-list div {
    grid-template-columns: 32px 1fr auto;
    padding: 11px;
}
.product-right .product-delivery-card h3, .product-right .product-warning-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.product-right .product-warning-card p {
    font-size: 13px;
    line-height: 1.62;
}
@media (max-width: 1180px) {
    .product-right {
        position: relative;
        top: auto;
        grid-column: 1 / -1;
        grid-template-columns: minmax(280px, 1fr) minmax(240px, .7fr) minmax(240px, .7fr);
        align-items: stretch;
    }
    .product-right .product-buy-card {
        grid-column: auto;
    }
    .product-right .product-buy-card .product-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .product-right {
        grid-template-columns: 1fr;
    }
    .product-right .product-delivery-list div {
        grid-template-columns: 34px 1fr auto;
    }
}

@media (max-width: 640px) {
    .product-right, .product-center {
        gap: 12px;
    }
    .product-right .product-delivery-card, .product-right .product-warning-card {
        padding: 14px;
        border-radius: 20px;
    }
    .product-right .product-delivery-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}


/* ==============================
   Cart page: 90 Витаминов
   ============================== */
.cart-page {
    padding: 32px 0 68px;
}

.cart-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
}

.cart-breadcrumbs a {
    color: var(--color-green-dark);
    transition: .2s ease;
}

.cart-breadcrumbs a:hover {
    color: var(--color-green);
}

.cart-breadcrumbs span {
    color: #9aa8a0;
}

.cart-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: end;
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid rgba(19, 165, 56, .16);
    border-radius: 32px;
    background:
        radial-gradient(circle at 90% 14%, rgba(245, 197, 66, .26), transparent 26%),
        radial-gradient(circle at 14% 16%, rgba(19, 165, 56, .14), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eefaf2 100%);
    box-shadow: var(--shadow-card);
}

.cart-hero::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -82px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(19, 165, 56, .08);
    pointer-events: none;
}

.cart-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 13px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--color-green-dark);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 8px 24px rgba(19, 33, 24, .05);
}

.cart-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-green);
}

.cart-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -0.052em;
}

.cart-hero h1 span {
    color: var(--color-green);
}

.cart-hero p {
    max-width: 660px;
    margin: 16px 0 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.7;
}

.cart-steps {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.cart-step {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid rgba(19, 165, 56, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 850;
}

.cart-step b {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 12px;
}

.cart-step.is-active {
    border-color: rgba(19, 165, 56, .3);
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}

.cart-shell {
    position: relative;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.cart-items-card,
.cart-summary,
.cart-help,
.cart-empty,
.cart-note-card {
    border: 1px solid var(--color-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-card);
}

.cart-items-card {
    overflow: hidden;
}

.cart-items-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border);
}

.cart-items-head h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.cart-items-head span {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 800;
}

.cart-items {
    display: grid;
}

.cart-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) 236px;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-border);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item__image {
    position: relative;
    overflow: hidden;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: #fff;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.cart-item__image-placeholder {
    color: var(--color-green-dark);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
}

.cart-item__content {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 8px;
}

.cart-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.cart-item__meta span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 12px;
    font-weight: 850;
}

.cart-item__title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -0.035em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: .2s ease;
}

.cart-item__title:hover {
    color: var(--color-green-dark);
}

.cart-item__desc {
    display: -webkit-box;
    overflow: hidden;
    max-width: 560px;
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item__options {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 2px;
}

.cart-item__option {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #fff;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.cart-item__right {
    display: grid;
    align-content: start;
    justify-items: end;
    gap: 10px;
}

.cart-item__price {
    text-align: right;
}

.cart-item__price strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.cart-item__price span {
    display: block;
    margin-top: 5px;
    color: #9aa69f;
    font-size: 12px;
    font-weight: 800;
    text-decoration: line-through;
}

.cart-item__price em {
    display: block;
    margin-top: 5px;
    color: var(--color-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 750;
}

.cart-item__form {
    display: grid;
    grid-template-columns: 116px auto;
    gap: 8px;
    align-items: center;
}

.cart-qty {
    width: 116px;
    height: 40px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
}

.cart-qty button {
    border: 0;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    transition: .2s ease;
}

.cart-qty button:hover {
    background: var(--color-green-soft);
    color: var(--color-green-dark);
}

.cart-qty input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: #fff;
    color: var(--color-text);
    text-align: center;
    font-weight: 900;
}

.cart-update {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.cart-remove {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(210, 75, 75, .18);
    border-radius: 14px;
    background: #fff;
    color: #b64747;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    transition: .2s ease;
}

.cart-remove:hover {
    background: #fff1f1;
    border-color: rgba(210, 75, 75, .32);
}

.cart-item__total {
    min-width: 160px;
    padding: 11px 12px;
    border-radius: 16px;
    background: var(--color-bg);
    text-align: right;
}

.cart-item__total span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.cart-item__total strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.cart-side {
    display: grid;
    gap: 14px;
}

.cart-summary {
    position: sticky;
    top: 126px;
    overflow: hidden;
    padding: 18px;
}

.cart-summary::before {
    content: "";
    display: block;
    height: 6px;
    margin: -18px -18px 18px;
    background: linear-gradient(90deg, var(--color-green), var(--color-accent));
}

.cart-summary h2,
.cart-help h3,
.cart-note-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.cart-summary__rows {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.cart-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 750;
}

.cart-summary__row strong {
    color: var(--color-text);
    font-weight: 900;
}

.cart-summary__row--total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 16px;
}

.cart-summary__row--total strong {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: -0.05em;
}

.cart-summary__notice {
    margin: 14px 0;
    padding: 13px;
    border: 1px solid rgba(19, 165, 56, .18);
    border-radius: 18px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
}

.cart-summary__actions {
    display: grid;
    gap: 10px;
}

.cart-checkout-btn,
.cart-continue-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 16px;
    font-weight: 900;
    transition: .2s ease;
}

.cart-checkout-btn {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    box-shadow: 0 16px 30px rgba(19, 165, 56, .22);
}

.cart-checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(19, 165, 56, .28);
}

.cart-continue-btn {
    border: 1px solid rgba(19, 165, 56, .22);
    background: #fff;
    color: var(--color-green-dark);
}

.cart-continue-btn:hover {
    background: var(--color-green-soft);
}

.cart-help,
.cart-note-card {
    padding: 18px;
}

.cart-help__list {
    display: grid;
    gap: 10px;
}

.cart-help__item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border-radius: 16px;
    background: var(--color-bg);
}

.cart-help__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--color-green-dark);
    font-weight: 900;
}

.cart-help__item strong {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

.cart-help__item span {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.45;
}

.cart-note-card {
    border-color: rgba(245, 197, 66, .34);
    background:
        radial-gradient(circle at 96% 0%, rgba(245, 197, 66, .18), transparent 36%),
        #fff;
}

.cart-note-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.65;
}

.cart-empty {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 28px;
}

.cart-empty__icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--color-green-soft);
    color: var(--color-green-dark);
    font-size: 28px;
    font-weight: 900;
}

.cart-empty h2 {
    margin: 0 0 8px;
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.cart-empty p {
    margin: 0;
    max-width: 620px;
    color: var(--color-muted);
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: relative;
        top: auto;
    }

    .cart-side {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
    }

    .cart-summary {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .cart-hero {
        grid-template-columns: 1fr;
        padding: 22px;
        border-radius: 28px;
    }

    .cart-steps {
        justify-content: flex-start;
    }

    .cart-item {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 14px;
    }

    .cart-item__image {
        width: 92px;
        height: 92px;
        border-radius: 18px;
    }

    .cart-item__right {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) auto;
        justify-items: stretch;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid var(--color-border);
    }

    .cart-item__price,
    .cart-item__total {
        text-align: left;
    }

    .cart-side {
        grid-template-columns: 1fr;
    }

    .cart-empty {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 560px) {
    .cart-page {
        padding-top: 22px;
    }

    .cart-hero h1 {
        font-size: clamp(32px, 10vw, 42px);
        letter-spacing: -0.045em;
    }

    .cart-hero p {
        font-size: 15px;
    }

    .cart-items-head {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
    }

    .cart-item {
        padding: 16px;
    }

    .cart-item__title {
        font-size: 17px;
    }

    .cart-item__desc,
    .cart-item__options {
        display: none;
    }

    .cart-item__right {
        grid-template-columns: 1fr;
    }

    .cart-item__form {
        grid-template-columns: 116px 1fr;
        width: 100%;
    }

    .cart-remove {
        width: 100%;
    }

    .cart-item__total {
        width: 100%;
        min-width: 0;
    }

    .cart-summary,
    .cart-help,
    .cart-note-card,
    .cart-empty {
        border-radius: 24px;
        padding: 16px;
    }

    .cart-summary::before {
        margin: -16px -16px 16px;
    }
}


/* ==============================
   v19: compact typography + unified buttons
   ============================== */
:root {
    --btn-height: 44px;
    --btn-height-sm: 40px;
    --btn-radius: 999px;
    --btn-padding-x: 20px;
    --btn-font-size: 14px;
    --btn-font-weight: 850;
}

body {
    font-size: 15px;
    line-height: 1.55;
}

/* Единая система кнопок сайта */
.btn,
.cart-checkout-btn,
.cart-continue-btn,
.cart-summary__checkout,
.product-buy-btn,
.product-one-click,
.catalog-product__btn {
    box-sizing: border-box;
    min-width: max-content;
    max-width: 100%;
    min-height: var(--btn-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 var(--btn-padding-x);
    border-radius: var(--btn-radius);
    border: 1px solid transparent;
    font-family: var(--font-main);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    line-height: 1;
    letter-spacing: -0.012em;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn--primary,
.cart-checkout-btn,
.cart-summary__checkout,
.product-buy-btn,
.catalog-product__btn {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: #fff;
    box-shadow: 0 12px 24px rgba(19, 165, 56, .18);
}

.btn--primary:hover,
.cart-checkout-btn:hover,
.cart-summary__checkout:hover,
.product-buy-btn:hover,
.catalog-product__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(19, 165, 56, .24);
}

.btn--secondary,
.cart-continue-btn,
.product-one-click {
    border-color: rgba(19, 165, 56, .24);
    background: #fff;
    color: var(--color-green-dark);
    box-shadow: none;
}

.btn--secondary:hover,
.cart-continue-btn:hover,
.product-one-click:hover {
    transform: translateY(-1px);
    background: var(--color-green-soft);
    border-color: rgba(19, 165, 56, .34);
    color: var(--color-green-dark);
}

.btn:focus-visible,
.cart-checkout-btn:focus-visible,
.cart-continue-btn:focus-visible,
.cart-summary__checkout:focus-visible,
.product-buy-btn:focus-visible,
.product-one-click:focus-visible,
.catalog-product__btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(19, 165, 56, .14);
}

/* Кнопки, которые должны занимать всю ширину своего блока */
.cart-summary__checkout,
.product-buy-btn,
.product-one-click {
    width: 100%;
}

/* Малые кнопки в карточках каталога */
.catalog-product__btn {
    min-height: var(--btn-height-sm);
    padding: 0 16px;
    font-size: 13px;
}

/* Header / навигация */
.header-cart,
.main-nav__link,
.catalog-chip,
.cart-step,
.product-label,
.catalog-hero__badge {
    font-size: 13px;
    line-height: 1.15;
}

.section {
    padding: 46px 0;
}

.section-head h2,
.about-head h2,
.contacts-head h2,
.product-related__head h2 {
    font-size: clamp(26px, 2.55vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.038em;
}

.hero h1,
.about-hero h1,
.contacts-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.042em;
}

.catalog-hero h1,
.cart-hero h1 {
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.038em;
}

.product-title {
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.07;
    letter-spacing: -0.04em;
}

.hero__text,
.about-hero__text,
.contacts-hero__text,
.catalog-hero__text,
.cart-hero p,
.product-intro {
    font-size: 15px;
    line-height: 1.62;
}

.hero__eyebrow,
.about-kicker,
.contacts-kicker,
.cart-kicker {
    font-size: 13px;
    min-height: 34px;
    padding: 7px 12px;
}

.hero-badge strong,
.about-stat strong {
    font-size: 17px;
}

.category-card h3,
.product-card h3,
.catalog-product__title,
.cart-item__title {
    font-size: 16px;
    line-height: 1.16;
    letter-spacing: -0.028em;
}

.catalog-product__price-current,
.price,
.cart-item__price strong,
.cart-item__total strong {
    font-size: 19px;
    letter-spacing: -0.035em;
}

.contacts-map-card h2,
.contacts-form-card h2,
.contacts-reviews-card h2,
.contacts-faq-card h2,
.contacts-requisites-card h2,
.about-story__card h2,
.about-team__content h2,
.about-warning-box h2,
.contacts-warning h2,
.product-delivery-card h3,
.product-warning-card h3,
.product-reviews-card h3,
.cart-summary h2,
.cart-help h2,
.cart-note-card h2 {
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

/* Корзина */
.cart-page {
    padding: 26px 0 58px;
}

.cart-breadcrumbs {
    margin-bottom: 16px;
    font-size: 13px;
}

.cart-hero {
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 18px;
    margin-bottom: 20px;
    padding: 24px 28px;
    border-radius: 28px;
}

.cart-hero p {
    max-width: 620px;
    margin-top: 12px;
}

.cart-steps {
    align-self: end;
    gap: 8px;
}

.cart-step {
    min-height: 34px;
    padding: 0 11px;
    white-space: nowrap;
}

.cart-step b {
    width: 20px;
    height: 20px;
    font-size: 11px;
}

.cart-empty {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 22px 26px;
}

.cart-empty__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 23px;
}

.cart-empty h2 {
    margin-bottom: 6px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.038em;
}

.cart-empty p {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.55;
}

.cart-empty .cart-checkout-btn {
    justify-self: end;
    min-width: max-content;
    padding-inline: 22px;
}

.cart-items-head h2 {
    font-size: 21px;
}

.cart-summary__total strong {
    font-size: 28px;
}

.cart-summary__checkout {
    min-height: 48px;
}

@media (max-width: 1100px) {
    .cart-hero {
        grid-template-columns: 1fr;
    }

    .cart-steps {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    :root {
        --btn-height: 42px;
        --btn-height-sm: 38px;
        --btn-padding-x: 16px;
        --btn-font-size: 13px;
    }

    body {
        font-size: 14px;
    }

    .section {
        padding: 34px 0;
    }

    .hero h1,
    .about-hero h1,
    .contacts-hero h1,
    .catalog-hero h1,
    .cart-hero h1 {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.07;
        letter-spacing: -0.035em;
    }

    .product-title {
        font-size: clamp(25px, 7.2vw, 32px);
    }

    .section-head h2,
    .about-head h2,
    .contacts-head h2,
    .product-related__head h2 {
        font-size: clamp(24px, 7vw, 31px);
    }

    .hero__text,
    .about-hero__text,
    .contacts-hero__text,
    .catalog-hero__text,
    .cart-hero p,
    .product-intro {
        font-size: 14px;
        line-height: 1.58;
    }

    .cart-hero {
        padding: 20px;
        border-radius: 24px;
    }

    .cart-kicker {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
    }

    .cart-steps {
        display: none;
    }

    .cart-empty {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
    }

    .cart-empty__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 20px;
    }

    .cart-empty h2 {
        font-size: 24px;
    }

    .cart-empty p {
        font-size: 14px;
    }

    .cart-empty .cart-checkout-btn {
        grid-column: 1 / -1;
        justify-self: start;
        width: auto;
        max-width: 100%;
        padding-inline: 18px;
    }
}

@media (max-width: 390px) {
    .hero__actions .btn,
    .about-hero__actions .btn,
    .contacts-hero__actions .btn {
        width: auto;
    }

    .cart-empty .cart-checkout-btn {
        justify-self: stretch;
        width: 100%;
    }
}
