:root {
    --green: #297c46;
    --green-dark: #1e5a32;
    --green-deep: #123a22;
    --orange: #ff9933;
    --text: #1e1e1e;
    --text-muted: rgba(30, 30, 30, 0.68);
    --bg: #f5f7f3;
    --bg-soft: #eef2eb;
    --white: #ffffff;
    --border: #d9e0d4;
    --border-strong: #c9d3c2;
    --shadow-sm: 0 10px 30px rgba(18, 58, 34, 0.05);
    --shadow-md: 0 18px 40px rgba(18, 58, 34, 0.08);
    --shadow-lg: 0 28px 60px rgba(18, 58, 34, 0.12);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;
    --container: 1280px;
    --transition: 0.24s ease;
    --font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

body.is-locked {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

section[id] {
    scroll-margin-top: 104px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section-space {
    padding: 88px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-text {
    max-width: 760px;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 17px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(41, 124, 70, 0.22);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    border-color: var(--border-strong);
    background: var(--white);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.btn-full {
    width: 100%;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(245, 247, 243, 0.98);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 58px;
    height: 58px;
    border: 4px solid var(--border);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    margin-top: 18px;
    color: var(--green-dark);
    font-size: 20px;
    font-weight: 700;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.top-bar {
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.top-bar-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.top-bar-text {
    text-align: center;
}

.top-bar-text a {
    color: var(--white);
    text-decoration: underline;
}

.top-bar-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 26px;
    line-height: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(245, 247, 243, 0.92);
    border-bottom: 1px solid rgba(201, 211, 194, 0.85);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 86px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    line-height: 0;
    max-width: 220px;
}

.logo img {
    display: block;
    width: auto;
    height: 44px;
    max-width: 100%;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.main-nav a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--transition);
}

.main-nav a:hover {
    color: var(--green-dark);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.header-action-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.header-icon-btn svg {
    width: 20px;
    height: 20px;
}

.header-icon-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff8b1e;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    transition: opacity var(--transition), transform var(--transition);
}

.header-icon-count.is-empty {
    opacity: 0;
    transform: scale(0.6);
}

.header-icon-btn:hover,
.header-search-toggle[aria-expanded="true"] {
    border-color: rgba(41, 124, 70, 0.34);
    background: var(--bg-soft);
    color: var(--green-dark);
}

.header-phone {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.header-quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(41, 124, 70, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(41, 124, 70, 0.08);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.header-quick-link:hover {
    border-color: rgba(41, 124, 70, 0.32);
    background: rgba(41, 124, 70, 0.14);
    transform: translateY(-2px);
}

.header-search-panel {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
    background: rgba(245, 247, 243, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: max-height var(--transition), opacity var(--transition), visibility var(--transition), border-color var(--transition);
}

.header-search-panel.is-open {
    max-height: 120px;
    border-top-color: rgba(201, 211, 194, 0.85);
    opacity: 1;
    visibility: visible;
}

.header-search-panel-inner {
    padding-top: 16px;
    padding-bottom: 18px;
}

.header-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(680px, 100%);
    margin-left: auto;
}

.header-search-form input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--text);
    outline: none;
}

.header-search-form input:focus {
    border-color: rgba(41, 124, 70, 0.42);
}

.header-search-form button {
    min-width: 120px;
    height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--green);
    color: var(--white);
    font-weight: 700;
}

.shop-panel-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1450;
    background: rgba(13, 22, 16, 0.52);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.shop-panel-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

.shop-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1460;
    display: none;
    flex-direction: column;
    width: min(430px, calc(100% - 12px));
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    box-shadow: -24px 0 56px rgba(18, 58, 34, 0.16);
    transform: translateX(100%);
    transition: transform var(--transition);
}

.shop-side-panel.is-open {
    display: flex;
    transform: translateX(0);
}

.shop-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 28px 22px;
    border-bottom: 1px solid var(--border);
}

.shop-panel-head p {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-panel-head h2 {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 800;
}

.shop-panel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}

.shop-panel-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px 28px;
}

.shop-panel-empty {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--bg-soft);
}

