/* Color Scheme Variables */

:root {
    --primary-color: #489140;
    --primary-light: #a2bc9f;
    --primary-dark: #1f4b1b;
    --primary-vibrant: #39982f;
    --secondary-color: #a1a85d;
    --secondary-light: #c5c7ad;
    --secondary-dark: #5b5f25;
    --accent-color: #ab7c30;
    --accent-light: #b29f80;
    --accent-dark: #584018;
    --gradient-primary: linear-gradient(135deg, #489140, #a1a85d);
    --gradient-secondary: linear-gradient(135deg, #a1a85d, #ab7c30);
    --gradient-accent: linear-gradient(90deg, #489140, #a1a85d, #ab7c30);
    --text-primary: #1d261c;
    --text-secondary: #617d5e;
    --bg-primary: #fafaf9;
    --bg-secondary: #eff1ee;
    --bg-strong: #e3e8e3;
    --border-color: #d3dad2;
    --success-color: #1e8f20;
    --warning-color: #c8811e;
    --error-color: #d92629;
    --footer-bg: #1e371b;
    --footer-text: #e2e9e2;
    --primary-overlay-90: rgba(31, 75, 27, 0.9);
    --primary-overlay-75: rgba(31, 75, 27, 0.75);
}


/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text-primary);
    background: var(--bg-secondary);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.container { width: min(var(--max-width, 1440px), calc(100% - 48px)); margin: 0 auto; }

:root {
    --max-width: 1440px;
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-soft: 0 12px 32px rgba(24, 33, 43, 0.08);
    --shadow-strong: 0 16px 48px rgba(24, 33, 43, 0.14);
}

.section { padding: 58px 0; background: var(--bg-primary); border-top: 1px solid var(--border-color); }
.section.alt { background: var(--bg-secondary); }
.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}
.section-kicker {
    margin: 0 0 6px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.section-title,
.section h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}
.section-subtitle,
.section-header p {
    margin: 6px 0 0;
    color: var(--text-secondary);
    font-size: 15px;
}
.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 900;
}
.section-link:hover { border-color: var(--primary-color); color: var(--primary-color); }
.section-link svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }


/* VARIANT5 Header Base */
.v5-topbar {
    background: var(--footer-bg);
    color: #eef3f6;
    font-size: 13px;
}
.v5-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.v5-topbar ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #c8d2da;
}
.v5-topbar strong { color: #fff; font-weight: 800; }
.v5-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(14px);
}
.v5-header--seeds {
    background: rgba(250, 248, 241, 0.96);
    box-shadow: 0 10px 30px rgba(31, 75, 27, 0.06);
}
.v5-seed-topbar {
    color: #f5f1e8;
    background: linear-gradient(90deg, var(--primary-dark), #4e3a1f);
    font-size: 13px;
    font-weight: 800;
}
.v5-seed-topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.v5-seed-topbar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.v5-header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: minmax(250px, auto) minmax(280px, 1fr) auto;
    align-items: center;
    gap: 22px;
}
.v5-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
}
.v5-brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}
.v5-brand-copy strong {
    color: var(--text-primary);
    font-size: 22px;
    line-height: 1.05;
}
.v5-brand-copy small {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
}
.v5-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 900;
}
.v5-brand-mark--image {
    width: 54px;
    height: 54px;
    overflow: hidden;
    padding: 3px;
    background: color-mix(in srgb, var(--primary-color) 10%, white);
    border: 0;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--primary-color) 22%, var(--border-color));
}
.v5-brand-mark--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.42);
    transform-origin: center;
}
.v5-footer-mark--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v5-search {
    height: 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, var(--border-color));
    border-radius: var(--radius-md);
}
.v5-search input {
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 16px;
    color: var(--text-primary);
    background: transparent;
}
.v5-search input::placeholder { color: #8794a1; }
.v5-search button {
    width: 48px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--text-primary);
    background: transparent;
    cursor: pointer;
}
.v5-search button svg,
.v5-icon-btn svg,
.v5-header-phone svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.v5-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.v5-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.v5-header--seeds .v5-header-phone {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
}
.v5-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    background: #fff;
    cursor: pointer;
}
.v5-icon-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.v5-cart-dot {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--accent-color);
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}
.v5-menu-btn { display: none; }
.v5-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}
.v5-nav-inner,
.v5-chip-row {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}
.v5-nav-inner::-webkit-scrollbar,
.v5-chip-row::-webkit-scrollbar { display: none; }
.v5-nav a,
.v5-chip-row a,
.v5-mini-nav a {
    flex: 0 0 auto;
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}
.v5-nav a:hover,
.v5-nav a.active,
.v5-chip-row a:hover,
.v5-mini-nav a:hover {
    color: var(--primary-dark);
    background: color-mix(in srgb, var(--primary-color) 10%, white);
}
.v5-mini-nav { display: flex; align-items: center; gap: 8px; }

