:root {
    --bg: #f3f7f3;
    --surface: #ffffff;
    --surface-soft: #e8efe9;
    --text: #10231a;
    --muted: #4f675b;
    --primary: #1f7a48;
    --primary-dark: #145232;
    --accent: #61b57f;
    --line: #c8d7cc;
    --metal: #6e7f7a;
    --shadow: 0 18px 45px rgba(8, 31, 20, 0.12);
    --radius: 20px;
    --transition: 0.14s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: "Exo 2", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(74, 151, 108, 0.12), transparent 34%),
        radial-gradient(circle at 90% 85%, rgba(52, 95, 75, 0.12), transparent 30%),
        var(--bg);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--primary-dark);
    font-weight: 700;
    transition: gap var(--transition);
}

.text-link::after {
    content: "→";
}

.text-link:hover {
    gap: 13px;
}

.chip {
    margin: 0;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 122, 72, 0.12);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 24px rgba(17, 87, 53, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 16px 30px rgba(17, 87, 53, 0.34);
}

.btn-ghost {
    color: var(--primary-dark);
    border-color: rgba(19, 90, 55, 0.25);
    background: rgba(255, 255, 255, 0.75);
}

.btn-ghost:hover {
    background: #fff;
    border-color: rgba(19, 90, 55, 0.5);
}

.btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-small {
    padding: 9px 14px;
    font-size: 13px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(14px);
    background: rgba(243, 247, 243, 0.86);
    border-bottom: 1px solid rgba(167, 190, 176, 0.45);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(21, 47, 33, 0.15);
    background: rgba(243, 247, 243, 0.96);
}

.top-strip {
    background:
        linear-gradient(90deg, rgba(14, 74, 43, 0.95), rgba(20, 103, 61, 0.95)),
        repeating-linear-gradient(120deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 19px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.top-strip__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-strip__inner p {
    margin: 0;
}

.top-strip__contacts {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-strip__contacts a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.navbar {
    min-height: 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__text {
    min-width: 0;
}

.brand__logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #fff;
    background:
        linear-gradient(145deg, #49a76f, #146b3d),
        repeating-linear-gradient(45deg, transparent 0 7px, rgba(255, 255, 255, 0.1) 7px 8px);
    box-shadow: 0 12px 24px rgba(25, 89, 58, 0.28);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand__text strong {
    font-family: "Jura", sans-serif;
    font-size: 24px;
    letter-spacing: 0.02em;
}

.brand__text small {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.nav-panel > a,
.nav-dropdown__toggle {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    border: 0;
    background: transparent;
    padding: 6px 0;
    white-space: nowrap;
    cursor: pointer;
    transition: color var(--transition);
}

.nav-panel > a::after,
.nav-dropdown__toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-panel > a:hover,
.nav-dropdown__toggle:hover {
    color: var(--text);
}

.nav-panel > a:hover::after,
.nav-dropdown__toggle:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 2px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown__menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown__menu a:hover {
    background: rgba(24, 113, 67, 0.08);
    color: var(--primary-dark);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-cart-link--mobile {
    display: none;
}

.header-cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.header-cart-count.is-empty {
    display: none;
}

.catalog-card .product-card__media.js-open-preview {
    cursor: pointer;
}

.catalog-card .product-card__media.js-open-preview:focus-visible {
    outline: 2px solid rgba(31, 122, 72, 0.4);
    outline-offset: 3px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary-dark);
    font-size: 18px;
    cursor: pointer;
}

.hero {
    position: relative;
    padding: 24px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(23, 92, 56, 0.98), rgba(13, 54, 33, 0.95)),
        radial-gradient(circle at 20% 10%, rgba(127, 208, 163, 0.26), transparent 42%);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 12% -25% auto auto;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 178, 139, 0.35), transparent 65%);
    filter: blur(10px);
    z-index: -1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    animation: gridShift 5s linear infinite;
    opacity: 0.45;
}

@keyframes gridShift {
    from { transform: translateY(0); }
    to { transform: translateY(68px); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero__content {
    color: #fff;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.03;
}

.hero p {
    margin: 0 0 24px;
    color: rgba(237, 245, 240, 0.92);
    font-size: 18px;
    line-height: 1.5;
}

.hero__bullets {
    margin: -6px 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero__bullets li {
    position: relative;
    padding-left: 24px;
    color: rgba(229, 242, 234, 0.95);
    font-size: 15px;
}

.hero__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ad29d, #d2f1df);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero__contact {
    margin: -8px 0 22px;
    font-size: 14px;
    color: rgba(225, 240, 231, 0.88);
}

.hero__contact a {
    font-weight: 700;
    color: #fff;
}

.hero__metrics {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__metrics li {
    min-width: 140px;
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__metrics strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.hero__metrics span {
    font-size: 12px;
    color: rgba(229, 242, 234, 0.88);
}

.hero--focused {
    padding-bottom: 64px;
}

.hero__inner--focused {
    align-items: start;
}

.hero__visual--stack {
    display: grid;
    gap: 18px;
}

.hero-contact-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        radial-gradient(circle at top right, rgba(130, 215, 169, 0.24), transparent 36%),
        rgba(10, 35, 22, 0.84);
    box-shadow: 0 20px 40px rgba(3, 17, 11, 0.24);
    color: #fff;
}

.hero-contact-card .eyebrow {
    margin-bottom: 0;
    color: rgba(197, 239, 214, 0.84);
}

.hero-contact-card p {
    margin: 0;
    color: rgba(232, 244, 237, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

.hero-contact-card__phone {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: "Jura", sans-serif;
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.hero-contact-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-photo-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 36px rgba(3, 17, 11, 0.2);
}

.hero-photo-card::after,
.home-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 42, 27, 0.02), rgba(8, 27, 17, 0.72));
    pointer-events: none;
}

.hero-photo-card img,
.focus-card__media img,
.home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(calc(var(--img-scale, 100) / 100));
    transform-origin: center;
}

.hero-photo-card span,
.home-gallery-card__label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(7, 26, 16, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.metal-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(1, 17, 10, 0.34);
}

.metal-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.21), transparent 48%),
        repeating-linear-gradient(35deg, transparent 0 10px, rgba(255, 255, 255, 0.07) 10px 11px);
}

.metal-frame img {
    width: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.metal-frame__badge {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(14, 49, 32, 0.82);
    color: rgba(236, 245, 239, 0.95);
    font-weight: 500;
}

.page-hero {
    padding: 24px 0 44px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(219, 233, 223, 0.55), rgba(243, 247, 243, 0));
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.page-hero p {
    margin: 0;
    max-width: 840px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.page-hero__direct {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 14px;
}

.page-hero__contact-link {
    display: grid;
    gap: 6px;
    min-width: 280px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(31, 122, 72, 0.16);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(18, 52, 34, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.page-hero__contact-link:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 122, 72, 0.3);
    box-shadow: 0 18px 34px rgba(18, 52, 34, 0.12);
}

.page-hero__contact-link strong {
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.05;
    color: var(--primary-dark);
    overflow-wrap: anywhere;
}

.page-hero__contact-link--phone strong {
    letter-spacing: 0.01em;
}

.page-hero__contact-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.page-hero--delivery {
    padding-bottom: 34px;
    overflow: hidden;
}

.delivery-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 26px;
    align-items: stretch;
}

.delivery-hero__content,
.delivery-panel,
.delivery-trust__content {
    border-radius: 30px;
    border: 1px solid rgba(213, 225, 216, 0.9);
    background:
        radial-gradient(circle at top right, rgba(127, 191, 155, 0.24), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), #f8fbf8);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.09);
}

.delivery-hero__content {
    padding: 34px;
}

.delivery-hero__lead {
    margin: 0;
    max-width: 720px;
    color: #547063;
    font-size: 18px;
    line-height: 1.7;
}

.delivery-hero__actions {
    margin: 28px 0 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.delivery-hero__stats {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.delivery-hero__stats li {
    padding: 18px;
    border-radius: 20px;
    background: rgba(248, 251, 249, 0.9);
    border: 1px solid rgba(207, 221, 211, 0.86);
}

.delivery-hero__stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
    color: #123725;
}

.delivery-hero__stats span {
    color: #567164;
    line-height: 1.5;
}

.delivery-hero__visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.delivery-hero__card {
    position: relative;
    overflow: hidden;
    min-height: 214px;
    border-radius: 24px;
    border: 1px solid rgba(213, 225, 216, 0.84);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.12);
    animation: deliveryFloat 3s ease-in-out infinite;
}

.delivery-hero__card--1 {
    grid-row: span 2;
    min-height: 442px;
}

.delivery-hero__card--2 {
    animation-delay: 0.35s;
}

.delivery-hero__card--3 {
    animation-delay: 0.14s;
}

.delivery-hero__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 42, 27, 0.04), rgba(8, 27, 17, 0.74));
}

.delivery-hero__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-hero__card span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    width: fit-content;
    border-radius: 999px;
    background: rgba(8, 27, 17, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.delivery-carriers__head {
    margin-bottom: 20px;
}

.delivery-carriers__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.delivery-carrier,
.delivery-trust__services span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(58, 103, 79, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: #244633;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(17, 55, 35, 0.05);
}

.delivery-carriers__note {
    margin: 16px 0 0;
    max-width: 900px;
    color: #567164;
    line-height: 1.65;
}

.delivery-option {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(204, 219, 209, 0.92);
    background:
        radial-gradient(circle at top right, rgba(128, 191, 155, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fbf9);
    box-shadow: 0 14px 28px rgba(17, 55, 35, 0.07);
}

.delivery-option__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--primary-dark);
    background: linear-gradient(145deg, rgba(96, 182, 139, 0.24), rgba(34, 99, 66, 0.12));
}

.delivery-option h3,
.delivery-payment__card h3,
.delivery-step h3 {
    margin: 0 0 10px;
}

.delivery-option p,
.delivery-payment__card p,
.delivery-step p {
    margin: 0;
    color: #567164;
    line-height: 1.62;
}

.delivery-option small {
    display: block;
    margin-top: 14px;
    color: #678175;
    font-weight: 600;
}

.delivery-payment {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: start;
}

.delivery-panel {
    padding: 30px;
}

.delivery-panel__head {
    margin-bottom: 20px;
}

.delivery-payment__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.delivery-payment__card {
    padding: 18px 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(208, 221, 212, 0.95);
    background: rgba(255, 255, 255, 0.9);
}

.delivery-panel--accent {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(129, 215, 168, 0.18), transparent 30%),
        linear-gradient(160deg, #113523, #1d5e3a 72%);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.delivery-panel--accent::after,
.delivery-cta__inner::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 215, 168, 0.16), transparent 68%);
    pointer-events: none;
}

.delivery-panel--accent .eyebrow,
.delivery-cta__inner .eyebrow {
    color: rgba(209, 241, 223, 0.82);
}

.delivery-panel--accent h2,
.delivery-panel--accent p,
.delivery-panel--accent .check-list li {
    color: #fff;
}