.shop-panel-empty strong {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.shop-panel-empty p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.shop-panel-list {
    display: grid;
    gap: 14px;
}

.shop-panel-item {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.shop-panel-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.shop-panel-item-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.shop-panel-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.shop-panel-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
}

.shop-panel-item-price {
    margin-top: 14px;
    font-size: 19px;
    font-weight: 800;
}

.shop-panel-item-note {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
}

.shop-panel-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.shop-panel-mini-btn,
.shop-panel-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.shop-panel-mini-btn {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
}

.shop-panel-primary-btn {
    border: 0;
    background: var(--green);
    color: var(--white);
}

.shop-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
}

.shop-qty-control button {
    width: 38px;
    height: 38px;
    border: 0;
    background: var(--white);
    color: var(--text);
    font-size: 18px;
    line-height: 1;
}

.shop-qty-control span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 700;
}

.shop-panel-footer {
    display: grid;
    gap: 14px;
    padding: 20px 28px 28px;
    border-top: 1px solid var(--border);
    background: rgba(245, 247, 243, 0.9);
}

.shop-panel-footer .shop-panel-primary-btn {
    width: 100%;
}

.shop-panel-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
}

.shop-panel-total strong {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.shop-panel-note {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
}

.hero {
    padding: 52px 0 40px;
    background:
        radial-gradient(circle at top right, rgba(41, 124, 70, 0.08), transparent 28%),
        linear-gradient(180deg, #f2f5ef 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 28px;
    align-items: center;
}

.hero-copy {
    max-width: 640px;
}

.hero-copy h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.hero-text {
    max-width: 620px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    list-style: none;
}

.hero-facts li {
    padding: 18px 18px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.hero-facts strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-facts span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.45;
}

.hero-media {
    display: grid;
    gap: 16px;
}

.hero-card,
.hero-image-card {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
}

.hero-card {
    padding: 22px 24px;
}

.hero-card-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-shortcuts a {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--bg-soft);
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition);
}

.hero-shortcuts a:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.hero-image-card {
    min-height: 420px;
    padding: 18px;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    max-height: 384px;
    object-fit: contain;
}

.hero-card-note p {
    color: var(--text-muted);
    font-size: 15px;
}

.catalog-section {
    background: linear-gradient(180deg, rgba(238, 242, 235, 0.8) 0%, rgba(245, 247, 243, 0) 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 234px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card-media {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    margin: -8px -8px 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.22) 0 42px, transparent 43px),
        linear-gradient(140deg, #297c46 0%, #163d24 100%);
    color: var(--white);
    overflow: hidden;
}

.category-card-media::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -36px;
    width: 138px;
    height: 138px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.category-card-media-mark {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 22px;
    font-weight: 900;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 124, 70, 0.16) 0%, rgba(41, 124, 70, 0) 72%);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(41, 124, 70, 0.45);
    box-shadow: var(--shadow-md);
}

.category-index {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}

.category-card h3 {
    position: relative;
    z-index: 1;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 800;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 15px;
}

.category-card a {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 18px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
}

.featured-section,
.benefits-section,
.faq-section,
.contacts-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(41, 124, 70, 0.4);
}

.product-thumb {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 190px;
    padding: 20px;
    overflow: hidden;
    color: var(--white);
}

.product-thumb::before,
.product-thumb::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.product-thumb::before {
    top: 22px;
    right: 20px;
    width: 120px;
    height: 120px;
}

.product-thumb::after {
    bottom: -22px;
    left: -18px;
    width: 150px;
    height: 150px;
}