@media (max-width: 980px) {
    .v5-header-inner { grid-template-columns: auto auto; gap: 12px; }
    .v5-search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 12px; }
    .v5-header-phone { display: none; }
    .v5-menu-btn { display: grid; }
    .v5-topbar ul { display: none; }
}
@media (max-width: 700px) {
    .v5-seed-topbar-inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }
}
@media (max-width: 560px) {
    .v5-topbar { font-size: 11px; }
    .v5-topbar-inner { justify-content: center; text-align: center; }
    .v5-brand { font-size: 18px; }
    .v5-brand-mark { width: 34px; height: 34px; }
    .v5-brand-mark--image { width: 44px; height: 44px; }
    .v5-brand-copy strong { font-size: 17px; }
    .v5-brand-copy small { display: none; }
    .v5-icon-btn { width: 38px; height: 38px; }
    .v5-header-actions .v5-icon-btn[title="Поиск"],
    .v5-header-actions .v5-icon-btn[title="Профиль"],
    .v5-header-actions .v5-icon-btn[title="Избранное"] { display: none; }
}

.v5-header--compact { position: sticky; }
.v5-header--compact .v5-header-inner { min-height: 64px; }
.v5-chip-row { min-height: 44px; padding-bottom: 10px; }
.v5-chip-row a { background: var(--bg-secondary); }
.v5-header--seeds .v5-chip-row {
    gap: 8px;
    padding-bottom: 12px;
}
.v5-header--seeds .v5-chip-row a {
    background: #fff;
    border: 1px solid var(--border-color);
}

/* Custom seed-shop header */
.seed-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background:
        linear-gradient(180deg, rgba(250, 248, 241, 0.98), rgba(244, 246, 239, 0.96));
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 16%, var(--border-color));
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 28px rgba(31, 75, 27, 0.07);
}
.seed-header-shell {
    min-height: 116px;
    display: grid;
    grid-template-columns: minmax(310px, 0.82fr) minmax(340px, 1.18fr) minmax(210px, auto);
    grid-template-areas:
        "brand nav actions"
        "brand search search";
    align-items: center;
    gap: 12px 22px;
    padding: 12px 0;
}
.seed-brand {
    grid-area: brand;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 22px;
    border-right: 1px solid color-mix(in srgb, var(--primary-color) 18%, var(--border-color));
}
.seed-brand-emblem {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--primary-color) 28%, var(--border-color));
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238, 244, 231, 0.94));
    box-shadow: 0 10px 22px rgba(31, 75, 27, 0.12);
}
.seed-brand-emblem img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(31, 75, 27, 0.12));
}
.seed-brand-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
}
.seed-brand-kicker {
    color: var(--accent-color);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}
.seed-brand-copy strong {
    color: var(--text-primary);
    font-size: 26px;
    line-height: 1.05;
    font-weight: 900;
}
.seed-brand-copy small {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
}
.seed-nav {
    grid-area: nav;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}
.seed-nav::-webkit-scrollbar { display: none; }
.seed-nav a {
    flex: 0 0 auto;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}