.delivery-panel--accent .check-list li::before {
    background: linear-gradient(135deg, #8fe2af, #ffffff);
}

.delivery-panel__cta {
    margin-top: 26px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-panel__cta strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Jura", sans-serif;
    font-size: 32px;
    line-height: 1;
}

.delivery-panel__cta p {
    margin: 0 0 14px;
    color: rgba(233, 244, 237, 0.86);
}

.delivery-panel__cta .btn-light {
    min-height: 46px;
}

.delivery-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.delivery-step {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(204, 219, 209, 0.9);
    background: #fff;
    box-shadow: 0 14px 28px rgba(17, 55, 35, 0.06);
}

.delivery-step__number {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(44, 128, 78, 0.12), rgba(23, 81, 49, 0.08));
    color: var(--primary-dark);
    font-family: "Jura", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.delivery-trust {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.delivery-trust__media {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(213, 225, 216, 0.9);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.1);
    min-height: 100%;
}

.delivery-trust__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-trust__content {
    padding: 30px;
}

.delivery-trust__services {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.delivery-cta__inner {
    position: relative;
    overflow: hidden;
    padding: 30px 32px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background:
        radial-gradient(circle at top right, rgba(129, 215, 168, 0.2), transparent 34%),
        linear-gradient(155deg, #113523, #1d5e3a 72%);
    box-shadow: 0 22px 40px rgba(13, 47, 30, 0.16);
}

.delivery-cta__inner h2 {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.08;
}

.delivery-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.delivery-cta__inner .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

@keyframes deliveryFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.contacts-hero {
    padding: 24px 0 28px;
}

.contacts-hero__cta-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.contacts-hero__actions {
    margin-top: 0;
    max-width: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    align-self: flex-start;
    min-height: 64px;
}

.contacts-hero__actions .btn {
    min-height: 64px;
    padding: 14px 22px;
    border-radius: 18px;
    font-size: 16px;
    white-space: nowrap;
}

.contacts-hero__cta-row .page-hero__direct {
    margin-top: 1;
    flex: 1;
    min-width: 0;
    height: 67px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: flex-start;
}

.contacts-hero__cta-row .page-hero__contact-link {
    min-width: 0;
    gap: 2px;
    padding: 8px 16px;
    height: 100%;
    min-height: 0;
    align-content: center;
}

.contacts-hero__cta-row .page-hero__contact-link strong {
    font-size: clamp(15px, 1.45vw, 20px);
}

.page-hero--compact {
    padding: 24px 0 32px;
}

.section {
    padding: 70px 0;
}

.section--alt {
    background: linear-gradient(180deg, rgba(229, 236, 231, 0.46), rgba(243, 247, 243, 0));
    border-top: 1px solid rgba(185, 203, 191, 0.38);
    border-bottom: 1px solid rgba(185, 203, 191, 0.38);
}

.section--compact {
    padding: 24px 0;
}

.section--request {
    background: linear-gradient(145deg, #113523, #1b5e3a);
    color: #fff;
}

.section-head {
    margin-bottom: 28px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
}

.section-actions {
    margin-top: 30px;
}

.catalog-hero-actions {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cards-grid {
    display: grid;
    gap: 18px;
}

.cards-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.category-card,
.product-card,
.review-card,
.article-card,
.contacts-panel {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #fff);
    box-shadow: 0 10px 24px rgba(35, 67, 50, 0.08);
}

.info-card,
.category-card,
.review-card,
.article-card,
.contacts-panel {
    padding: 24px;
}

.article-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.article-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -24px -24px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    min-height: 300px;
    height: 300px;
    padding: 14px;
}

.article-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(125, 147, 138, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(125, 147, 138, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000),
        1
    );
    transform-origin: center;
}

.article-card__media.is-media-missing,
.blog-featured__media.is-media-missing,
.blog-article-hero__visual.is-media-missing {
    display: none !important;
}

.article-media.is-media-missing,
.article-content img.is-media-missing,
.article-content p.is-media-missing {
    display: none !important;
}

.blog-featured__lead.is-media-missing,
.blog-article-hero.is-visual-missing {
    grid-template-columns: 1fr;
}

.article-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.article-card__topline,
.article-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.article-card__topline {
    margin-bottom: 2px;
}

.article-card__meta {
    margin-top: auto;
    color: #5d7468;
    font-size: 13px;
    font-weight: 600;
}

.article-card .text-link {
    margin-top: 2px;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17, 87, 53, 0.08);
    color: #214835;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.article-card--compact .article-card__media {
    min-height: 220px;
    height: 220px;
}

.article-card--news h3 {
    line-height: 1.28;
}

.page-hero--blog {
    padding-bottom: 26px;
}

.blog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: stretch;
}

.blog-hero__content,
.blog-hero__stats,
.blog-featured__lead,
.article-cta {
    border-radius: 28px;
    border: 1px solid rgba(213, 225, 216, 0.9);
    background:
        radial-gradient(circle at top right, rgba(127, 191, 155, 0.28), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), #f8fbf8);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.09);
}

.blog-hero__content {
    padding: 34px;
}

.blog-hero__content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4.7vw, 56px);
    line-height: 1.02;
}

.blog-hero__content p:last-child {
    margin: 0;
    max-width: 760px;
    color: #547063;
    font-size: 17px;
    line-height: 1.7;
}

.blog-hero__stats {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.blog-hero__stats div {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(246, 251, 247, 0.92);
    border: 1px solid rgba(207, 221, 211, 0.9);
}

.blog-hero__stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: 34px;
    line-height: 1;
    color: #113825;
}

.blog-hero__stats span {
    color: #557063;
    font-weight: 600;
}

.blog-controls {
    gap: 18px;
}

.blog-controls .filter-btn span {
    color: #557063;
}

.blog-featured {
    margin-top: 18px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 18px;
}

.blog-featured__lead {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    overflow: hidden;
}

.blog-featured__media {
    position: relative;
    display: block;
    min-height: 100%;
    background: #eef4ef;
}

.blog-featured__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(125, 147, 138, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(125, 147, 138, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.blog-featured__media img,
.blog-article-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000),
        1
    );
    transform-origin: center;
}

.blog-featured__body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-featured__body h2 {
    margin: 0;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
}

.blog-featured__body h2 a {
    color: inherit;
}

.blog-featured__body p {
    margin: 0;
    color: #557063;
    line-height: 1.65;
}

.blog-featured__aside {
    display: grid;
    gap: 18px;
}

.page-hero--blog-detail {
    padding-bottom: 24px;
}

.blog-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 24px;
    align-items: stretch;
}

.blog-article-hero__content,
.blog-article-hero__visual {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(213, 225, 216, 0.9);
    background:
        radial-gradient(circle at top right, rgba(127, 191, 155, 0.24), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), #f8fbf8);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.09);
}

.blog-article-hero__content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-article-hero__content h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
}

.blog-article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: #547063;
    font-size: 13px;
    font-weight: 700;
}

.blog-article-hero__visual {
    min-height: 420px;
}

.article-body {
    width: min(860px, 100%);
    margin: 0 auto;
}

.info-card h3,
.category-card h3,
.review-card h3,
.article-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.info-card p,
.category-card p,
.review-card p,
.article-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.info-card small {
    margin-top: 10px;
    display: block;
    color: #647d71;
    font-weight: 600;
}

.info-card__icon,
.category-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 19px;
    color: var(--primary-dark);
    background: linear-gradient(145deg, rgba(100, 188, 143, 0.3), rgba(39, 111, 73, 0.17));
}

.category-card .text-link {
    margin-top: 14px;
}

.home-priority {
    padding-top: 24px;
}

.home-priority__intro p:last-child {
    margin: 14px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.6;
}

.focus-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
    box-shadow: 0 12px 28px rgba(19, 49, 33, 0.09);
    transition: transform var(--transition), box-shadow var(--transition);
}

.focus-card:hover,
.home-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(16, 52, 34, 0.18);
}

.focus-card__media {
    display: block;
    min-height: 220px;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.focus-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.focus-card__body h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
}

.focus-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.focus-card__tags {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.focus-card__tags li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(26, 104, 62, 0.09);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.focus-card .btn {
    width: 100%;
    margin-top: auto;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(17, 58, 38, 0.2);
}

.product-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    min-height: 250px;
    height: 250px;
    padding: 14px;
}

.product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(125, 147, 138, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(125, 147, 138, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000),
        1
    );
    transform-origin: center;
}

.product-card__body {
    padding: 20px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
}