.product-thumb-green {
    background: linear-gradient(140deg, #297c46 0%, #163d24 100%);
}

.product-thumb-dark {
    background: linear-gradient(140deg, #1f3125 0%, #0f1712 100%);
}

.product-thumb-light {
    background: linear-gradient(140deg, #dce7d7 0%, #b8cbb0 100%);
    color: var(--green-deep);
}

.product-thumb-orange {
    background: linear-gradient(140deg, #ffb160 0%, #ff8b1e 100%);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-code {
    position: relative;
    z-index: 1;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
}

.product-thumb-light .product-code {
    color: var(--green-deep);
}

.product-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}

.product-body h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.product-body p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 15px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
}

.product-meta span {
    font-size: 19px;
    font-weight: 800;
}

.product-meta a {
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.product-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.product-card-actions [data-card-favorite] {
    order: 1;
}

.product-card-actions [data-card-cart] {
    order: 2;
}

.product-card-actions [data-card-compare] {
    order: 3;
    grid-column: 1 / -1;
}

.product-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition);
}

.product-action-btn:hover,
.product-action-btn.is-active {
    border-color: rgba(41, 124, 70, 0.34);
    background: var(--bg-soft);
    color: var(--green-dark);
}

.product-action-btn-primary {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.product-action-btn-primary:hover,
.product-action-btn-primary.is-active {
    border-color: var(--green-dark);
    background: var(--green-dark);
    color: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.brand-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    min-height: 216px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f7faf5 100%);
    box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
    font-size: 22px;
    line-height: 1.18;
    font-weight: 800;
}

.benefit-card p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.notice-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(41, 124, 70, 0.18);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(238, 242, 235, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: var(--shadow-sm);
}

.notice-points {
    display: grid;
    gap: 14px;
}

.notice-point {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
}

.notice-point strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.notice-point span {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 14px;
}

.shop-action-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1400;
    max-width: min(420px, calc(100vw - 32px));
    padding: 16px 18px;
    border: 1px solid rgba(41, 124, 70, 0.24);
    border-radius: 18px;
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
}

.shop-action-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.support-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.support-card .eyebrow,
.support-card .section-title,
.support-card .section-text {
    color: var(--white);
}

.support-card .eyebrow::before {
    background: rgba(255, 255, 255, 0.72);
}

.support-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.support-phone {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
}

.faq-icon {
    flex: 0 0 auto;
    color: var(--green-dark);
    font-size: 28px;
    line-height: 1;
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.24s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 22px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.contact-card {
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition);
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 124, 70, 0.45);
}

.contact-card-label {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.contact-card strong {
    display: block;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.3;
}

.contact-meta {
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 15px;
}

.form-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-card h3,
.modal-title {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
}

.form-card p,
.modal-subtitle {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 15px;
}

.site-form {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.site-form label {
    display: grid;
    gap: 8px;
}

.site-form label > span {
    font-size: 14px;
    font-weight: 700;
}

.site-form input,
.site-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-form textarea {
    resize: vertical;
    min-height: 120px;
}

.site-form input:focus,
.site-form textarea:focus {
    border-color: rgba(41, 124, 70, 0.62);
    box-shadow: 0 0 0 4px rgba(41, 124, 70, 0.1);
}

.checkbox-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.checkbox-row a {
    text-decoration: underline;
}

.site-footer {
    padding-top: 56px;
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 24px 28px;
    padding-bottom: 40px;
}

.footer-brand img {
    height: 54px;
    width: auto;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 18px;
    font-size: 15px;
}

.footer-column h4 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 18px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
    width: min(420px, calc(100% - 40px));
    padding: 18px;
    border: 1px solid rgba(18, 58, 34, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-lg);
    transform: translateY(130%);
    transition: transform var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: grid;
    gap: 14px;
}

.cookie-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.cookie-content a {
    text-decoration: underline;
}

.btn-cookie-accept {
    justify-self: start;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--green);
    color: var(--white);
    font-weight: 700;
}

.modal-overlay,
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(13, 22, 16, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.active,
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay:not(.active),
.mobile-menu-overlay:not(.active) {
    display: none;
}

.modal-content {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100dvh - 40px);
    padding: 30px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.modal-close,
.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}

.mobile-menu-overlay {
    justify-content: flex-end;
}