.seed-nav a:hover {
    color: var(--primary-dark);
    border-color: var(--primary-color);
}
.seed-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}
.seed-phone {
    display: grid;
    gap: 1px;
    text-align: right;
}
.seed-phone span {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.seed-phone strong {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}
.seed-cart {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--primary-color) 24%, var(--border-color));
    border-radius: 8px;
    color: #fff;
    background: var(--primary-dark);
    cursor: pointer;
}
.seed-cart:hover {
    background: var(--primary-color);
}
.seed-cart svg {
    width: 19px;
    height: 19px;
    stroke: currentColor;
    fill: none;
}
.seed-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: var(--accent-color);
    font-size: 11px;
    font-weight: 900;
}
.seed-search {
    grid-area: search;
    height: 48px;
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 50px;
    align-items: center;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, var(--border-color));
    border-radius: 8px;
    background: #fff;
}
.seed-search span {
    height: 100%;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: var(--primary-dark);
    background: color-mix(in srgb, var(--primary-color) 9%, white);
    border-right: 1px solid color-mix(in srgb, var(--primary-color) 16%, var(--border-color));
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}
.seed-search input {
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0 14px;
    border: 0;
    outline: 0;
    color: var(--text-primary);
    background: transparent;
}
.seed-search input::placeholder { color: #7d8b78; }
.seed-search button {
    width: 50px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    color: var(--primary-dark);
    background: transparent;
    cursor: pointer;
}
.seed-search button:hover {
    color: #fff;
    background: var(--primary-color);
}
.seed-search button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

@media (max-width: 1120px) {
    .seed-header-shell {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand actions"
            "nav nav"
            "search search";
        gap: 10px 16px;
    }
    .seed-brand {
        padding-right: 0;
        border-right: 0;
    }
}
@media (max-width: 680px) {
    .seed-header-shell {
        min-height: 0;
        padding: 8px 0 10px;
        gap: 8px;
    }
    .seed-brand {
        gap: 10px;
    }
    .seed-brand-emblem {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }
    .seed-brand-emblem img {
        width: 48px;
        height: 48px;
    }
    .seed-brand-kicker,
    .seed-brand-copy small,
    .seed-phone {
        display: none;
    }
    .seed-brand-copy strong {
        font-size: 18px;
    }
    .seed-nav {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: start;
        gap: 6px 18px;
        overflow: visible;
        padding-top: 4px;
        border-top: 1px solid var(--border-color);
    }
    .seed-nav a {
        padding: 4px 0;
        font-size: 13px;
    }
    .seed-search {
        height: 44px;
        grid-template-columns: minmax(0, 1fr) 44px;
    }
    .seed-search span {
        display: none;
    }
    .seed-search button {
        width: 44px;
        height: 44px;
    }
    .seed-cart {
        width: 42px;
        height: 42px;
    }
}


/* VARIANT5 Hero Base */
.v5-hero { padding: 28px 0 40px; }
.v5-hero-layout { display: grid; grid-template-columns: 248px minmax(0, 1fr) 304px; gap: 20px; align-items: stretch; }
.v5-category-rail {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.v5-rail-title {
    padding: 8px 10px 10px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.v5-rail-link {
    min-height: 44px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
}
.v5-rail-link:hover,
.v5-rail-link.active { background: var(--bg-secondary); }
.v5-rail-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 10%, white);
}
.v5-rail-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.v5-rail-count { color: var(--text-secondary); font-size: 12px; font-weight: 800; }
.v5-hero-main {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--footer-bg);
    box-shadow: var(--shadow-strong);
}
.v5-hero-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 14, 18, 0.78), rgba(10, 14, 18, 0.18) 58%, rgba(10, 14, 18, 0.42));
}
.v5-hero-media {
    position: absolute;
    inset: 0;
}
.v5-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v5-hero-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 68% 24%, color-mix(in srgb, var(--accent-color) 38%, transparent), transparent 28%),
        linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}