.product-card__body h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.product-card__body > p:not(.chip) {
    flex: 1 1 auto;
    min-height: calc(1em * 1.5 * 3);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.product-card__body > .product-card__meta {
    margin-top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    color: #4d6a5d;
    min-height: 56px;
}

.product-card__meta > :first-child,
.product-card__body > .product-card__meta > :first-child {
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-card__meta strong {
    color: var(--primary-dark);
    font-size: 24px;
    text-align: right;
    justify-self: end;
    align-self: end;
    white-space: nowrap;
}

.product-card__body > .product-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.product-card__body > .product-card__actions .btn {
    width: 100%;
    min-height: 42px;
    text-align: center;
}

.product-card__actions--catalog,
.product-card__actions--related,
.product-card__actions--detail,
.product-card__actions--modal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(58, 103, 79, 0.1);
    background: linear-gradient(180deg, rgba(241, 247, 243, 0.94), rgba(255, 255, 255, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-card__actions--catalog .btn-action,
.product-card__actions--related .btn-action,
.product-card__actions--detail .btn-action,
.product-card__actions--modal .btn-action {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: normal;
    box-shadow: none;
}

.product-card__actions--catalog .btn-action:hover,
.product-card__actions--related .btn-action:hover,
.product-card__actions--detail .btn-action:hover,
.product-card__actions--modal .btn-action:hover {
    transform: translateY(-1px);
}

.btn-action--view,
.btn-action--detail {
    color: #294535;
    border-color: rgba(58, 103, 79, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

.btn-action--view:hover,
.btn-action--detail:hover {
    border-color: rgba(31, 122, 72, 0.34);
    background: #fff;
}

.btn-action--add {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #2f8a57, #1f5f3e);
    box-shadow: 0 10px 20px rgba(24, 92, 58, 0.2);
}

.btn-action--add:hover {
    background: linear-gradient(135deg, #2a7d4f, #184a31);
    box-shadow: 0 12px 22px rgba(24, 92, 58, 0.28);
}

.btn-action--quick {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #1f7a48, #163b28);
    box-shadow: 0 12px 22px rgba(17, 87, 53, 0.2);
}

.btn-action--quick:hover {
    box-shadow: 0 14px 26px rgba(17, 87, 53, 0.28);
}

.btn-action--quote {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #315947, #1f3e31);
}

.btn-action--quote:hover {
    background: linear-gradient(135deg, #2b503f, #173127);
}

.product-card__actions--related .btn-action--quick,
.product-card__actions--modal .btn-action--quick {
    grid-column: 1 / -1;
}

.product-card__actions--detail .btn-action--quick {
    grid-column: 1 / -1;
    order: -1;
}

.request-grid,
.service-layout,
.contacts-grid,
.product-detail {
    display: grid;
    gap: 22px;
}

.request-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.request-grid--cart {
    align-items: start;
}

.request-grid h2,
.request-grid p {
    color: #fff;
    margin-top: 0;
}

.request-grid p {
    color: rgba(226, 239, 231, 0.88);
}

.request-form {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(222, 230, 226, 0.6);
    background: #fff;
    box-shadow: var(--shadow);
}

.request-grid--cart .request-form {
    gap: 16px;
    align-content: start;
    padding: 26px;
    background: linear-gradient(180deg, #ffffff, #f7faf8);
}

.request-grid--cart .section-head {
    margin-bottom: 2px;
}

.request-grid--cart .request-form h2,
.request-grid--cart .request-form h3,
.request-grid--cart .request-form .section-head h2 {
    color: var(--text);
}

.request-grid--cart .request-form p,
.request-grid--cart .request-form .section-head p,
.request-grid--cart .request-form .cart-quote-item__category,
.request-grid--cart .request-form .form-note {
    color: #5d7468;
}

.request-grid--cart .request-form .eyebrow {
    color: var(--primary);
}

.request-grid--cart .request-form .chip {
    color: var(--primary-dark);
}

.request-grid--cart .preview-specs {
    margin-top: 0;
    background: #fff;
}

.request-grid--cart .preview-specs span {
    color: #60776a;
}

.request-grid--cart .preview-specs strong {
    color: #173828;
}

.request-grid--cart .cart-quote-item__actions .btn {
    background: #fff;
}

.request-grid--cart .cart-quote-form .btn-primary {
    width: 100%;
}

.request-form h2,
.request-form h3 {
    margin: 0 0 6px;
}

.request-form__lead {
    margin: -2px 0 2px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.request-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.request-form__wide {
    grid-column: 1 / -1;
    min-height: 174px;
}

.request-form--hero {
    gap: 10px;
    padding: 22px;
    align-content: start;
}

#request-form {
    scroll-margin-top: 138px;
}

.contacts-showcase__form .request-form__grid {
    grid-template-columns: 1fr;
}

.contacts-showcase__form .request-form__wide {
    grid-column: auto;
}

.contacts-showcase__form .btn {
    width: 100%;
}

.request-form--hero h2,
.contacts-showcase__map h2 {
    font-size: clamp(26px, 2.2vw, 32px);
    line-height: 1.1;
}

.request-form--hero .form-note {
    margin-top: auto;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #c5d4c8;
    background: #fff;
    color: var(--text);
    padding: 12px 13px;
    font: inherit;
    resize: vertical;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.request-form--empty {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cart-quote-list {
    display: grid;
    gap: 16px;
}

.cart-quote-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #d5e2d8;
    background: #f9fbf9;
}

.cart-quote-item__media {
    display: block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #d5e2d8;
}

.cart-quote-item__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.cart-quote-item__body {
    display: grid;
    gap: 10px;
}

.cart-quote-item__top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.cart-quote-item__category {
    color: #587061;
    font-size: 13px;
    font-weight: 600;
}

.cart-quote-item__body h3,
.cart-quote-item__body h3 a {
    margin: 0;
    color: var(--text);
    font-size: 22px;
    line-height: 1.18;
}

.cart-quote-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #587061;
    font-size: 14px;
}

.cart-quote-item__meta strong {
    color: var(--primary-dark);
}

.cart-quote-item__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.cart-quote-item__qty {
    min-width: 68px;
    color: var(--text);
    font-weight: 700;
    text-align: center;
}

.cart-quote-form {
    display: grid;
    gap: 12px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(47, 122, 76, 0.18);
}

.request-grid--home {
    align-items: stretch;
}

.home-request .request-form {
    height: 100%;
}

.home-request .request-form h2 {
    color: var(--primary-dark);
}

.home-request .request-form .request-form__lead {
    color: #355a49;
}

.home-request .request-form .form-note {
    color: #5d7468;
}

.home-request .request-form .form-note a {
    color: var(--primary-dark);
}

.home-direct {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-direct h2 {
    margin: 0;
    font-size: clamp(30px, 3.3vw, 44px);
    line-height: 1.06;
}

.home-direct p {
    margin: 0;
    max-width: 720px;
}

.home-direct__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.home-direct__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: "Jura", sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1;
}

.home-direct__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.home-direct__list li {
    position: relative;
    padding-left: 24px;
    color: rgba(226, 239, 231, 0.9);
    line-height: 1.55;
}

.home-direct__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8cd9ac, #d8f3e4);
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.home-gallery-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 28px rgba(19, 49, 33, 0.09);
    transition: transform var(--transition), box-shadow var(--transition);
}

.review-card small,
.article-card small {
    margin-top: 10px;
    display: block;
    color: #6c8278;
}

.article-card .text-link {
    margin-top: auto;
}

.process-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #fff);
    box-shadow: 0 10px 24px rgba(35, 67, 50, 0.08);
    padding: 24px;
}

.process-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 30px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.process-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.seo-copy {
    display: grid;
    gap: 14px;
}

.seo-copy p {
    margin: 0;
    color: #4d675a;
    line-height: 1.7;
}

.seo-copy__lead {
    font-size: 18px;
    font-weight: 600;
    color: #183829;
}

.seo-copy__list {
    margin: 2px 0 0;
}

.seo-copy__faq {
    margin-top: 18px;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid #cfdcd2;
    background: #fff;
    padding: 0 16px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700;
    color: #183829;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    color: var(--primary-dark);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0 0 14px;
    color: #4d675a;
    line-height: 1.6;
}

.check-list--compact {
    gap: 8px;
}

.check-list--compact li {
    font-size: 14px;
}

.form-note {
    margin: 0;
    font-size: 12px;
    color: #5d766a;
    line-height: 1.45;
}

.form-note a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.catalog-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 14px 16px;
    align-items: start;
    margin-bottom: 16px;
}

.catalog-shell {
    overflow-x: clip;
}

.catalog-stage {
    width: min(1640px, calc(100% - 24px));
    margin-left: 12px;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(248px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.catalog-compact {
    width: 100%;
    border: 1px solid #d6dbe1;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(18, 34, 24, 0.05);
    overflow: hidden;
    position: sticky;
    top: 104px;
    z-index: 4;
}

.catalog-compact--rail {
    border-radius: 24px;
    border-color: rgba(58, 103, 79, 0.16);
    background:
        radial-gradient(circle at top right, rgba(208, 234, 219, 0.56), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 246, 0.98));
    box-shadow: 0 20px 36px rgba(17, 55, 35, 0.08);
    top: 96px;
}

.catalog-compact__toggle {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid #dfe5ea;
    background: #f5f7f8;
    color: #273f33;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.catalog-compact__toggle i {
    font-size: 16px;
    transition: transform 0.1s ease;
}

.catalog-compact__toggle:not(.is-open) i {
    transform: rotate(180deg);
}

.catalog-compact--rail .catalog-compact__toggle {
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(180deg, #f8fbf8, #eef5f0);
}

.catalog-compact__group-hint {
    display: none;
}

.catalog-compact__group-hint--panel {
    display: none;
}

.catalog-compact__panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.14s ease, opacity 0.09s ease;
}

.catalog-compact__panel.is-open {
    max-height: 1200px;
    opacity: 1;
}

.catalog-compact--rail .catalog-compact__panel.is-open {
    max-height: calc(100vh - 270px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.catalog-compact__link,
.catalog-compact__child {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 18px;
    min-height: 56px;
    border: 0;
    border-top: 1px solid #e1e6ea;
    background: #fff;
    color: #1f3340;
    text-align: left;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.09s ease, color 0.09s ease;
    position: relative;
    z-index: 1;
}

.catalog-compact__link span,
.catalog-compact__child span {
    line-height: 1.35;
}

.catalog-compact__link:hover,
.catalog-compact__child:hover {
    background: #f3f7f5;
}

.catalog-compact__link.is-active,
.catalog-compact__child.is-active {
    background: #edf7f1;
    color: #1d5b39;
}

.catalog-compact--rail .catalog-compact__link.is-active::before,
.catalog-compact--rail .catalog-compact__child.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

.catalog-compact__link--all {
    font-weight: 700;
}

.catalog-compact__group.is-expanded .catalog-compact__arrow {
    transform: rotate(180deg);
}

.catalog-compact__arrow {
    color: #6f7f88;
    transition: transform 0.1s ease;
}

.catalog-compact__children {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.13s ease;
}

.catalog-compact__children.is-active {
    grid-template-rows: 1fr;
}

.catalog-compact__children-inner {
    min-height: 0;
    overflow: hidden;
    background: #f8fafb;
}

.catalog-compact__child {
    min-height: 48px;
    padding-left: 30px;
    font-size: 15px;
    background: #f8fafb;
}

.catalog-main {
    min-width: 0;
    display: grid;
    gap: 22px;
}

.catalog-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 26px 28px;
    border-radius: 28px;
    border: 1px solid rgba(58, 103, 79, 0.14);
    background:
        radial-gradient(circle at top right, rgba(126, 191, 154, 0.18), transparent 34%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 246, 0.98));
    box-shadow: 0 18px 34px rgba(17, 55, 35, 0.08);
}

.catalog-summary__copy {
    display: grid;
    gap: 14px;
}

.catalog-summary__title {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.catalog-summary__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(32, 124, 74, 0.14), rgba(26, 96, 59, 0.08));
    color: var(--primary-dark);
    font-size: 24px;
    box-shadow: inset 0 0 0 1px rgba(32, 124, 74, 0.12);
}

.catalog-summary h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.08;
}

.catalog-summary p {
    margin: 0;
    color: #557063;
    line-height: 1.6;
}

.catalog-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-summary__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(24, 104, 61, 0.12);
    color: #1d5b39;
    font-size: 13px;
    font-weight: 700;
}

.catalog-summary__badge--soft {
    background: rgba(217, 229, 221, 0.8);
    color: #355446;
}

.catalog-summary__actions {
    min-width: 240px;
    display: grid;
    gap: 10px;
}

.catalog-summary__actions .btn {
    min-height: 46px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 104px;
}

.catalog-sidebar__panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(58, 103, 79, 0.16);
    background:
        radial-gradient(circle at top right, rgba(208, 234, 219, 0.7), transparent 34%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 243, 0.98));
    box-shadow: 0 20px 40px rgba(17, 55, 35, 0.08);
    padding: 22px 18px 18px;
}

.catalog-sidebar__panel::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -76px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 121, 78, 0.12), transparent 68%);
    pointer-events: none;
}

.catalog-sidebar__header,
.catalog-sidebar__list {
    position: relative;
    z-index: 1;
}

.catalog-sidebar__header {
    margin-bottom: 18px;
}

.catalog-sidebar__header h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 2.1vw, 30px);
}

.catalog-sidebar__header p:last-child {
    margin: 0;
    color: #61776b;
    line-height: 1.55;
}

.catalog-sidebar__list {
    display: grid;
    gap: 10px;
}

.catalog-sidebar__item {
    display: grid;
    gap: 8px;
}

.catalog-sidebar__all,
.catalog-sidebar__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(58, 103, 79, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #284437;
    text-align: left;
    cursor: pointer;
    transition:
        transform 0.1s ease,
        box-shadow 0.1s ease,
        border-color 0.1s ease,
        background 0.1s ease,
        color 0.1s ease;
    box-shadow: 0 10px 18px rgba(20, 53, 35, 0.05);
}

.catalog-sidebar__all:hover,
.catalog-sidebar__trigger:hover,
.catalog-sidebar__item.is-current .catalog-sidebar__trigger {
    transform: translateX(4px);
    border-color: rgba(58, 103, 79, 0.22);
    box-shadow: 0 16px 28px rgba(20, 53, 35, 0.08);
}

.catalog-sidebar__all.is-active,
.catalog-sidebar__trigger.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 18px 32px rgba(29, 91, 57, 0.24);
}

.catalog-sidebar__all.is-active .catalog-sidebar__icon,
.catalog-sidebar__trigger.is-active .catalog-sidebar__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.catalog-sidebar__all.is-active .catalog-sidebar__copy small,
.catalog-sidebar__trigger.is-active .catalog-sidebar__copy small {
    color: rgba(255, 255, 255, 0.78);
}

.catalog-sidebar__trigger-body {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.catalog-sidebar__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(219, 236, 225, 0.9), rgba(243, 249, 245, 0.98));
    color: var(--primary-dark);
    box-shadow: inset 0 0 0 1px rgba(58, 103, 79, 0.12);
}

.catalog-sidebar__copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.catalog-sidebar__copy strong {
    font-size: 15px;
    line-height: 1.25;
}