.mobile-menu-content {
    position: relative;
    width: min(420px, 100%);
    height: 100%;
    padding: 88px 28px 32px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    box-shadow: -24px 0 60px rgba(18, 58, 34, 0.15);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    min-height: 94px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-logo img {
    height: 72px;
    width: auto;
}

.mobile-menu-nav {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.mobile-menu-nav a {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: color var(--transition), transform var(--transition);
}

.mobile-menu-nav a:hover {
    color: var(--green-dark);
    transform: translateX(4px);
}

.mobile-menu-contact {
    display: grid;
    gap: 14px;
    margin-top: 34px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.4;
}

.mobile-menu-utility {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.mobile-menu-utility-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}

button.mobile-menu-utility-link {
    width: 100%;
}

.mobile-menu-utility-link-accent {
    border-color: transparent;
    background: var(--green);
    color: var(--white);
}

@media (max-width: 1180px) {
    .header-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 14px;
    }

    .main-nav {
        gap: 14px;
    }

    .header-phone,
    .header-quick-link,
    .header-optional-action {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .section-space {
        padding: 72px 0;
    }

    .main-nav,
    .header-phone,
    .header-quick-link,
    .header-optional-action {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .hero-grid,
    .notice-card,
    .contacts-grid,
    .support-card {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .contact-cards,
    .category-grid,
    .product-grid,
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-image-card {
        min-height: 340px;
    }

    .support-actions {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .container {
        padding: 0 16px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding: 40px 0 16px;
    }

    .hero-actions,
    .hero-facts,
    .category-grid,
    .product-grid,
    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn,
    .support-actions .btn {
        width: 100%;
    }

    .hero-facts li,
    .brand-pill {
        min-height: unset;
    }

    .support-phone {
        font-size: 24px;
    }

    .form-card,
    .modal-content,
    .notice-card,
    .support-card {
        padding: 22px;
    }

    .header-row {
        grid-template-columns: minmax(0, auto) 1fr auto;
        gap: 10px;
        min-height: 70px;
    }

    .logo {
        max-width: 128px;
    }

    .logo img {
        height: 36px;
    }

    .header-tools {
        gap: 6px;
    }

    .header-action-group {
        gap: 4px;
    }

    .header-icon-btn,
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .header-icon-btn svg {
        width: 18px;
        height: 18px;
    }

    .header-icon-count {
        top: -5px;
        right: -5px;
        min-width: 17px;
        height: 17px;
        font-size: 10px;
    }

    .header-search-panel-inner {
        padding-top: 14px;
        padding-bottom: 16px;
    }

    .header-search-form {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
    }

    .header-search-form button {
        width: 100%;
    }

    .shop-side-panel {
        width: 100%;
    }

    .mobile-menu-overlay {
        padding: 0;
    }

    .mobile-menu-content {
        width: min(360px, 100%);
        padding: 76px 22px 26px;
    }

    .mobile-menu-top {
        min-height: 74px;
        padding-bottom: 20px;
    }

    .mobile-menu-logo img {
        height: 56px;
    }

    .mobile-menu-nav {
        margin-top: 20px;
    }

    .mobile-menu-nav a {
        padding: 18px 0;
        font-size: 19px;
    }

    .mobile-menu-contact {
        margin-top: 24px;
        font-size: 16px;
        word-break: break-word;
    }

    .mobile-menu-utility {
        margin-top: 22px;
    }

    .shop-panel-head,
    .shop-panel-body,
    .shop-panel-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .product-card-actions {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .top-bar-text {
        max-width: calc(100% - 24px);
        padding-right: 18px;
        font-size: 13px;
    }

    .header-row {
        min-height: 68px;
    }

    .logo img {
        height: 34px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .category-card,
    .benefit-card {
        min-height: unset;
    }

    .faq-question {
        padding: 20px;
        font-size: 17px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .product-thumb {
        min-height: 154px;
        padding: 18px;
    }

    .product-thumb::before {
        width: 96px;
        height: 96px;
    }

    .product-thumb::after {
        width: 116px;
        height: 116px;
    }

    .product-code {
        font-size: 21px;
    }

    .product-body {
        padding: 18px;
    }

    .product-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .product-meta a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 16px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--bg-soft);
    }

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