.v5-hero-fallback span {
    color: rgba(255,255,255,0.16);
    font-size: clamp(90px, 15vw, 180px);
    font-weight: 900;
}
.v5-hero-copy {
    position: relative;
    z-index: 1;
    width: min(580px, calc(100% - 48px));
    padding: 42px;
    color: #fff;
}
.v5-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 18px;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}
.v5-hero h1 {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}
.v5-hero-copy p {
    max-width: 480px;
    margin: 0 0 28px;
    color: #dbe5ea;
    font-size: 17px;
}
.v5-deal-stack { display: grid; gap: 16px; }
.v5-deal-card {
    min-height: 160px;
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 14px;
    align-items: center;
    padding: 18px;
    overflow: hidden;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.v5-deal-card.dark {
    color: #fff;
    background: var(--footer-bg);
    border-color: var(--footer-bg);
}
.v5-deal-card strong { display: block; margin-bottom: 6px; color: inherit; font-size: 18px; line-height: 1.2; }
.v5-deal-card span { display: block; color: var(--text-secondary); font-size: 13px; font-weight: 800; }
.v5-deal-card.dark span { color: #b8c5cf; }
.v5-deal-image {
    height: 120px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: var(--primary-color);
    background: var(--bg-secondary);
}
.v5-deal-image img { width: 100%; height: 100%; object-fit: cover; }
.v5-deal-image svg { width: 36px; height: 36px; stroke: currentColor; fill: none; }

@media (max-width: 1180px) {
    .v5-hero-layout { grid-template-columns: 220px minmax(0, 1fr); }
    .v5-deal-stack { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
    .v5-hero-layout { grid-template-columns: 1fr; }
    .v5-category-rail { grid-template-columns: repeat(2, 1fr); }
    .v5-rail-title { grid-column: 1 / -1; }
    .v5-hero-main { min-height: 420px; }
    .v5-hero-copy { padding: 30px; }
    .v5-hero h1 { font-size: 36px; }
    .v5-deal-stack { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .v5-category-rail { grid-template-columns: 1fr; }
    .v5-hero-main { min-height: 390px; }
    .v5-hero-copy { width: 100%; padding: 24px; }
    .v5-hero h1 { font-size: 30px; }
    .v5-hero-copy p { font-size: 15px; }
    .v5-deal-card { grid-template-columns: 1fr 104px; }
}

.v5-hero--compact .v5-hero-layout { grid-template-columns: 1fr 1fr; }
.v5-hero--compact .v5-hero-main { min-height: 340px; background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); }
.v5-hero--compact .v5-hero-main::after { display: none; }
.v5-hero--compact .v5-deal-stack { grid-template-columns: 1fr; }
@media (max-width: 860px) { .v5-hero--compact .v5-hero-layout { grid-template-columns: 1fr; } }

.v5-hero--seeds { padding: 30px 0 42px; }
.v5-hero--seeds .v5-hero-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
}
.v5-hero--seeds .v5-hero-main {
    min-height: 480px;
    background: var(--footer-bg);
}
.v5-hero--seeds .v5-hero-main::after {
    display: block;
    background: linear-gradient(90deg, rgba(16, 27, 15, 0.86), rgba(16, 27, 15, 0.54) 48%, rgba(16, 27, 15, 0.18));
}
.v5-hero--seeds .v5-hero-copy {
    align-self: end;
    width: min(640px, calc(100% - 48px));
}
.v5-hero--seeds .v5-hero-copy p {
    color: #eef4ec;
    font-size: 18px;
}
.v5-hero--seeds .v5-deal-stack {
    grid-template-columns: 1fr;
}
.v5-hero--seeds .v5-deal-card {
    min-height: 146px;
    box-shadow: 0 10px 28px rgba(31, 75, 27, 0.06);
}
.empty-catalog {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    border: 1px dashed color-mix(in srgb, var(--primary-color) 42%, var(--border-color));
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(72, 145, 64, 0.09), rgba(171, 124, 48, 0.08)),
        var(--bg-primary);
}
.empty-catalog h2 {
    margin: 0 0 8px;
}
.empty-catalog p:not(.section-kicker) {
    max-width: 720px;
    margin: 0;
    color: var(--text-secondary);
}
@media (max-width: 980px) {
    .v5-hero--seeds .v5-hero-layout { grid-template-columns: 1fr; }
    .v5-hero--seeds .v5-hero-main { min-height: 430px; }
}
@media (max-width: 640px) {
    .v5-hero--seeds .v5-hero-main { min-height: 430px; }
    .v5-hero--seeds .v5-hero-copy { width: 100%; padding: 24px; }
    .v5-hero--seeds .v5-hero-main::after {
        background: linear-gradient(180deg, rgba(16, 27, 15, 0.48), rgba(16, 27, 15, 0.92));
    }
    .empty-catalog { grid-template-columns: 1fr; padding: 22px; }
}


.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }

.btn-primary { background: var(--footer-bg); color: #fff; }
.btn-primary:hover { background: var(--primary-color); }
.btn-light { background: #fff; color: var(--footer-bg); }
.btn-outline { background: transparent; border-color: color-mix(in srgb, var(--footer-bg) 24%, white); color: var(--footer-bg); }
.btn-outline:hover { background: var(--footer-bg); color: #fff; }


/* VARIANT5 Product Cards */
.product-grid { display: grid; gap: 18px; }
.product-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
    border-color: color-mix(in srgb, var(--primary-color) 34%, var(--border-color));
    box-shadow: var(--shadow-soft);
}
.product-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--bg-secondary);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--accent-color);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.product-card-body { display: grid; gap: 10px; padding: 16px; }
.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.product-card-category {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.product-card-title {
    min-height: 42px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}
.product-card-price {
    color: var(--text-primary);
    font-size: 19px;
    font-weight: 900;
}
.product-card-link {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 800;
}
.product-card-cart-btn {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    background: var(--bg-primary);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: none;
}
.product-card-cart-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}
.product-card-cart-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
@media (max-width: 1020px) {
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
    .product-grid { grid-template-columns: 1fr !important; }
}

.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card--editorial .product-card-image { aspect-ratio: 3 / 4; }
.product-card--editorial .product-card-body {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255,255,255,0.94);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }

/* VARIANT5 Product Detail */
.breadcrumbs { padding: 16px 0; border-bottom: 1px solid var(--border-color); background: var(--bg-primary); }
.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 0;
    margin: 0;
}
.breadcrumbs-list a { color: var(--text-secondary); }
.breadcrumbs-list a:hover { color: var(--primary-color); }
.breadcrumbs-list .separator { color: var(--border-color); }
.breadcrumbs-list .current { color: var(--text-primary); font-weight: 800; }
.product-detail { padding: 48px 0 72px; background: var(--bg-primary); }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 46px; align-items: start; }
.product-gallery { position: sticky; top: calc(var(--header-height) + 24px); }
.product-gallery-main {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    cursor: pointer;
}
.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--primary-color); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
}
.product-info-category {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.product-info h1 {
    margin: 0;
    color: var(--text-primary);
    font-size: 34px;
    line-height: 1.16;
    font-weight: 900;
}
.product-price-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.product-price-current {
    color: var(--text-primary);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}
.product-price-note {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--success-color);
    background: color-mix(in srgb, var(--success-color) 10%, white);
    font-size: 12px;
    font-weight: 900;
}
.product-description { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.product-purchase-row { display: flex; flex-wrap: wrap; gap: 10px; }
.quantity-control {
    height: 44px;
    display: inline-grid;
    grid-template-columns: 38px 50px 38px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}
.quantity-control button,
.quantity-control input {
    border: 0;
    text-align: center;
    background: #fff;
    color: var(--text-primary);
    font-weight: 900;
}
.quantity-control button { cursor: pointer; }
.quantity-control input { border-left: 1px solid var(--border-color); border-right: 1px solid var(--border-color); }
.product-purchase-row .btn { flex: 1 1 180px; }
.product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.product-meta-item {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 800;
}
.product-meta-item svg { width: 20px; height: 20px; stroke: var(--primary-color); fill: none; }
.product-tabs { display: flex; gap: 8px; padding-top: 8px; border-top: 1px solid var(--border-color); }
.tab-btn {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text-secondary);
    font-weight: 900;
    cursor: pointer;
}
.tab-btn.active,
.tab-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.tab-content p { margin: 0; color: var(--text-secondary); }
.related-section { border-top: 1px solid var(--border-color); }

@media (max-width: 980px) {
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
}
@media (max-width: 620px) {
    .product-info { padding: 20px; }
    .product-info h1 { font-size: 26px; }
    .product-price-current { font-size: 30px; }
    .product-meta { grid-template-columns: 1fr; }
    .product-tabs { overflow-x: auto; }
}

.product-detail--market .product-info { box-shadow: var(--shadow-soft); }