.catalog-sidebar__copy small {
    color: #61776b;
    line-height: 1.4;
}

.catalog-sidebar__chevron {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(222, 236, 227, 0.72);
    color: #365846;
    transition: transform 0.13s ease, background 0.13s ease, color 0.13s ease;
}

.catalog-sidebar__trigger.is-active .catalog-sidebar__chevron {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.catalog-sidebar__item.is-expanded .catalog-sidebar__chevron {
    transform: rotate(180deg);
}

.catalog-sidebar__children {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.15s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.1s ease;
}

.catalog-sidebar__children.is-active {
    grid-template-rows: 1fr;
    opacity: 1;
}

.catalog-sidebar__children-inner {
    min-height: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(58, 103, 79, 0.12);
    background: rgba(245, 249, 246, 0.92);
    padding: 12px;
}

.catalog-sidebar__children-title {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #60756a;
}

.catalog-sidebar__children-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-sidebar__children-list .filter-btn--child {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
}

.catalog-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(58, 103, 79, 0.12);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 246, 0.96));
    box-shadow: 0 14px 26px rgba(17, 55, 35, 0.05);
}

.catalog-toolbar--side {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 0;
    padding: 16px 16px 14px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #dfe5ea;
    box-shadow: none;
    background: linear-gradient(180deg, #fafcfa, #f3f7f4);
}

.catalog-toolbar__copy {
    display: grid;
    gap: 5px;
}

.catalog-toolbar__hint {
    margin: 0;
    color: #667d71;
    font-size: 12px;
    line-height: 1.5;
}

.catalog-toolbar__eyebrow {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #60756a;
}

.catalog-toolbar .catalog-counter {
    margin: 0;
    font-size: 15px;
    color: #486255;
}

.catalog-toolbar .catalog-search {
    width: min(360px, 100%);
    justify-self: auto;
}

.catalog-toolbar--side .catalog-search {
    width: 100%;
}

.catalog-toolbar .catalog-search input {
    min-height: 54px;
    border-radius: 16px;
    padding: 0 16px;
    background: #fff;
}

.catalog-toolbar--side .catalog-search input {
    min-height: 50px;
    border-radius: 12px;
}

.catalog-filters-stack {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-filters--secondary {
    gap: 6px;
}

.catalog-subfilters {
    position: relative;
    overflow: hidden;
    max-height: 0;
    margin-top: 2px;
    opacity: 0;
    transform: translateY(-6px);
    border-radius: 14px;
    border: 1px solid rgba(58, 103, 79, 0.14);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 245, 0.96));
    box-shadow: 0 10px 20px rgba(15, 53, 35, 0.08);
    transition: max-height 0.16s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.09s ease, transform 0.1s ease;
    pointer-events: none;
    will-change: max-height, opacity, transform;
    width: min(620px, 100%);
}

.catalog-subfilters.is-open {
    max-height: 240px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: childPanelPop 0.1s ease;
}

.catalog-subfilters__group {
    display: none;
    padding: 10px 12px 11px;
}

.catalog-subfilters__group.is-active {
    display: block;
    animation: subfiltersAppear 0.13s ease;
}

.catalog-subfilters__title {
    margin: 0 0 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #62786d;
}

@keyframes subfiltersAppear {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes childPanelPop {
    from {
        opacity: 0;
        transform: translateY(-9px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileCatalogRailIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.992);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileCatalogPanelDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileCatalogChildrenIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(44, 93, 65, 0.25);
    padding: 0 14px;
    background: #fff;
    color: #355446;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn--child {
    min-height: 30px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 600;
    border-color: rgba(67, 108, 86, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: #466457;
}

.catalog-subfilters .filter-btn--child:hover,
.catalog-subfilters .filter-btn--child.is-active {
    background: rgba(31, 122, 72, 0.15);
    border-color: rgba(31, 122, 72, 0.34);
    color: #1d5b39;
}

.filter-btn:hover,
.filter-btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: #fff;
}

.catalog-search {
    width: 100%;
    justify-self: end;
}

.catalog-search input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #c5d4c8;
    background: #fff;
    padding: 11px 13px;
    font: inherit;
}

.catalog-counter {
    margin: 0 0 22px;
    color: #5b7065;
}

.catalog-card.is-hidden {
    display: none;
}

#catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(292px, 1fr));
    gap: 22px;
}

.catalog-card {
    border-radius: 24px;
    border-color: rgba(58, 103, 79, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 249, 0.98));
    box-shadow: 0 14px 28px rgba(17, 55, 35, 0.08);
}

.catalog-card .product-card__media {
    min-height: 270px;
    height: 270px;
    background:
        linear-gradient(145deg, rgba(233, 240, 235, 0.78), rgba(248, 251, 249, 0.98)),
        repeating-linear-gradient(45deg, transparent 0 11px, rgba(98, 124, 110, 0.06) 11px 12px);
}

.catalog-card .product-card__body {
    gap: 14px;
    padding: 22px;
}

.catalog-card .product-card__body h3 {
    font-size: 20px;
}

.catalog-card .product-card__body > p:not(.chip) {
    min-height: calc(1em * 1.52 * 3);
}

.catalog-card .product-card__meta {
    padding-top: 12px;
    border-top: 1px solid rgba(58, 103, 79, 0.12);
}

.empty-state {
    grid-column: 1 / -1;
    border-radius: 18px;
    border: 1px dashed #b8cfc0;
    background: #f8fbf8;
    padding: 34px;
    text-align: center;
}

.empty-state h3 {
    margin-top: 0;
}

.not-found-hero {
    position: relative;
    overflow: hidden;
}

.not-found-hero::before,
.not-found-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.not-found-hero::before {
    width: 340px;
    height: 340px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(96, 181, 127, 0.2), transparent 68%);
}

.not-found-hero::after {
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(18, 82, 50, 0.18), transparent 70%);
}

.not-found-hero__shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: stretch;
}

.not-found-hero__main,
.not-found-card {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    border: 1px solid rgba(185, 205, 191, 0.7);
    box-shadow: 0 24px 48px rgba(11, 35, 22, 0.12);
}

.not-found-hero__main {
    padding: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 244, 0.94)),
        linear-gradient(135deg, rgba(96, 181, 127, 0.08), transparent 45%);
}

.not-found-hero__code {
    margin: 12px 0 4px;
    font-family: "Jura", sans-serif;
    font-size: clamp(92px, 16vw, 168px);
    line-height: 0.88;
    letter-spacing: 0.04em;
    color: rgba(18, 82, 50, 0.12);
    text-shadow: 0 16px 34px rgba(17, 87, 53, 0.08);
}

.not-found-hero__main h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1;
}

.not-found-hero__lead {
    margin: 0;
    max-width: 700px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.not-found-hero__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.not-found-hero__meta {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.not-found-meta-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(18, 82, 50, 0.05);
    border: 1px solid rgba(18, 82, 50, 0.08);
}

.not-found-meta-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
}

.not-found-meta-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.3;
    word-break: break-word;
}

.not-found-hero__side {
    display: grid;
    gap: 14px;
}

.not-found-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
}

.not-found-card--accent {
    padding: 26px;
    background:
        radial-gradient(circle at top right, rgba(145, 214, 177, 0.18), transparent 34%),
        linear-gradient(135deg, #0d3822, #1d6f44);
    border-color: rgba(100, 177, 130, 0.22);
}

.not-found-card--accent .eyebrow,
.not-found-card--accent h2,
.not-found-card--accent p {
    color: #fff;
}

.not-found-card--accent p {
    margin: 0;
    color: rgba(233, 241, 236, 0.9);
}

.not-found-card--accent h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.08;
}

.not-found-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(31, 122, 72, 0.16), rgba(20, 82, 50, 0.1));
    color: var(--primary-dark);
    font-size: 18px;
}

.not-found-card__body h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.not-found-card__body p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.not-found-cta {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .not-found-hero__shell {
        grid-template-columns: 1fr;
    }

    .not-found-hero__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .not-found-card--accent {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .not-found-hero__main,
    .not-found-card {
        border-radius: 24px;
    }

    .not-found-hero__main {
        padding: 26px 22px;
    }

    .not-found-hero__lead {
        font-size: 15px;
        line-height: 1.7;
    }

    .not-found-hero__actions {
        flex-direction: column;
    }

    .not-found-hero__actions .btn {
        width: 100%;
    }

    .not-found-hero__meta {
        grid-template-columns: 1fr;
    }

    .not-found-hero__side {
        grid-template-columns: 1fr;
    }

    .not-found-card {
        padding: 20px;
    }

    .not-found-card--accent {
        padding: 22px;
    }

    .not-found-card--accent h2 {
        font-size: 24px;
    }
}

.preview-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
}

.preview-modal.is-open {
    display: block;
}

.preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 16, 0.68);
    backdrop-filter: blur(5px);
}

.preview-modal__panel {
    position: relative;
    width: min(940px, calc(100% - 34px));
    margin: 70px auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #c9d9cd;
    background: #fff;
    box-shadow: 0 28px 50px rgba(1, 20, 11, 0.35);
    display: grid;
    grid-template-columns: 1fr 1fr;
    isolation: isolate;
}

.preview-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    z-index: 6;
    background: rgba(12, 34, 22, 0.92);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(4, 19, 12, 0.28);
    backdrop-filter: blur(10px);
}

.preview-modal__close i,
.product-gallery-modal__close i {
    pointer-events: none;
}

.preview-modal__media {
    padding: 20px;
    border-right: 1px solid #d1ded5;
    display: grid;
    align-content: start;
    gap: 14px;
    background:
        linear-gradient(145deg, #e8efe9, #f4f8f4),
        repeating-linear-gradient(45deg, transparent 0 9px, rgba(98, 124, 110, 0.09) 9px 10px);
}

.preview-modal__media img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 14px;
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000),
        1
    );
    transform-origin: center;
}

.preview-modal__media img.is-3d {
    animation: previewSpin 2s ease-in-out infinite;
}

@keyframes previewSpin {
    0%, 100% { transform: perspective(800px) rotateY(0deg) scale3d(calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000), calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000), 1); }
    50% { transform: perspective(800px) rotateY(18deg) scale3d(calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000), calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000), 1); }
}

.preview-modal__info {
    padding: 30px 24px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.preview-modal__info h3 {
    margin: 0;
    font-size: 28px;
}

.preview-modal__info p {
    margin: 0;
    color: var(--muted);
}

.preview-modal__description,
.product-detail__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.preview-modal__description.is-expanded,
.product-detail__description.is-expanded {
    display: block;
    overflow: visible;
}

.expandable-text__toggle {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.expandable-text__toggle[hidden] {
    display: none;
}

.preview-specs {
    margin: 4px 0 6px;
    padding: 0;
    list-style: none;
    border: 1px solid #d7e3da;
    border-radius: 14px;
    overflow: hidden;
}

.preview-specs li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 13px;
    border-bottom: 1px solid #d7e3da;
}

.preview-specs li:last-child {
    border-bottom: 0;
}

.preview-specs span {
    color: #577065;
}

.preview-specs strong {
    color: #173828;
}

.service-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.service-layout__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-layout__image img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
}

.check-list--plain li {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list--plain li::before {
    content: none;
}

.check-list--plain i {
    color: var(--primary-dark);
    width: 18px;
}

.contacts-grid {
    grid-template-columns: 1fr 1fr;
}

.contacts-grid--single {
    grid-template-columns: 1fr;
}

.contacts-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
    align-items: stretch;
}

.contacts-showcase__head {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.contacts-showcase__form,
.contacts-showcase__map,
.contacts-showcase__team {
    min-width: 0;
}

.contacts-showcase__form,
.contacts-showcase__map {
    height: 100%;
}

.contacts-showcase__map {
    display: flex;
    flex-direction: column;
}

.contacts-showcase__lead {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.55;
}

.map-visual {
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid #c8d8cd;
    overflow: hidden;
    min-height: 220px;
    position: relative;
    background: linear-gradient(145deg, #e6efe8, #f4f8f4);
}

.map-visual__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(86, 115, 100, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(86, 115, 100, 0.15) 1px, transparent 1px);
    background-size: 26px 26px;
}

.map-visual__pin {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: var(--primary-dark);
}

.map-visual span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    border-radius: 8px;
    padding: 6px 10px;
    background: rgba(20, 57, 38, 0.82);
    color: #fff;
    font-size: 12px;
}

.map-visual--embed {
    min-height: 320px;
    background: #e6efe8;
}

.product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.product-detail__media,
.product-detail__info {
    border-radius: var(--radius);
    border: 1px solid #cfddd3;
    background: #fff;
}

.product-detail__media {
    overflow: hidden;
}

.product-detail__stage {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    touch-action: pan-y;
}

.product-detail__media img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000),
        1
    );
    transform-origin: center;
}

.product-detail__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78px;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #e4eee8;
    background: #f7faf8;
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-detail__thumb {
    display: block;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d4e0d9;
    background: #fff;
    cursor: pointer;
    transition: transform 0.11s ease, border-color 0.11s ease, box-shadow 0.11s ease;
}

.product-detail__thumb.is-active {
    border-color: rgba(31, 122, 72, 0.5);
    box-shadow: 0 0 0 2px rgba(31, 122, 72, 0.14);
}

.product-detail__thumb img {
    display: block;
    width: 100%;
    height: 64px;
    min-height: 0;
    object-fit: cover;
    transform: none;
    transition: transform 0.11s ease;
}

.product-detail__thumb:hover img {
    transform: scale(1.05);
}

.product-detail__thumb:hover {
    border-color: rgba(31, 122, 72, 0.35);
}

.product-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.product-gallery-modal.is-open {
    display: grid;
    place-items: center;
}

.product-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 25, 16, 0.78);
    backdrop-filter: blur(6px);
}

.product-gallery-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    padding: 24px;
    border-radius: 28px;
    background: rgba(11, 28, 19, 0.96);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
    display: grid;
    gap: 14px;
    isolation: isolate;
}

.product-gallery-modal__figure {
    margin: 0;
    display: grid;
    gap: 14px;
}

.product-gallery-modal__image-wrap {
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(25, 58, 40, 0.92), rgba(13, 35, 23, 0.98)),
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.05) 12px 13px);
}

.product-gallery-modal__image-wrap img {
    width: 100%;
    max-height: calc(100vh - 180px);
    min-height: 0;
    object-fit: contain;
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height, 100)) / 10000),
        1
    );
    transform-origin: center;
}

.product-gallery-modal__caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(234, 244, 238, 0.94);
    font-size: 14px;
    line-height: 1.45;
}

.product-gallery-modal__counter {
    white-space: nowrap;
    color: rgba(190, 215, 201, 0.88);
    font-weight: 700;
}

.product-gallery-modal__close,
.product-gallery-modal__nav {
    position: absolute;
    z-index: 4;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(9, 25, 17, 0.76);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(10px);
    transition: background 0.11s ease, transform 0.11s ease, border-color 0.11s ease;
}

.product-gallery-modal__close {
    top: 16px;
    right: 16px;
    background: rgba(7, 24, 16, 0.92);
}

.product-gallery-modal__nav {
    top: 50%;
    transform: translateY(-50%);
}

.product-gallery-modal__nav--prev {
    left: 14px;
}

.product-gallery-modal__nav--next {
    right: 14px;
}

.product-gallery-modal__close:hover,
.product-gallery-modal__nav:hover {
    background: rgba(18, 48, 33, 0.92);
    border-color: rgba(255, 255, 255, 0.34);
}

.placeholder-media {
    min-height: 320px;
    display: grid;
    place-items: center;
    color: #6c8378;
    background: #e8efe9;
}

.product-detail__info {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.product-detail__info h2 {
    margin: 0;
    font-size: 30px;
}

.review-form {
    margin-top: 20px;
}

.article-layout {
    max-width: 1120px;
}

.article-image {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
}

.article-lead {
    margin: 0 0 18px;
    font-size: 20px;
    color: #325445;
}

.article-content {
    color: #304b40;
    line-height: 1.65;
}

.article-content--rich {
    font-size: 17px;
    line-height: 1.8;
}

.article-content h2,
.article-content h3 {
    margin-top: 24px;
    color: #143525;
}

.article-content h4 {
    margin-top: 22px;
    margin-bottom: 10px;
    color: #1a4330;
}

.article-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content table,
.article-content blockquote {
    margin: 0 0 18px;
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
}

.article-content li + li {
    margin-top: 8px;
}

.article-content img,
.article-content video,
.article-content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 24px auto;
    border-radius: 22px;
    border: 1px solid #d7e2da;
    background: #f4f8f4;
    overflow: hidden;
}

.article-content img,
.article-content video {
    height: auto;
}

.article-content iframe {
    min-height: 420px;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #d1ddd5;
    background: #fff;
}

.article-content th,
.article-content td {
    padding: 12px 14px;
    border-bottom: 1px solid #e1ebe4;
    vertical-align: top;
}

.article-content tr:last-child td {
    border-bottom: 0;
}

.article-content blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    border-radius: 0 18px 18px 0;
    background: rgba(80, 144, 111, 0.08);
    color: #294837;
}

.article-cta {
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.article-cta h2,
.article-cta p {
    margin: 0;
}

.article-cta p:last-child {
    margin-top: 10px;
    color: #557063;
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-blocks {
    display: grid;
    gap: 28px;
}

.article-block {
    display: grid;
    gap: 18px;
}

.article-block__title {
    margin: 0;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.1;
    color: #143525;
}

.article-block__row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
}

.article-block__split {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.article-block__split .article-media {
    flex: 0 0 var(--split-media-width, 42%);
    max-width: var(--split-media-width, 42%);
}

.article-block__split .article-content {
    flex: 1 1 0;
}

.article-media {
    display: grid;
    gap: 10px;
    flex: 0 1 var(--media-width, 100%);
    max-width: var(--media-width, 100%);
    min-width: min(100%, 220px);
}

.article-media__frame {
    position: relative;
    overflow: hidden;
    min-height: var(--media-height, 360px);
    height: var(--media-height, 360px);
    border-radius: 18px;
    border: 1px solid #d5e1d8;
    background: linear-gradient(145deg, rgba(227, 236, 230, 0.72), rgba(245, 248, 245, 0.94));
}

.article-media__frame img,
.article-media__frame video,
.article-media__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-media__frame img,
.article-media__frame video {
    object-fit: cover;
    object-position: var(--media-position, center center);
    transform: scale(calc(var(--img-scale, 100) / 100));
    transform-origin: center;
}

.article-media__frame iframe {
    background: #000;
}

.article-media__caption {
    margin: 0;
    font-size: 13px;
    color: #597165;
    line-height: 1.45;
}

.pagination {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.pagination a {
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid #c5d6ca;
    background: #fff;
    font-weight: 700;
}

.site-footer {
    margin-top: 60px;
    background:
        linear-gradient(170deg, #0f2f21, #10291f 70%),
        repeating-linear-gradient(35deg, transparent 0 14px, rgba(255, 255, 255, 0.04) 14px 15px);
    color: #deece4;
}

.footer-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 20px 0 6px;
}

.footer-proof div {
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(210, 232, 219, 0.18);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    font-size: 13px;
    color: rgba(217, 235, 225, 0.92);
}

.footer-proof i {
    color: #92d4b0;
}

.footer-cta {
    border-bottom: 1px solid rgba(205, 233, 217, 0.16);
}

.footer-cta__inner {
    padding: 36px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.footer-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.footer-cta p {
    margin: 0;
    color: rgba(218, 236, 226, 0.84);
}

.footer-cta__actions {
    display: flex;
    gap: 10px;
}

.footer-cta__catalog-btn {
    color: #10311f;
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(225, 236, 229, 0.94));
    box-shadow: 0 12px 24px rgba(6, 22, 13, 0.16);
}

.footer-cta__catalog-btn:hover {
    color: #0d2919;
    border-color: rgba(255, 255, 255, 0.46);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(235, 244, 238, 0.98));
    box-shadow: 0 16px 30px rgba(6, 22, 13, 0.22);
}

.footer-grid {
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 20px;
}

.footer-grid h4 {
    margin: 0 0 12px;
    color: #fff;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-grid li,
.footer-grid a,
.footer-text {
    color: rgba(208, 226, 216, 0.8);
    line-height: 1.5;
}

.footer-grid a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.brand--footer .brand__text small {
    color: rgba(202, 222, 211, 0.72);
}

.footer-bottom {
    border-top: 1px solid rgba(206, 232, 217, 0.16);
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(199, 220, 208, 0.72);
}

.footer-bottom > div {
    display: flex;
    gap: 14px;
}

.notifications {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 200;
    display: grid;
    gap: 8px;
}

.notification {
    min-width: 280px;
    max-width: 360px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 11px 13px;
    color: #fff;
    box-shadow: 0 10px 24px rgba(4, 14, 9, 0.35);
    opacity: 0;
    transform: translateY(-8px);
    animation: toastIn 0.13s ease forwards;
}

.notification--success {
    background: linear-gradient(130deg, #1f7a48, #145232);
}

.notification--error {
    background: linear-gradient(130deg, #b63a3a, #782121);
}

.notification--info {
    background: linear-gradient(130deg, #2f6f90, #194a63);
}

@keyframes toastIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 24px 0 64px;
    background:
        linear-gradient(180deg, rgba(226, 236, 229, 0.86), rgba(243, 247, 243, 0.2)),
        radial-gradient(circle at 16% 16%, rgba(53, 117, 80, 0.16), transparent 28%);
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.about-hero::before {
    inset: 0;
    background:
        linear-gradient(to right, rgba(45, 92, 67, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(45, 92, 67, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    opacity: 0.45;
}

.about-hero::after {
    top: 36px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 112, 72, 0.18), transparent 68%);
    filter: blur(8px);
    animation: aboutOrb 3.8s ease-in-out infinite;
}

.about-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: center;
}

.about-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 4.9vw, 58px);
    line-height: 1.02;
}

.about-hero__lead {
    margin: 0 0 28px;
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.about-hero__stats {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-hero__stats li {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(48, 92, 67, 0.16);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 34px rgba(17, 51, 33, 0.09);
    animation: aboutFloat 2.6s ease-in-out infinite;
}

.about-hero__stats li::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(97, 181, 127, 0));
}

.about-hero__stats li:nth-child(2) {
    animation-delay: 0.12s;
}

.about-hero__stats li:nth-child(3) {
    animation-delay: 0.5s;
}

.about-hero__stats li:nth-child(4) {
    animation-delay: 0.35s;
}

.about-hero__stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(20px, 2vw, 28px);
    color: var(--primary-dark);
}

.about-hero__stats span {
    color: #557064;
    font-size: 13px;
    line-height: 1.45;
}

.about-hero__panel {
    position: relative;
    min-height: 100%;
}

.about-panel {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(150deg, rgba(11, 44, 28, 0.98), rgba(24, 91, 56, 0.94)),
        repeating-linear-gradient(45deg, transparent 0 13px, rgba(255, 255, 255, 0.03) 13px 14px);
    color: #fff;
    box-shadow: 0 24px 50px rgba(8, 24, 16, 0.26);
}

.about-panel::before {
    content: "";
    position: absolute;
    inset: -40% auto auto 56%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148, 220, 180, 0.2), transparent 68%);
}

.about-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.12) 50%, transparent 74%);
    transform: translateX(-110%);
    animation: aboutSweep 2.5s ease-in-out infinite;
}