/* VARIANT5 Categories */
.v5-category-grid { display: grid; gap: 14px; }
.v5-category-tile {
    min-height: 154px;
    display: grid;
    align-content: end;
    gap: 6px;
    padding: 18px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--footer-bg);
    color: #fff;
}
.v5-category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
}
.v5-category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 33, 43, 0.05), rgba(24, 33, 43, 0.82));
}
.v5-category-tile strong,
.v5-category-tile span,
.v5-category-fallback {
    position: relative;
    z-index: 1;
}
.v5-category-tile strong { font-size: 16px; }
.v5-category-tile span { color: #d7e0e6; font-size: 13px; font-weight: 800; }
.v5-category-fallback {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 10%, white);
    font-size: 22px;
    font-weight: 900;
}
.v5-category-chip,
.v5-category-stat {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.v5-category-chip { grid-template-columns: 48px 1fr auto; align-items: center; }
.v5-category-chip strong,
.v5-category-stat strong { color: var(--text-primary); font-size: 16px; }
.v5-category-chip span,
.v5-category-stat span { color: var(--text-secondary); font-size: 13px; font-weight: 800; }
.v5-category-chip:hover,
.v5-category-stat:hover { border-color: var(--primary-color); }
@media (max-width: 1180px) {
    .v5-category-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
    .v5-category-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .v5-category-grid { grid-template-columns: 1fr !important; }
}

.v5-category-grid--tiles { grid-template-columns: repeat(6, 1fr); }


/* VARIANT5 Footer */
.v5-footer {
    padding: 48px 0 24px;
    color: var(--footer-text);
    background: var(--footer-bg);
}
.v5-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 38px;
}
.v5-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}
.v5-footer-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: #fff;
    background: var(--primary-color);
    font-size: 15px;
    font-weight: 900;
}
.v5-footer p { max-width: 380px; margin: 0; color: #aebbc5; }
.v5-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.v5-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #aebbc5;
    font-size: 14px;
}
.v5-footer a:hover { color: #fff; }
.v5-footer svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.v5-footer-bottom,
.v5-footer-actions,
.v5-footer-compact-row,
.v5-footer-minimal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.v5-footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: #94a3af;
    font-size: 13px;
}
@media (max-width: 860px) {
    .v5-footer-grid { grid-template-columns: 1fr 1fr; }
    .v5-footer-bottom,
    .v5-footer-compact-row,
    .v5-footer-minimal-row { align-items: start; flex-direction: column; }
}
@media (max-width: 560px) {
    .v5-footer-grid { grid-template-columns: 1fr; }
}

.v5-footer-actions {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}
.v5-footer-actions a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 900; }


/* Trust strip */
.trust-strip { padding: 16px 0 54px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item {
    min-height: 86px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.trust-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 10%, white);
}
.trust-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.trust-item strong { display: block; color: var(--text-primary); font-size: 15px; }
.trust-item span { color: var(--text-secondary); font-size: 13px; }

/* Showcase */
.showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}
.showcase-main {
    position: relative;
    display: grid;
    min-height: 420px;
    overflow: hidden;
    border-radius: 8px;
    background: #132016;
    border: 1px solid color-mix(in srgb, var(--primary-color) 24%, var(--border-color));
    box-shadow: var(--shadow-soft);
}
.showcase-copy {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: end;
    gap: 18px;
    width: min(100%, 650px);
    min-height: 420px;
    padding: clamp(26px, 5vw, 52px);
}
.showcase-copy h2 { color: #fff; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28); }
.showcase-copy .section-kicker {
    width: max-content;
    padding: 8px 10px;
    border-radius: 999px;
    color: #0d2718;
    background: rgba(255, 255, 255, 0.82);
}
.showcase-copy p:not(.section-kicker) {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    max-width: 560px;
}
.showcase-copy .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}
.showcase-copy .btn-outline:hover {
    color: var(--text-primary);
    border-color: #fff;
    background: #fff;
}
.showcase-art {
    position: absolute;
    inset: 0;
    margin: 0;
}
.showcase-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 24, 16, 0.88) 0%, rgba(13, 24, 16, 0.62) 42%, rgba(13, 24, 16, 0.06) 78%),
        linear-gradient(0deg, rgba(13, 24, 16, 0.5), rgba(13, 24, 16, 0.08) 42%);
}
.showcase-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.showcase-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.side-offer {
    display: grid;
    grid-template-columns: minmax(170px, 0.58fr) minmax(0, 1fr);
    min-height: 190px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}
.side-offer > div:first-child {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px;
}
.side-offer strong { display: block; color: var(--text-primary); font-size: 19px; line-height: 1.18; }
.side-offer span { color: var(--text-secondary); font-size: 14px; line-height: 1.45; font-weight: 700; }
.side-img {
    order: -1;
    min-height: 190px;
    overflow: hidden;
    background: color-mix(in srgb, var(--primary-color) 9%, white);
}
.side-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.side-offer:hover .side-img img { transform: scale(1.035); }