.about-panel .chip {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(238, 245, 241, 0.96);
}

.about-panel h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
}

.about-panel p {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: rgba(230, 239, 233, 0.88);
    line-height: 1.62;
}

.about-panel__list {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-panel__list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    align-items: start;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-panel__list i {
    margin-top: 2px;
    color: #99deb8;
}

.about-panel__list span {
    color: rgba(236, 243, 239, 0.94);
    line-height: 1.5;
}

.about-floating {
    position: absolute;
    z-index: 2;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(46, 95, 69, 0.12);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 34px rgba(15, 44, 29, 0.12);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: aboutTagFloat 2.8s ease-in-out infinite;
}

.about-floating--top {
    top: -14px;
    right: 28px;
}

.about-floating--bottom {
    right: -8px;
    bottom: 26px;
    animation-delay: 0.12s;
}

.about-section-text {
    margin: 12px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
}

.about-cards .about-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.about-card__body h3,
.about-card__body p {
    margin: 0;
}

.about-cards .about-card::after {
    content: "";
    position: absolute;
    inset: auto -15% -35% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 146, 102, 0.12), transparent 70%);
    transition: transform var(--transition), opacity var(--transition);
}

.about-cards .about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 122, 72, 0.28);
    box-shadow: 0 20px 36px rgba(15, 51, 33, 0.15);
}

.about-cards .about-card:hover::after {
    transform: scale(1.08);
}

.about-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.about-story__copy h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.08;
}

.about-story__copy p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.about-story__panel {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(15, 49, 32, 0.98), rgba(27, 92, 57, 0.94)),
        repeating-linear-gradient(145deg, transparent 0 15px, rgba(255, 255, 255, 0.03) 15px 16px);
    color: #fff;
    box-shadow: 0 24px 50px rgba(9, 27, 18, 0.24);
}

.about-story__panel::after {
    content: "";
    position: absolute;
    inset: auto 0 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(159, 226, 191, 0.7), transparent);
    animation: aboutScanLine 1.9s ease-in-out infinite;
}

.about-story__panel h3 {
    margin: 0 0 16px;
    font-size: 28px;
}

.about-story__panel .check-list {
    margin-bottom: 20px;
}

.about-story__panel .check-list li {
    color: rgba(234, 241, 237, 0.92);
}

.about-story__panel .check-list li::before {
    background: linear-gradient(135deg, #8dd8ae, #f0fbf5);
}

.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-mini-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.about-mini-card strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 18px;
}

.about-mini-card span {
    color: rgba(223, 236, 228, 0.82);
    font-size: 13px;
    line-height: 1.45;
}

.about-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(90deg, rgba(31, 122, 72, 0.06), rgba(31, 122, 72, 0.34), rgba(31, 122, 72, 0.06));
}

.about-step-card {
    position: relative;
    overflow: hidden;
    padding-top: 52px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-step-card::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    box-shadow: 0 0 0 7px rgba(31, 122, 72, 0.08);
}

.about-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 36px rgba(17, 58, 38, 0.16);
}

.about-team-section {
    padding-top: 24px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-team-grid--compact {
    gap: 14px;
}

.about-team-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 239, 0.92));
    box-shadow: 0 18px 32px rgba(17, 54, 35, 0.1);
}

.about-team-card::after {
    content: "";
    position: absolute;
    inset: auto -16% -42% auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 145, 99, 0.14), transparent 72%);
    animation: aboutOrb 4.2s ease-in-out infinite;
}

.about-team-card__role {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-team-card__media,
.about-team-card__content {
    position: relative;
    z-index: 1;
}

.about-team-card__media {
    width: 100%;
    aspect-ratio: 5 / 4;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(31, 122, 72, 0.12);
    background: linear-gradient(145deg, #edf4ef, #dfeae3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--team-photo-scale, 1.04));
    transform-origin: center;
}

.about-team-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 24px;
}

.about-team-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 8px;
    font-size: 27px;
}

.about-team-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.about-team-card__contact {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 122, 72, 0.12);
}

.about-team-card__contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 800;
}

.about-team-card__contact i {
    color: var(--primary);
}

.about-team-card--compact {
    border-radius: 20px;
}

.about-team-card--compact .about-team-card__media {
    aspect-ratio: 1.55 / 1;
    border-radius: 20px 20px 0 0;
}

.about-team-card--compact .about-team-card__content {
    padding: 16px 18px 18px;
}

.about-team-card--compact h3 {
    font-size: 22px;
}

.about-team-card--compact p {
    font-size: 14px;
    line-height: 1.52;
}

.about-team-card--compact .about-team-card__contact {
    padding-top: 12px;
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes aboutTagFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes aboutOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-14px, 16px, 0);
    }
}

@keyframes aboutSweep {
    0% {
        transform: translateX(-110%);
    }
    48%,
    100% {
        transform: translateX(110%);
    }
}

@keyframes aboutScanLine {
    0%, 100% {
        transform: translateX(-10%);
        opacity: 0.2;
    }
    50% {
        transform: translateX(10%);
        opacity: 0.95;
    }
}