/* Content pages */
.main-content {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}
.main-content h1,
.main-content h2,
.main-content h3 { color: var(--text-primary); }
.main-content p,
.main-content li { color: var(--text-secondary); }
.page-shell {
    display: grid;
    gap: 24px;
    padding: 48px 0 64px;
}
.page-hero {
    display: grid;
    gap: 12px;
    max-width: 860px;
}
.page-hero h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.12;
}
.page-hero p {
    margin: 0;
    font-size: 17px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.info-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card,
.text-panel {
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 10px 28px rgba(31, 75, 27, 0.05);
}
.info-card h2,
.info-card h3,
.text-panel h2,
.text-panel h3 {
    margin: 0 0 10px;
}
.info-card p,
.text-panel p {
    margin: 0 0 10px;
}
.info-card ul,
.text-panel ul,
.policy-list {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding-left: 18px;
}
.contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-list strong {
    color: var(--text-primary);
}
.steps-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}
.step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}
.step-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    color: #fff;
    background: var(--primary-color);
    font-weight: 900;
}
.text-panel {
    display: grid;
    gap: 14px;
    max-width: 980px;
}
.text-panel section {
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}
.text-panel section:first-child {
    padding-top: 0;
    border-top: 0;
}
.text-panel h2 {
    font-size: 22px;
}

/* Cart modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(4px);
}
.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(95%, 760px);
    max-height: 85vh;
    overflow-y: auto;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.24);
}
.cart-header,
.cart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-color);
}
.cart-footer { border-top: 1px solid var(--border-color); border-bottom: 0; }
.cart-header h3 { margin: 0; font-size: 20px; }
.close-cart { color: var(--text-secondary); font-size: 28px; line-height: 1; cursor: pointer; }
.cart-body { padding: 18px 22px; }
.show-cart { width: 100%; border-collapse: collapse; }
.show-cart th,
.show-cart td { padding: 10px 0; border-bottom: 1px solid var(--border-color); text-align: left; font-size: 14px; }
.show-cart img { width: 58px; height: 58px; object-fit: cover; border-radius: var(--radius-md); }
.cart-total { display: flex; justify-content: space-between; padding-top: 16px; font-size: 18px; font-weight: 900; }
.cart-footer button,
.cart-footer a {
    min-height: 42px;
    flex: 1;
    border: 0;
    border-radius: var(--radius-md);
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.clear-cart,
.close-btn { background: var(--bg-secondary); color: var(--text-primary); }
.order-btn { background: var(--primary-color); color: #fff; }

@media (max-width: 1180px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase,
    .showcase-main { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .container { width: min(var(--max-width), calc(100% - 32px)); }
    .section { padding: 42px 0; }
    .section-header { align-items: start; flex-direction: column; }
    .section-title,
    .section h2 { font-size: 24px; }
    .showcase-main,
    .showcase-copy { min-height: 390px; }
    .showcase-copy { padding: 28px; }
    .showcase-side { grid-template-columns: 1fr; }
    .side-offer { grid-template-columns: 150px minmax(0, 1fr); min-height: 170px; }
    .side-img { min-height: 170px; }
    .page-hero h1 { font-size: 30px; }
    .info-grid,
    .info-grid.two { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .trust-grid { grid-template-columns: 1fr; }
    .showcase-main,
    .showcase-copy { min-height: 460px; }
    .showcase-art::after {
        background:
            linear-gradient(180deg, rgba(13, 24, 16, 0.9) 0%, rgba(13, 24, 16, 0.76) 48%, rgba(13, 24, 16, 0.18) 100%);
    }
    .showcase-copy .btn-row { align-items: stretch; }
    .showcase-copy .btn { justify-content: center; width: 100%; }
    .side-offer { grid-template-columns: 1fr; }
    .side-offer > div:first-child { padding: 20px; }
    .side-img { min-height: 160px; }
    .cart-footer { flex-direction: column; }
    .cart-footer button,
    .cart-footer a { width: 100%; }
    .page-shell { padding: 34px 0 48px; }
    .info-card,
    .text-panel { padding: 18px; }
}