@media (max-width: 1100px) {
    .navbar {
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-areas:
            "brand actions toggle"
            "panel panel panel";
        align-items: center;
        gap: 10px 12px;
    }

    .brand {
        grid-area: brand;
        min-width: 0;
    }

    .mobile-toggle {
        grid-area: toggle;
        justify-self: end;
        display: inline-grid;
        place-items: center;
    }

    .nav-panel {
        grid-area: panel;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        width: 100%;
        padding: 12px 0 14px;
        border-top: 1px solid #cddace;
    }

    .nav-panel.is-open {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown__toggle {
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown__menu {
        position: static;
        margin-top: 8px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        border: 1px solid #d5e2d8;
    }

    .nav-dropdown.is-open .nav-dropdown__menu {
        display: grid;
    }

    .header-actions {
        grid-area: actions;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-self: end;
    }

    .header-actions .btn:not(.header-cart-link) {
        display: none;
    }

    .header-actions .header-cart-link {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        gap: 0;
        justify-content: center;
        border-radius: 12px;
        font-size: 0;
        line-height: 1;
    }

    .header-actions .header-cart-link i {
        font-size: 16px;
    }

    .header-actions .header-cart-link .header-cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        padding: 0 4px;
        font-size: 10px;
    }

    .header-cart-link--mobile {
        display: none;
    }

    .hero__inner,
    .request-grid,
    .service-layout,
    .contacts-grid,
    .product-detail,
    .contacts-showcase,
    .delivery-hero,
    .delivery-payment,
    .delivery-trust,
    .about-hero__layout,
    .about-story,
    .catalog-layout,
    .blog-hero,
    .blog-featured,
    .blog-featured__lead,
    .blog-article-hero {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }

    .catalog-stage {
        width: calc(100% - 32px);
        margin-left: 16px;
        grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
        gap: 20px;
    }

    .catalog-toolbar {
        align-items: stretch;
    }

    .catalog-summary {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .cart-quote-item {
        grid-template-columns: 1fr;
    }

    .cart-quote-item__media {
        width: 100%;
        height: 220px;
    }

    .catalog-summary__actions {
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-toolbar .catalog-search {
        width: min(420px, 100%);
    }

    .delivery-hero__stats,
    .delivery-timeline,
    .delivery-payment__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .delivery-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .preview-modal__panel {
        grid-template-columns: 1fr;
        width: min(100%, calc(100% - 18px));
        margin: 12px auto;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .preview-modal__close {
        position: static;
        justify-self: end;
        margin: 14px 14px 0 0;
    }

    .preview-modal__media {
        border-right: 0;
        border-bottom: 1px solid #d1ded5;
    }

    .about-hero__stats,
    .about-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .contacts-hero__cta-row {
        flex-direction: column;
    }

    .contacts-hero__actions {
        display: none;
    }

    .about-floating--top {
        top: 14px;
    }

    .about-floating--bottom {
        right: 18px;
        bottom: 18px;
    }
}

@media (max-width: 860px) {
    .hero-contact-card {
        display: none;
    }

    .hero__visual--stack {
        display: none;
    }

    .hero--focused {
        padding-bottom: 8px;
    }

    .hero__content > :last-child {
        margin-bottom: 0;
    }

    .hero__contact {
        margin: -6px 0 0;
    }

    .navbar {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: start;
        gap: 8px 10px;
        padding: 10px 0 4px;
    }

    .brand {
        align-items: flex-start;
        gap: 10px;
    }

    .brand__logo {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .brand__text strong {
        font-size: 21px;
        line-height: 1.05;
    }

    .brand__text small {
        margin-top: 2px;
        font-size: 10px;
        line-height: 1.2;
    }

    .mobile-toggle {
        align-self: start;
    }

    .header-actions {
        align-self: start;
    }

    .header-actions .header-cart-link {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }

    .nav-panel {
        padding-top: 8px;
        padding-bottom: 12px;
    }

    .cards-grid--3 .product-card__media {
        min-height: 220px;
        height: 220px;
        padding: 12px;
    }

    .cards-grid--3 .product-card__body {
        padding: 16px;
        gap: 10px;
    }

    .cards-grid--3 .product-card .chip {
        max-width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .cards-grid--3 .product-card__body h3 {
        font-size: 18px;
        line-height: 1.28;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .cards-grid--3 .product-card__body > p:not(.chip),
    .cards-grid--3 .product-card__body p:not(.chip) {
        font-size: 14px;
        line-height: 1.45;
        min-height: calc(14px * 1.45 * 3);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .cards-grid--3 .product-card__meta,
    .cards-grid--3 .product-card__body > .product-card__meta {
        margin-top: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: end;
        min-height: 0;
        font-size: 12px;
        line-height: 1.35;
    }

    .cards-grid--3 .product-card__meta > :first-child,
    .cards-grid--3 .product-card__body > .product-card__meta > :first-child {
        display: block;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .cards-grid--3 .product-card__meta strong,
    .cards-grid--3 .product-card__body > .product-card__meta strong {
        display: block;
        max-width: none;
        justify-self: end;
        align-self: end;
        font-size: 16px;
        line-height: 1.15;
        text-align: right;
        white-space: nowrap;
        word-break: normal;
    }

    .cards-grid--3 .product-card__body > .product-card__actions,
    .cards-grid--3 .product-card__actions {
        gap: 8px;
    }

    .cards-grid--3 .product-card__actions--catalog,
    .cards-grid--3 .product-card__actions--related,
    .cards-grid--3 .product-card__actions--detail,
    .cards-grid--3 .product-card__actions--modal {
        padding: 10px;
        border-radius: 16px;
    }

    .cards-grid--3 .product-card__body > .product-card__actions .btn,
    .cards-grid--3 .product-card__actions .btn,
    .cards-grid--3 .product-card__body > .btn {
        min-height: 40px;
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
    }

    .expandable-text__toggle {
        font-size: 12px;
    }

    .cards-grid--3[data-mobile-slider] .article-card__media {
        min-height: 220px;
        height: 220px;
        padding: 12px;
    }

    .cards-grid--3[data-mobile-slider] .article-card__body {
        gap: 8px;
    }

    .cards-grid--3[data-mobile-slider] .article-card--news h3,
    .cards-grid--3[data-mobile-slider] .article-card h3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 18px;
        line-height: 1.32;
        margin-bottom: 0;
    }

    .cards-grid--3[data-mobile-slider] .article-card__body > p:not(.chip) {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 7;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.45;
    }

    .page-hero.contacts-hero {
        display: none;
    }

    .top-strip {
        display: none;
    }

    .top-strip__inner {
        flex-direction: column;
        justify-content: center;
        padding: 7px 0;
        text-align: center;
    }

    .cards-grid--4,
    .cards-grid--3,
    .cards-grid--2 {
        grid-template-columns: 1fr;
    }

    .delivery-hero__stats,
    .delivery-timeline,
    .delivery-payment__grid {
        grid-template-columns: 1fr;
    }

    .delivery-hero__content,
    .delivery-panel,
    .delivery-trust__content {
        padding: 24px;
        border-radius: 24px;
    }

    .delivery-hero__visual {
        grid-template-columns: 1fr 1fr;
    }

    .delivery-hero__card--1 {
        grid-row: auto;
        min-height: 260px;
    }

    .delivery-trust__media {
        min-height: 320px;
        border-radius: 24px;
    }

    .delivery-cta__inner {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-contact-card__actions,
    .home-direct__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-photo-grid,
    .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-hero__content,
    .blog-hero__stats,
    .blog-featured__body,
    .blog-article-hero__content,
    .article-cta {
        padding: 24px;
    }

    .blog-featured__media,
    .blog-article-hero__visual {
        min-height: 280px;
    }

    .article-content iframe {
        min-height: 280px;
    }

    .article-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero__direct {
        grid-template-columns: 1fr;
        display: none;
    }

    .contacts-hero__cta-row .page-hero__direct {
        height: auto;
    }

    .contacts-hero__cta-row .page-hero__contact-link {
        height: auto;
        min-height: 64px;
    }

    .page-hero__contact-link {
        min-width: 0;
    }

    .article-block__split {
        flex-direction: column;
    }

    .article-block__split .article-media,
    .article-media {
        flex-basis: 100%;
        max-width: 100%;
    }

    .request-form__grid {
        grid-template-columns: 1fr;
    }

    #request-form {
        scroll-margin-top: 92px;
    }

    .request-form__wide {
        grid-column: auto;
    }

    .catalog-controls {
        grid-template-columns: 1fr;
    }

    .catalog-shell.section--compact {
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .catalog-stage {
        width: calc(100% - 28px);
        margin-left: 14px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .catalog-compact {
        position: static;
        width: 100%;
        border-radius: 10px;
        animation: mobileCatalogRailIn 0.08s cubic-bezier(0.22, 1, 0.36, 1);
        transform-origin: top center;
    }

    .catalog-compact__toggle,
    .catalog-compact__link {
        min-height: 42px;
        padding: 0 12px;
        font-size: 13px;
        transition:
            transform 0.08s ease,
            background 0.1s ease,
            color 0.1s ease,
            box-shadow 0.1s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .catalog-compact__group-hint--panel,
    .catalog-compact__group.is-current:not(.is-expanded) .catalog-compact__group-hint {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 28px;
        padding: 8px 12px 6px;
        border-top: 1px solid #e7ece9;
        background: #f8fafb;
        color: #5f7569;
        font-size: 11px;
        line-height: 1.35;
    }

    .catalog-compact__group-hint--panel {
        margin-bottom: 4px;
        border-radius: 0 0 12px 12px;
        border-top: 1px solid #e7ece9;
    }

    .catalog-compact__group-hint i {
        color: #2b7a4f;
        font-size: 12px;
        flex: 0 0 auto;
    }

    .catalog-compact__child {
        min-height: 34px;
        padding-left: 18px;
        padding-right: 12px;
        font-size: 12px;
        transition:
            transform 0.08s ease,
            background 0.1s ease,
            color 0.1s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .catalog-compact--rail .catalog-compact__panel.is-open {
        max-height: none;
        overflow: visible;
        overscroll-behavior: auto;
        animation: mobileCatalogPanelDrop 0.12s ease;
    }

    .catalog-compact__panel {
        transform-origin: top center;
        transition:
            max-height 0.14s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.09s ease,
            transform 0.12s ease;
    }

    .catalog-compact__panel:not(.is-open) {
        transform: translateY(-6px);
    }

    .catalog-compact__children.is-active .catalog-compact__children-inner {
        animation: mobileCatalogChildrenIn 0.1s ease;
    }

    .catalog-compact__toggle:active,
    .catalog-compact__link:active,
    .catalog-compact__child:active {
        transform: scale(0.985);
    }

    /* Keep subcategories visually closed on initial mobile paint until JS syncs state. */
    .catalog-shell:not(.catalog-mobile-ready) .catalog-compact__children {
        grid-template-rows: 0fr !important;
        transition: none !important;
    }

    .catalog-shell:not(.catalog-mobile-ready) .catalog-compact__children-inner {
        overflow: hidden;
    }

    .catalog-shell:not(.catalog-mobile-ready) .catalog-compact__group-hint {
        display: none !important;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px 12px;
    }

    .catalog-toolbar .catalog-search {
        width: 100%;
    }

    .catalog-toolbar .catalog-search input {
        min-height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }

    .catalog-toolbar__copy {
        gap: 3px;
    }

    .catalog-toolbar__hint {
        display: none;
    }

    .catalog-toolbar .catalog-counter {
        font-size: 12px;
        line-height: 1.35;
    }

    .product-gallery-modal__panel {
        width: min(100%, calc(100% - 20px));
        padding: 18px;
        border-radius: 22px;
    }

    .product-gallery-modal__close {
        position: static;
        top: auto;
        right: auto;
        justify-self: end;
        margin: 0;
    }

    .product-gallery-modal__image-wrap img {
        max-height: calc(100vh - 160px);
    }

    .product-gallery-modal__caption {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-summary {
        display: none;
    }

    .catalog-main {
        animation: mobileCatalogRailIn 0.09s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
    }

    .catalog-sidebar__panel {
        padding: 18px 14px 14px;
    }

    .catalog-sidebar__header h2 {
        font-size: 24px;
    }

    .catalog-sidebar__all,
    .catalog-sidebar__trigger {
        padding: 13px 14px;
        border-radius: 18px;
    }

    .catalog-sidebar__copy small {
        font-size: 12px;
    }

    .catalog-search {
        width: 100%;
        justify-self: stretch;
    }

    .about-timeline::before {
        display: none;
    }

    .catalog-subfilters.is-open {
        max-height: 320px;
    }

    .footer-cta__inner,
    .footer-cta__actions,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
    .catalog-compact,
    .catalog-main,
    .catalog-compact--rail .catalog-compact__panel.is-open,
    .catalog-compact__children.is-active .catalog-compact__children-inner {
        animation: none;
    }

    .catalog-compact__panel,
    .catalog-compact__toggle,
    .catalog-compact__link,
    .catalog-compact__child {
        transition-duration: 0.01ms;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: min(1180px, calc(100% - 28px));
    }

    .catalog-shell.section--compact {
        padding-top: 6px;
    }

    .catalog-toolbar {
        padding: 8px 10px;
    }

    .catalog-toolbar__eyebrow {
        display: none;
    }

    .catalog-toolbar .catalog-counter {
        font-size: 11px;
    }

    .catalog-compact__toggle,
    .catalog-compact__link {
        min-height: 40px;
        padding: 0 10px;
        font-size: 12px;
    }

    .catalog-compact__child {
        min-height: 32px;
        padding-left: 16px;
        padding-right: 10px;
        font-size: 11px;
    }

    .catalog-compact__group-hint--panel,
    .catalog-compact__group.is-current:not(.is-expanded) .catalog-compact__group-hint {
        padding: 7px 10px 8px;
        font-size: 10px;
    }

    .catalog-compact--rail .catalog-compact__panel.is-open {
        max-height: none;
        overflow: visible;
        overscroll-behavior: auto;
    }

    .product-detail__thumbs {
        grid-auto-columns: 68px;
        padding: 8px;
    }

    .product-gallery-modal__panel {
        padding: 14px;
        border-radius: 18px;
    }

    .product-gallery-modal__nav {
        width: 40px;
        height: 40px;
    }

    .product-gallery-modal__close {
        width: 40px;
        height: 40px;
        position: static;
        top: auto;
        right: auto;
        justify-self: end;
    }

    .product-gallery-modal__nav--prev {
        left: 10px;
    }

    .product-gallery-modal__nav--next {
        right: 10px;
    }

    .catalog-summary {
        padding: 18px 16px;
    }

    .catalog-summary h1 {
        font-size: 26px;
    }

    .catalog-summary__meta {
        gap: 8px;
    }

    .catalog-summary__badge {
        min-height: 30px;
        padding: 0 12px;
        font-size: 12px;
    }

    .delivery-hero__visual {
        grid-template-columns: 1fr;
    }

    .delivery-hero__card,
    .delivery-hero__card--1 {
        min-height: 220px;
    }

    .delivery-hero__stats li,
    .delivery-option,
    .delivery-step,
    .delivery-payment__card {
        padding: 18px;
    }

    .delivery-carrier,
    .delivery-trust__services span {
        min-height: 36px;
        padding: 0 14px;
        font-size: 13px;
    }

    .delivery-panel__cta strong {
        font-size: 28px;
    }

    .delivery-cta__inner h2 {
        font-size: 26px;
    }

    .blog-hero__content h1,
    .blog-article-hero__content h1 {
        font-size: 30px;
    }

    .blog-featured__body h2 {
        font-size: 28px;
    }

    .article-content--rich {
        font-size: 16px;
    }

    .product-card__body > .product-card__actions {
        grid-template-columns: 1fr;
    }

    .product-card__actions--catalog,
    .product-card__actions--related,
    .product-card__actions--detail,
    .product-card__actions--modal {
        grid-template-columns: 1fr;
        padding: 10px;
        border-radius: 16px;
    }

    .product-card__actions--catalog .btn-action,
    .product-card__actions--related .btn-action,
    .product-card__actions--detail .btn-action,
    .product-card__actions--modal .btn-action {
        min-height: 42px;
        padding: 11px 12px;
        font-size: 13px;
    }

    .hero-photo-grid,
    .home-gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo-card,
    .home-gallery-card {
        min-height: 220px;
    }

    .hero {
        padding: 24px 0 56px;
    }

    .hero__metrics li {
        min-width: 120px;
    }

    .metal-frame img {
        min-height: 340px;
    }

    .section {
        padding: 15px 0;
    }

    .about-hero {
        padding: 24px 0 46px;
    }

    .about-hero__stats,
    .about-mini-grid,
    .about-timeline {
        grid-template-columns: 1fr;
    }

    .about-panel,
    .about-story__panel {
        padding: 24px;
    }

    .contacts-hero {
        padding: 24px 0 18px;
    }

    .map-visual--embed > div,
    .map-visual--embed > ymaps,
    .map-visual--embed iframe {
        width: 600px !important;
        max-width: none !important;
        transform: translateX(-78px);
        transform-origin: left center;
    }

    .about-team-card {
        border-radius: 22px;
    }

    .about-team-card__media {
        border-radius: 22px 22px 0 0;
    }

    .about-team-card--compact .about-team-card__media {
        border-radius: 22px 22px 0 0;
    }

    .about-floating {
        display: none;
    }

    .about-team-card h3 {
        font-size: 22px;
    }

    .about-team-card__content {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-proof {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero::after,
    .about-hero__stats li,
    .about-panel::after,
    .about-story__panel::after,
    .about-floating,
    .about-team-card::after {
        animation: none;
    }
}

@media (max-width: 860px) {
    .hero-photo-grid {
        display: none;
    }

    [data-mobile-slider] {
        --mobile-slider-bleed: max(14px, calc((100vw - 100%) / 2));
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 84vw);
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--mobile-slider-bleed);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        touch-action: auto;
        margin-inline: calc(var(--mobile-slider-bleed) * -1);
        padding: 4px var(--mobile-slider-bleed) 12px;
    }

    [data-mobile-slider]::-webkit-scrollbar {
        display: none;
    }

    [data-mobile-slider] > * {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        min-width: 0;
    }

    .hero-photo-grid[data-mobile-slider] {
        grid-auto-columns: minmax(220px, 72vw);
    }

    .home-gallery-grid[data-mobile-slider] {
        grid-auto-columns: minmax(240px, 74vw);
    }

    .home-priority__grid[data-mobile-slider] {
        grid-auto-columns: minmax(286px, 84vw);
    }
}

.about-hero--company {
    padding-bottom: 44px;
}

.about-hero__visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: stretch;
}

.about-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 26px;
    border: 1px solid rgba(213, 225, 216, 0.84);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.12);
    animation: aboutFloat 3s ease-in-out infinite;
}

.about-visual-card--1 {
    grid-row: span 2;
    min-height: 438px;
}

.about-visual-card--2 {
    animation-delay: 0.35s;
}

.about-visual-card--3 {
    animation-delay: 0.12s;
}

.about-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 34, 22, 0.08), rgba(8, 27, 17, 0.78));
}

.about-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-card span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    width: fit-content;
    border-radius: 999px;
    background: rgba(8, 27, 17, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-hero__badge {
    position: absolute;
    right: 22px;
    bottom: 18px;
    z-index: 2;
    max-width: 280px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(14, 44, 29, 0.88);
    box-shadow: 0 18px 34px rgba(10, 30, 20, 0.22);
    backdrop-filter: blur(10px);
}

.about-hero__badge strong,
.about-hero__badge span {
    display: block;
}

.about-hero__badge strong {
    margin-bottom: 6px;
    color: #fff;
    font-size: 15px;
}

.about-hero__badge span {
    color: rgba(228, 239, 232, 0.84);
    font-size: 13px;
    line-height: 1.5;
}

.about-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-proof-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(204, 219, 209, 0.92);
    background:
        radial-gradient(circle at top right, rgba(128, 191, 155, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fbf8);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.08);
}

.about-proof-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 122, 72, 0.14), rgba(131, 191, 157, 0.28));
    color: #1d6f44;
    font-size: 20px;
}

.about-proof-card h3,
.about-proof-card p {
    margin: 0;
}

.about-proof-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #123725;
}

.about-proof-card p {
    color: #587365;
    line-height: 1.65;
}

.about-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-industries span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(58, 103, 79, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: #244633;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(17, 55, 35, 0.05);
}

.about-capabilities .about-capability {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.about-capabilities .about-capability::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -32px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 146, 102, 0.12), transparent 68%);
}

.about-gallery {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.about-gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    margin: 0;
    border-radius: 28px;
    border: 1px solid rgba(204, 219, 209, 0.92);
    box-shadow: 0 18px 34px rgba(27, 55, 40, 0.12);
}

.about-gallery-card--1 {
    grid-row: span 2;
    min-height: 560px;
}

.about-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.14s ease;
}

.about-gallery-card:hover img {
    transform: scale(1.04);
}

.about-gallery-card figcaption {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 8px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(8, 27, 17, 0.04), rgba(8, 27, 17, 0.86));
}

.about-gallery-card strong {
    color: #fff;
    font-size: 20px;
}

.about-gallery-card span {
    color: rgba(233, 241, 236, 0.88);
    line-height: 1.55;
}

.about-final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(145, 214, 177, 0.24), transparent 30%),
        linear-gradient(135deg, #0d3822, #1d6f44);
    box-shadow: 0 22px 44px rgba(8, 27, 17, 0.22);
}

.about-final-cta__copy h2,
.about-final-cta__copy p {
    color: #fff;
}

.about-final-cta__copy h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.08;
}

.about-final-cta__copy p {
    margin: 0;
    max-width: 760px;
    color: rgba(233, 241, 236, 0.9);
    line-height: 1.7;
}

.about-final-cta__actions {
    display: grid;
    gap: 10px;
    justify-items: stretch;
    min-width: 280px;
}

.about-final-cta__actions .btn {
    justify-content: center;
}

@media (max-width: 1100px) {
    .about-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-gallery-card--1 {
        grid-row: span 1;
        min-height: 320px;
    }

    .about-final-cta__inner {
        grid-template-columns: 1fr;
    }

    .about-final-cta__actions {
        min-width: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .about-hero__visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-visual-card--1 {
        grid-row: span 1;
        min-height: 300px;
    }

    .about-hero__badge {
        position: static;
        max-width: none;
    }
}

@media (max-width: 720px) {
    .about-proof-grid,
    .about-gallery,
    .about-final-cta__actions {
        grid-template-columns: 1fr;
    }

    .about-hero__visual {
        grid-template-columns: 1fr;
    }

    .about-visual-card,
    .about-visual-card--1,
    .about-gallery-card,
    .about-gallery-card--1 {
        min-height: 240px;
    }

    .about-final-cta__inner {
        padding: 28px 22px;
    }
}

.inline-admin-shell {
    border: 1px solid rgba(186, 203, 190, 0.8);
    border-radius: 22px;
    background: rgba(247, 250, 247, 0.96);
    box-shadow: 0 12px 32px rgba(18, 48, 31, 0.08);
    overflow: hidden;
}

.inline-admin-shell__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #173827;
}

.inline-admin-shell__summary::-webkit-details-marker {
    display: none;
}

.inline-admin-shell__summary::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 4px;
    border-right: 2px solid #2d6d48;
    border-bottom: 2px solid #2d6d48;
    transform: rotate(45deg);
    transition: transform var(--transition);
}

.inline-admin-shell[open] .inline-admin-shell__summary::after {
    transform: rotate(-135deg);
}

.inline-admin-shell__summary-note {
    margin-left: auto;
    color: #5e7668;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.inline-admin-panel {
    display: grid;
    gap: 16px;
    padding: 0 18px 18px;
    border: 0;
    border-top: 1px solid rgba(186, 203, 190, 0.8);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.inline-admin-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.inline-admin-panel__head h2 {
    margin: 0;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.12;
}

.inline-admin-panel__notice,
.inline-admin-panel__errors {
    margin: 0;
    padding: 11px 13px;
    border-radius: 14px;
}

.inline-admin-panel__notice.is-success {
    background: rgba(34, 125, 78, 0.12);
    color: #1d5e3c;
    border: 1px solid rgba(34, 125, 78, 0.18);
}

.inline-admin-panel__errors {
    background: rgba(171, 58, 58, 0.08);
    color: #8d2f2f;
    border: 1px solid rgba(171, 58, 58, 0.15);
}

.inline-admin-panel__errors ul,
.inline-admin-panel .errorlist {
    margin: 0;
    padding-left: 18px;
}

.inline-admin-panel__form {
    display: grid;
    gap: 16px;
}

.inline-admin-grid {
    display: grid;
    gap: 14px;
}

.inline-admin-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-admin-field {
    display: grid;
    gap: 7px;
}

.inline-admin-field--wide {
    grid-column: 1 / -1;
}

.inline-admin-field label {
    font-size: 13px;
    font-weight: 600;
    color: #163626;
}

.inline-admin-field input[type="file"] {
    padding: 10px 12px;
    background: rgba(248, 250, 248, 0.96);
}

.inline-admin-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inline-admin-help {
    margin: 0;
    color: #5f776a;
    font-size: 12px;
    line-height: 1.45;
}

.inline-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.inline-admin-media-rows {
    display: grid;
    gap: 10px;
}

.inline-admin-media-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid #d6e2d8;
    background: rgba(241, 246, 242, 0.96);
}

.inline-admin-media-row img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d6e2d8;
}

.inline-admin-media-row__meta {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.inline-admin-media-row__meta strong,
.inline-admin-media-row__meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inline-admin-media-row__meta strong {
    color: #173827;
    font-size: 14px;
    line-height: 1.25;
}

.inline-admin-media-row__meta span {
    color: #587061;
    font-size: 12px;
    line-height: 1.35;
}

.inline-admin-media-row form {
    justify-self: end;
}

.inline-admin-media-empty {
    margin: 0;
    color: #587061;
}

.card-media-admin {
    margin-top: 12px;
    border-top: 1px dashed #d6e2d8;
    padding-top: 10px;
}

.card-media-admin summary {
    cursor: pointer;
    list-style: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #476250;
}

.card-media-admin summary::-webkit-details-marker {
    display: none;
}

.card-media-admin__form {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.card-media-admin__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.card-media-admin__field {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #587061;
    font-size: 12px;
}

.card-media-admin__field input[type="range"] {
    width: 100%;
    margin: 0;
}

.card-media-admin__value {
    color: #173827;
    font-size: 12px;
}

.card-media-admin--wide {
    margin-top: 12px;
    padding: 12px 10px 0;
    border-top-style: solid;
}

@media (max-width: 860px) {
    .inline-admin-shell__summary {
        flex-wrap: wrap;
        padding: 13px 14px;
    }

    .inline-admin-shell__summary-note {
        margin-left: 0;
    }

    .inline-admin-panel {
        padding: 0 14px 14px;
    }

    .inline-admin-panel__head {
        flex-direction: column;
    }

    .inline-admin-grid--two {
        grid-template-columns: 1fr;
    }

    .inline-admin-media-row {
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: start;
    }

    .inline-admin-media-row img {
        width: 56px;
        height: 56px;
    }

    .inline-admin-media-row form {
        grid-column: 2;
        justify-self: start;
    }

    .inline-admin-actions .btn,
    .inline-admin-panel__head .btn {
        width: 100%;
        justify-content: center;
    }

    .card-media-admin__grid {
        grid-template-columns: 1fr;
    }
}

.product-card__media img,
.article-card__media img,
.blog-featured__media img,
.blog-article-hero__visual img,
.product-detail__media img,
.product-gallery-modal__image-wrap img,
.preview-modal__media img {
    --img-width-active: var(--img-width, 100);
    --img-height-active: var(--img-height, 100);
    transform: scale3d(
        calc((var(--img-scale, 100) * var(--img-width-active, 100)) / 10000),
        calc((var(--img-scale, 100) * var(--img-height-active, 100)) / 10000),
        1
    );
    transform-origin: center;
}

@keyframes previewSpinAdaptive {
    0%, 100% { transform: perspective(800px) rotateY(0deg) scale3d(calc((var(--img-scale, 100) * var(--img-width-active, 100)) / 10000), calc((var(--img-scale, 100) * var(--img-height-active, 100)) / 10000), 1); }
    50% { transform: perspective(800px) rotateY(18deg) scale3d(calc((var(--img-scale, 100) * var(--img-width-active, 100)) / 10000), calc((var(--img-scale, 100) * var(--img-height-active, 100)) / 10000), 1); }
}

.preview-modal__media img.is-3d {
    animation-name: previewSpinAdaptive;
}

@media (max-width: 860px) {
    .product-card__media img,
    .article-card__media img,
    .blog-featured__media img,
    .blog-article-hero__visual img,
    .product-detail__media img,
    .product-gallery-modal__image-wrap img,
    .preview-modal__media img {
        --img-width-active: var(--img-width-mobile, var(--img-width, 100));
        --img-height-active: var(--img-height-mobile, var(--img-height, 100));
    }
}
