:root {
    --font-sans: "Golos Text", sans-serif;
    --font-display: "Sora", "Golos Text", sans-serif;
    --font-accent: "Russo One", "Golos Text", sans-serif;
    --bg: #e7ddd0;
    --bg-soft: #f6efe6;
    --surface: rgba(254, 249, 241, 0.92);
    --surface-strong: #fffaf3;
    --surface-alt: #f1e8dc;
    --surface-dark: #171a1f;
    --ink: #1e2228;
    --muted: #726459;
    --line: #d5c6b5;
    --line-strong: #baa690;
    --accent: #b21f1c;
    --accent-strong: #8f1816;
    --accent-soft: rgba(178, 31, 28, 0.12);
    --accent-warm: #c8851d;
    --success: #11865a;
    --error: #c54646;
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-lg: 0 24px 50px rgba(41, 28, 16, 0.15);
    --shadow-md: 0 14px 30px rgba(41, 28, 16, 0.10);
}

* {
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-family: var(--font-sans);
    background:
        radial-gradient(circle at top left, rgba(178, 31, 28, 0.16), transparent 26%),
        radial-gradient(circle at top right, rgba(200, 133, 29, 0.12), transparent 24%),
        linear-gradient(180deg, #f5ede3 0%, #ece2d5 48%, #e5d9cb 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(135deg, rgba(178, 31, 28, 0.035) 0 2px, transparent 2px 36px),
        linear-gradient(rgba(30, 34, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 34, 40, 0.03) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.container.wrap,
.wrap {
    width: min(1580px, calc(100vw - clamp(28px, 4vw, 88px)));
    max-width: none;
    margin: 0 auto;
}

.page-frame {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    background: rgba(250, 244, 235, 0.92);
    border-bottom: 1px solid rgba(213, 198, 181, 0.92);
    box-shadow: 0 10px 24px rgba(33, 24, 17, 0.07);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 42%, transparent 78%);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.brand.brand-image {
    display: block;
    width: clamp(240px, 24vw, 420px);
    max-width: 100%;
    position: relative;
}

.brand-logo {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 28px rgba(255, 122, 27, 0.12));
}

.brand-mark {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 100%),
        linear-gradient(145deg, var(--accent) 0%, #d94b2a 100%);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 400;
    box-shadow: 0 16px 28px rgba(178, 31, 28, 0.26);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong {
    font-family: var(--font-accent);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.05;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.brand-copy span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.35;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
}

.site-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted);
    transition: 0.2s ease;
}

.site-nav a:hover {
    background: rgba(255, 250, 243, 0.94);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(213, 198, 181, 0.92);
}

.site-nav-cta {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 239, 230, 0.96) 100%);
    border: 1px solid rgba(178, 31, 28, 0.16);
    color: var(--ink) !important;
    box-shadow: 0 10px 24px rgba(33, 24, 17, 0.08);
}

.cart-badge,
.mobile-dock-badge {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 18px rgba(178, 31, 28, 0.24);
}

.cart-badge {
    margin-left: 10px;
}

.page-main {
    padding: 0 0 80px;
}

.section-block {
    padding-top: 28px;
}

.hero-panel {
    padding: 34px 0 8px;
}

.hero-shell,
.sync-layout,
.about-layout {
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
}

.hero-shell {
    align-items: stretch;
}

.hero-main,
.hero-side-card,
.hero-fact-card,
.scenario-card,
.sync-copy,
.sync-widget,
.about-main,
.about-side-card,
.news-card,
.storefront-shell,
.footer-grid {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(213, 198, 181, 0.96);
    background: rgba(255, 250, 243, 0.9);
    box-shadow: var(--shadow-md);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-main::before,
.hero-side-card::before,
.hero-fact-card::before,
.scenario-card::before,
.sync-copy::before,
.sync-widget::before,
.about-main::before,
.about-side-card::before,
.news-card::before,
.storefront-shell::before,
.catalog-sidebar-card::before,
.catalog-content-shell::before,
.secondary-side-card::before,
.secondary-content-shell::before,
.product-gallery::before,
.product-summary::before,
.product-section-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
}

.hero-main {
    padding: 40px;
    background:
        linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(246, 237, 227, 0.96) 100%);
}

.hero-label,
.section-label,
.stack-caption,
.sync-widget-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 10px;
    background: rgba(178, 31, 28, 0.1);
    color: var(--accent-strong);
    font-size: 12px;
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 4px 0 0 var(--accent);
}

.hero-main h1,
.section-heading h1,
.section-heading h2,
.sync-copy h2,
.about-main h2,
.news-card h3,
.storefront-shell > h1,
.storefront-shell .h1 {
    margin: 18px 0 0;
    font-family: var(--font-display);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero-main h1 {
    max-width: 760px;
    font-size: clamp(40px, 4.5vw, 72px);
    line-height: 1.01;
}

.hero-main p,
.scenario-card p,
.sync-copy p,
.about-main p,
.about-side-card span,
.section-heading p,
.news-card p,
.site-footer span {
    color: var(--muted);
    line-height: 1.7;
}

.hero-main p {
    max-width: 680px;
    margin: 18px 0 0;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.button,
.button2,
input.button,
input[type="submit"].button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 24px rgba(178, 31, 28, 0.24);
    cursor: pointer;
}

.button-secondary {
    background: var(--surface-strong);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none;
}

.button2.white {
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
}

.brand-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.hero-fact-card {
    min-height: 138px;
    padding: 18px;
    background: rgba(255, 250, 243, 0.84);
}

.hero-fact-card strong {
    display: block;
    margin: 0;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-fact-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.65;
}

.brand-pills span,
.news-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.hero-side,
.sync-visual,
.about-side,
.scenario-grid,
.category-grid,
.news-grid,
.footer-grid {
    margin-left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
    margin-right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
}

.hero-shell > [class*="col-"],
.sync-layout > [class*="col-"],
.about-layout > [class*="col-"],
.scenario-grid > [class*="col-"],
.category-grid > [class*="col-"],
.news-grid > [class*="col-"],
.footer-grid > [class*="col-"],
.hero-side > [class*="col-"],
.sync-visual > [class*="col-"],
.about-side > [class*="col-"] {
    display: flex;
}

.hero-side-card {
    padding: 22px;
}

.hero-side-card strong,
.scenario-card strong,
.category-card strong,
.about-side-card strong,
.site-footer strong {
    display: block;
    font-size: 17px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.hero-side-card span {
    color: var(--muted);
    line-height: 1.6;
}

.hero-side-card-accent {
    background: linear-gradient(160deg, #211d1d 0%, #342623 100%);
    border-color: transparent;
}

.hero-side-card-accent .stack-caption,
.hero-side-card-accent strong,
.hero-side-card-accent span {
    color: #fff;
}

.hero-side-card-accent .stack-caption {
    background: rgba(255, 255, 255, 0.12);
}

.hero-side-card-list strong {
    margin-bottom: 14px;
}

.hero-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-side-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.65;
}

.hero-side-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9556 100%);
}

.scenario-card {
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(244, 236, 227, 0.98) 100%);
}

.scenario-card strong {
    margin-top: 0;
}

.sync-layout {
    align-items: stretch;
}

.sync-copy,
.about-main {
    padding: 28px;
}

.sync-copy h2,
.about-main h2,
.section-heading h1,
.section-heading h2 {
    font-size: clamp(30px, 3.4vw, 44px);
}

.sync-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.sync-list li {
    position: relative;
    padding: 14px 16px 14px 48px;
    border-radius: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink);
    line-height: 1.55;
}

.sync-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 17px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    box-shadow: 0 0 0 5px rgba(178, 31, 28, 0.12);
}

.sync-widget {
    padding: 20px;
}

.sync-widget strong {
    display: block;
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.sync-widget p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.sync-widget-primary {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 246, 252, 0.96) 100%);
}

.sync-widget-status.sync-success {
    color: var(--success);
}

.sync-widget-status.sync-error {
    color: var(--error);
}

.sync-widget-status.sync-neutral {
    color: var(--ink);
}

.section-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-heading p {
    max-width: 460px;
    margin: 0;
}

.section-heading-tight {
    margin-bottom: 16px;
}

.home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
    grid-template-areas:
        "label lead"
        "title lead";
    gap: 18px 32px;
    margin-bottom: 24px;
    padding: 28px 30px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(244, 235, 226, 0.98) 100%);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.home-intro::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -36px;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(178, 31, 28, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.home-intro .section-label {
    grid-area: label;
    align-self: start;
}

.home-intro h1 {
    grid-area: title;
    margin: 0;
    max-width: none;
    font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 0.94;
    letter-spacing: -0.04em;
}

.home-intro p {
    grid-area: lead;
    max-width: none;
    margin: 0;
    padding-top: 8px;
    padding-left: 26px;
    border-left: 1px solid rgba(213, 198, 181, 0.92);
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.home-grid-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 18px;
}

.home-grid-heading h2 {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.home-grid-heading p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.category-card {
    position: relative;
    min-height: 212px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(242, 233, 223, 0.98) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transition: 0.2s ease;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card span {
    color: var(--muted);
    line-height: 1.65;
}

.category-card em {
    margin-top: auto;
    color: var(--accent-strong);
    font-style: normal;
    font-weight: 700;
}

.about-side-card {
    padding: 22px;
}

.about-side-card strong {
    margin-top: 0;
}

.news-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(244, 236, 228, 0.98) 100%);
}

.news-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-card h3 {
    margin-top: 18px;
    font-size: 24px;
}

.news-card p {
    margin: 16px 0 0;
}

.news-card a {
    margin-top: auto;
    padding-top: 18px;
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.news-actions {
    margin-top: 22px;
    display: flex;
    justify-content: flex-start;
}

.news-empty-state,
.news-article-card {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(18, 38, 58, 0.08);
}

.news-empty-state strong,
.news-article-card strong {
    display: block;
    font-size: 24px;
}

.news-article-card h1 {
    margin: 16px 0 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.news-empty-state p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.news-card-large {
    min-height: 320px;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 700;
}

.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.news-article-lead {
    margin-bottom: 22px;
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(178, 31, 28, 0.08) 0%, rgba(248, 240, 231, 0.98) 100%);
    color: var(--ink);
    font-size: 18px;
    line-height: 1.75;
}

.news-article-body {
    color: var(--ink);
    line-height: 1.78;
}

.news-article-body > *:first-child {
    margin-top: 0;
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol,
.news-article-body blockquote {
    margin: 0 0 18px;
}

.news-article-body h2,
.news-article-body h3 {
    margin: 30px 0 14px;
    font-family: var(--font-display);
    line-height: 1.15;
}

.news-article-body ul,
.news-article-body ol {
    padding-left: 22px;
}

.storefront-shell {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(244, 236, 228, 0.98) 100%);
    box-shadow: 0 22px 40px rgba(41, 28, 16, 0.10);
}

.page-home .storefront-shell > h1,
.page-home .storefront-shell > h1 + div,
.page-home .group_list {
    display: none;
}

.page-item .hero-main h1,
.page-group .hero-main h1,
.page-cart .hero-main h1 {
    font-size: clamp(28px, 3.2vw, 46px);
}

.storefront-shell > h1,
.storefront-shell .h1 {
    font-size: clamp(28px, 3vw, 42px);
}

.storefront-shell .h2 {
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: -0.02em;
}

.group_list ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.group_list li {
    margin: 0;
}

.group_list a {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    text-decoration: none;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.shop_count {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 700;
}

.shop_block {
    margin-top: 8px;
}

.shop_table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 26px;
}

.shop_item {
    display: block;
}

.shop_table_item {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 20px 36px rgba(41, 28, 16, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop_table_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 44px rgba(18, 38, 58, 0.12);
}

.image_row {
    min-height: 360px;
    padding: 34px 30px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, rgba(178, 31, 28, 0.1), transparent 36%),
        linear-gradient(180deg, #fffbf5 0%, #efe5d8 100%);
}

.image_cell img {
    max-height: 300px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.description_row {
    display: flex;
    flex: 1 1 auto;
}

.description_sell {
    width: 100%;
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.description_sell > p {
    margin: 0;
}

.description_sell > a:first-of-type,
.shop_item .description_sell h2 a,
.description_sell p a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 23px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price {
    font-family: var(--font-accent);
    font-size: 42px;
    line-height: 1.1;
    color: var(--ink);
}

.price .compare,
.price .favorite {
    display: none;
}

.price > div[style] {
    margin: 20px 0 0 !important;
}

.price a.button2,
.price a.button2.white,
.price a.button2.white.medium {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(178, 31, 28, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price a.button2:hover,
.price a.button2.white:hover,
.price a.button2.white.medium:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 36px rgba(178, 31, 28, 0.28);
}

.oldPrice {
    margin-left: 10px;
    color: var(--muted);
    font-size: 18px;
    text-decoration: line-through;
}

.page_link,
.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    margin: 4px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    text-decoration: none;
}

.current {
    border-color: transparent;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-weight: 700;
}

.shop_property,
.tags,
.comment,
.comment_sub,
.comment_reply,
.shop_discount {
    margin-top: 14px;
    padding: 16px;
    border-radius: 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
}

.page-item .storefront-shell > p:nth-of-type(1) {
    margin: 10px 0 20px;
    color: var(--muted);
    line-height: 1.7;
}

.page-item .storefront-shell > div:nth-of-type(1),
.page-group .storefront-shell > div:nth-of-type(1),
.page-cart .storefront-shell form {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(244, 236, 228, 0.98) 100%);
    border: 1px solid var(--line);
}

.page-item #gallery {
    display: grid;
    gap: 10px;
    max-width: 420px;
    margin-bottom: 16px;
}

.page-item #gallery a {
    display: block;
    padding: 18px;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.page-item .price img {
    display: none;
}

.page-item .price a {
    margin-left: 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.page-item .storefront-shell {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.product-detail {
    display: grid;
    gap: 26px;
}

.product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.product-breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: var(--ink);
}

.product-top {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr) minmax(280px, 0.62fr);
    gap: 22px;
    align-items: start;
}

.product-gallery,
.product-summary,
.product-buy-card,
.product-section-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 245, 0.96);
    box-shadow: 0 18px 34px rgba(41, 28, 16, 0.08);
}

.product-gallery {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    min-height: 540px;
}

.product-thumbs {
    display: grid;
    align-content: start;
    gap: 10px;
}

.product-thumb {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fffdf8 0%, #f0e6d9 100%);
    cursor: pointer;
    transition: 0.2s ease;
}

.product-thumb.is-active,
.product-thumb:hover {
    border-color: rgba(178, 31, 28, 0.34);
    box-shadow: 0 0 0 3px rgba(178, 31, 28, 0.1);
}

.product-thumb img {
    max-height: 100%;
    object-fit: contain;
}

.product-stage {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background:
        radial-gradient(circle at top right, rgba(178, 31, 28, 0.1), transparent 26%),
        radial-gradient(circle at bottom left, rgba(200, 133, 29, 0.12), transparent 28%),
        linear-gradient(180deg, #fffbf6 0%, #efe5d7 100%);
}

.product-stage img {
    max-width: 100%;
    max-height: 460px;
    object-fit: contain;
}

.product-summary {
    padding: 24px;
}

.product-summary h1 {
    margin: 14px 0 0;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.35vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    word-break: break-word;
}

.product-meta-row,
.product-rating-row,
.product-about-header,
.product-buy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-meta-badge,
.product-meta-note,
.product-rating-row span,
.product-buy-info span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 13px;
}

.product-meta-badge {
    background: rgba(178, 31, 28, 0.1);
    color: var(--accent-strong);
    font-family: var(--font-accent);
    font-weight: 400;
}

.product-meta-note,
.product-rating-row span {
    background: var(--bg-soft);
    color: var(--muted);
}

.product-stars {
    color: #ff9f0a !important;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.product-rating-row {
    margin-top: 14px;
}

.product-summary-lead {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.product-overview-row {
    display: grid;
}

.product-about-card {
    padding: 20px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffdf8 0%, #f3e9dc 100%);
    border: 1px solid var(--line);
}

.product-about-header strong,
.product-section-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.product-about-header a {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
}

.product-spec-preview,
.product-buy-info,
.product-sections {
    display: grid;
    gap: 12px;
}

.product-spec-preview {
    margin-top: 16px;
}

.product-spec-line,
.product-spec-row {
    display: grid;
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.product-spec-line:first-child,
.product-spec-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.product-spec-line span,
.product-spec-row span {
    color: var(--muted);
}

.product-spec-line strong,
.product-spec-row strong {
    color: var(--ink);
    font-weight: 700;
}

.product-buy-card {
    position: sticky;
    top: 104px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(29, 31, 37, 0.98) 0%, rgba(22, 24, 29, 0.98) 100%);
    border-color: rgba(178, 31, 28, 0.16);
}

.product-price {
    font-family: var(--font-accent);
    font-size: clamp(36px, 3vw, 50px);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff7ee;
}

.product-stock {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
}

.product-stock.in-stock {
    background: rgba(17, 134, 90, 0.1);
    color: var(--success);
}

.product-stock.out-stock {
    background: rgba(197, 70, 70, 0.1);
    color: var(--error);
}

.product-buy-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 247, 238, 0.74);
    line-height: 1.6;
}

.product-buy-button,
.product-buy-secondary {
    width: 100%;
    min-height: 58px;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.product-buy-button {
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
    box-shadow: 0 18px 28px rgba(178, 31, 28, 0.22);
}

.product-buy-secondary {
    background: rgba(255, 248, 238, 0.94);
    color: var(--ink);
}

.product-buy-info {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.product-buy-info div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.product-buy-info span {
    padding: 0;
    min-height: auto;
    background: none;
    color: rgba(255, 247, 238, 0.66);
}

.product-buy-info strong {
    color: #fff7ee;
    text-align: right;
}

.product-sections {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.product-section-card {
    padding: 24px 26px;
}

.product-section-card h2 {
    margin: 0 0 18px;
}

.product-section-card p {
    margin: 0 0 14px;
    color: var(--ink);
    line-height: 1.72;
}

.product-description-html {
    color: var(--ink);
    line-height: 1.76;
}

.product-description-html > *:first-child {
    margin-top: 0;
}

.product-description-html p,
.product-description-html ul,
.product-description-html ol,
.product-description-html blockquote {
    margin: 0 0 16px;
}

.product-description-html h2,
.product-description-html h3 {
    margin: 26px 0 14px;
    font-family: var(--font-display);
    line-height: 1.18;
}

.product-description-html ul,
.product-description-html ol {
    padding-left: 22px;
}

.product-description-html img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin: 14px 0;
}

.product-spec-table {
    display: grid;
}

.shop_img,
#gallery {
    display: grid;
    gap: 10px;
}

.shop_list {
    padding-left: 18px;
}

.shop_cart {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface-strong);
}

.shop_cart td,
.shop_cart th {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.shop_cart .total td,
.shop_cart .total th {
    color: var(--accent-strong);
    font-weight: 700;
}

.coupon-bonus,
.delivery-time,
.transparent {
    margin: 18px 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--ink);
}

textarea {
    min-height: 120px;
}

.row {
    margin-bottom: 12px;
}

.caption {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer {
    padding: 0 0 88px;
}

.footer-grid {
    padding: 24px;
    background: linear-gradient(180deg, rgba(29, 31, 37, 0.98) 0%, rgba(20, 21, 25, 0.98) 100%);
    border-color: rgba(178, 31, 28, 0.18);
    box-shadow: var(--shadow-lg);
}

.footer-grid strong {
    color: #fff;
}

.footer-grid span {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
    color: #fff;
}

.footer-license-note {
    display: flex;
    justify-content: flex-end;
    padding: 10px 4px 0;
    font-size: 12px;
    opacity: .72;
}

.footer-license-note a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-license-note a:hover {
    color: #fff;
}

.mobile-dock {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 45;
    display: none;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(213, 198, 181, 0.95);
    background: rgba(255, 250, 243, 0.94);
    box-shadow: 0 18px 34px rgba(41, 28, 16, 0.16);
}

.mobile-dock-item {
    position: relative;
    min-width: 72px;
    min-height: 58px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 10px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.mobile-dock-item i {
    font-size: 15px;
}

.mobile-dock-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 11px;
}

.catalog-layout,
.secondary-layout {
    align-items: flex-start;
}

.catalog-sidebar-card,
.secondary-side-card,
.catalog-content-shell,
.secondary-content-shell {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98) 0%, rgba(244, 236, 228, 0.98) 100%);
    border: 1px solid rgba(213, 198, 181, 0.92);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.catalog-sidebar-card,
.secondary-side-card {
    padding: 24px;
}

.catalog-sidebar-card + .catalog-sidebar-card,
.secondary-side-card + .secondary-side-card {
    margin-top: 18px;
}

.catalog-content-shell,
.secondary-content-shell {
    padding: 28px;
}

.catalog-sidebar-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(178, 31, 28, 0.1);
    color: var(--accent-strong);
    font-size: 12px;
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: inset 4px 0 0 var(--accent);
}

.catalog-sidebar-title {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

.catalog-sidebar-card p,
.secondary-side-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.catalog-sidebar-links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.catalog-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(213, 198, 181, 0.92);
    background: rgba(255, 252, 246, 0.92);
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.catalog-sidebar-link:hover,
.catalog-sidebar-link:focus {
    color: var(--ink);
    border-color: rgba(178, 31, 28, 0.22);
    box-shadow: 0 14px 24px rgba(41, 28, 16, 0.08);
    transform: translateY(-1px);
}

.catalog-sidebar-link.is-active {
    border-color: rgba(178, 31, 28, 0.26);
    background: linear-gradient(135deg, rgba(178, 31, 28, 0.12) 0%, rgba(200, 133, 29, 0.12) 100%);
    color: var(--accent-strong);
}

.catalog-sidebar-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-sidebar-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(213, 198, 181, 0.9);
    background: rgba(255, 252, 246, 0.92);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.catalog-sidebar-pill.is-active,
.catalog-sidebar-pill:hover,
.catalog-sidebar-pill:focus {
    color: var(--accent-strong);
    border-color: rgba(178, 31, 28, 0.3);
    background: rgba(178, 31, 28, 0.08);
}

.catalog-content-shell .group_list {
    margin-bottom: 24px;
}

.catalog-content-shell .group_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-content-shell .group_list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: rgba(178, 31, 28, 0.08);
}

.catalog-content-shell .group_list a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.catalog-content-shell h1,
.secondary-content-shell h1 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.04em;
    font-family: var(--font-display);
}

.catalog-content-shell > div:first-of-type {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.catalog-content-shell > h1 + div {
    display: none;
}

.catalog-content-shell > p:first-of-type {
    display: none;
}

.catalog-content-shell form {
    margin-top: 18px;
}

.catalog-content-shell .shop_block {
    margin-top: 12px;
}

.secondary-content-shell > :last-child {
    margin-bottom: 0;
}

@media (max-width: 1140px) {
    .hero-shell,
    .sync-layout,
    .about-layout,
    .category-grid,
    .news-grid,
    .footer-grid,
    .scenario-grid,
    .hero-facts,
    .product-top,
    .product-sections {
        grid-template-columns: 1fr 1fr;
    }

    .hero-shell {
        grid-template-columns: 1fr;
    }

    .catalog-layout,
    .secondary-layout {
        row-gap: 20px;
    }

    .product-top {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    }

    .product-gallery {
        grid-column: 1 / -1;
    }

    .product-buy-card {
        position: static;
        grid-column: 1 / -1;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-grid-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-intro {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "title"
            "lead";
    }

    .home-intro p {
        padding-left: 0;
        padding-top: 0;
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .header-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-copy strong {
        white-space: normal;
    }

    .hero-main,
    .sync-copy,
    .about-main,
    .storefront-shell,
    .catalog-sidebar-card,
    .secondary-side-card,
    .catalog-content-shell,
    .secondary-content-shell {
        padding: 22px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .scenario-grid,
    .sync-layout,
    .about-layout,
    .category-grid,
    .news-grid,
    .footer-grid,
    .hero-facts,
    .shop_table,
    .product-top,
    .product-sections {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        min-height: 0;
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .product-stage {
        min-height: 360px;
    }

    .product-stage img {
        max-height: 320px;
    }

    .hero-main h1,
    .home-intro h1 {
        font-size: 34px;
    }

    .hero-main p,
    .home-intro p {
        font-size: 17px;
    }

    .home-intro {
        padding: 22px;
    }

    .catalog-sidebar-title {
        font-size: 21px;
    }

    .catalog-content-shell h1,
    .secondary-content-shell h1 {
        font-size: 34px;
        line-height: 1.04;
    }

    .catalog-content-shell .group_list ul {
        gap: 10px;
    }

    .catalog-content-shell .group_list li {
        width: 100%;
        justify-content: space-between;
    }

    .product-gallery {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-thumbs {
        grid-template-columns: repeat(auto-fit, minmax(72px, 72px));
    }

    .product-stage {
        min-height: 360px;
    }

    .product-stage img {
        max-height: 320px;
    }

    .product-summary,
    .product-buy-card,
    .product-section-card {
        padding: 22px;
    }

    .product-summary h1 {
        font-size: 30px;
    }

    .image_row {
        min-height: 250px;
        padding: 22px 20px 14px;
    }

    .image_cell img {
        max-height: 210px;
    }

    .description_sell {
        padding: 20px 20px 24px;
        gap: 14px;
    }

    .description_sell > a:first-of-type,
    .shop_item .description_sell h2 a,
    .description_sell p a {
        font-size: 19px;
        -webkit-line-clamp: 4;
    }

    .price {
        font-size: 32px;
    }

    .price a.button2,
    .price a.button2.white,
    .price a.button2.white.medium {
        min-height: 54px;
        padding: 0 22px;
        font-size: 21px;
    }

    .product-spec-line,
    .product-spec-row {
        grid-template-columns: 1fr;
    }

    .product-buy-info div {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-buy-info strong {
        text-align: left;
    }

    .mobile-dock {
        display: flex;
    }

    .site-footer {
        padding-bottom: 104px;
    }

    .footer-license-note {
        justify-content: flex-start;
        padding-top: 14px;
    }
}

.site-nav a.is-active,
.site-nav a.site-nav-cta.is-active {
    background: rgba(178, 31, 28, 0.08);
    color: var(--accent-strong) !important;
    box-shadow: inset 0 0 0 1px rgba(178, 31, 28, 0.16);
}

.mobile-dock-item.is-active {
    color: var(--ink);
}

.mobile-dock-item.is-active i {
    color: var(--accent);
}

.section-note {
    margin: -4px 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.section-note a {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
}

.category-card small {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: rgba(178, 31, 28, 0.1);
    color: var(--accent-strong);
    font-size: 12px;
    font-family: var(--font-accent);
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: inset 4px 0 0 var(--accent);
}

.card-thumb-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 14px 0 18px;
}

.card-thumb {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(214, 225, 236, 0.9);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.card-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shop_navigation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.shop_navigation li {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(214, 225, 236, 0.9);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 251, 0.98) 100%);
    color: var(--muted);
    text-align: center;
    font-weight: 700;
    line-height: 1.35;
}

.shop_navigation_current {
    color: var(--ink) !important;
    border-color: rgba(178, 31, 28, 0.2) !important;
    box-shadow: 0 14px 30px rgba(178, 31, 28, 0.12);
}

.shop_navigation li span {
    display: block;
}

.shop_address {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.shop_address > .row {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin: 0;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(248, 251, 255, 0.88);
    border: 1px solid rgba(214, 225, 236, 0.9);
}

.shop_address .caption {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.45;
}

.shop_address .field {
    min-width: 0;
}

.shop_address input[type="text"],
.shop_address input[type="email"],
.shop_address input[type="tel"],
.shop_address input[type="number"],
.shop_address input[type="search"],
.shop_address select,
.shop_address textarea,
.secondary-content-shell .shop_coupon input[type="text"],
.secondary-content-shell .delivery-time input[type="text"],
.shop_cart input[type="text"],
.shop_cart select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(200, 215, 229, 0.95);
    background: #fff;
    color: var(--ink);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.shop_address textarea {
    min-height: 124px;
    padding: 14px 16px;
    resize: vertical;
}

.shop_address input:focus,
.shop_address select:focus,
.shop_address textarea:focus,
.secondary-content-shell .shop_coupon input[type="text"]:focus,
.secondary-content-shell .delivery-time input[type="text"]:focus,
.shop_cart input[type="text"]:focus,
.shop_cart select:focus {
    outline: none;
    border-color: rgba(178, 31, 28, 0.72);
    box-shadow: 0 0 0 4px rgba(178, 31, 28, 0.12);
}

.checkout-card,
.checkout-choice-table,
.checkout-note-card {
    border-radius: 24px;
    border: 1px solid rgba(214, 225, 236, 0.95);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 253, 0.98) 100%);
    box-shadow: 0 18px 36px rgba(18, 38, 58, 0.08);
}

.checkout-card {
    padding: 24px;
}

.checkout-note-card {
    padding: 18px 20px;
    margin-bottom: 18px;
    color: var(--muted);
}

.checkout-note-card p {
    margin: 0;
}

.checkout-note-card p + p {
    margin-top: 10px;
}

.checkout-submit-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.shop_address > .row.checkout-submit-row {
    grid-template-columns: 1fr;
    padding: 0;
    background: transparent;
    border: 0;
}

.shop_address > .row.checkout-submit-row .caption {
    display: none;
}

.shop_address > .row.checkout-submit-row .field {
    display: flex;
    justify-content: flex-end;
}

.checkout-choice-table {
    overflow: hidden;
}

.checkout-choice-table .shop_cart {
    margin: 0;
}

.checkout-helper {
    margin: 0 0 18px;
    color: var(--muted);
}

.checkout-field-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.form-error {
    margin-top: 10px;
    color: var(--error);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.shop_address > .row > .form-error {
    grid-column: 2 / -1;
    margin-top: -8px;
    padding-left: 4px;
}

.is-invalid {
    border-color: rgba(197, 70, 70, 0.9) !important;
    box-shadow: 0 0 0 3px rgba(197, 70, 70, 0.12) !important;
    background: #fff !important;
    color: var(--ink) !important;
}

.shop_address .required {
    color: var(--accent-strong);
}

.secondary-content-shell form .row + .row {
    margin-top: 14px;
}

.secondary-content-shell .button,
.secondary-content-shell input[type="submit"],
.secondary-content-shell input[type="button"] {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #d24a2d 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(178, 31, 28, 0.2);
}

.secondary-content-shell input[name="recount"] {
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(213, 198, 181, 0.9);
    box-shadow: none;
}

.secondary-content-shell .coupon-bonus,
.secondary-content-shell .delivery-time,
.secondary-content-shell .shop_coupon {
    display: grid;
    gap: 12px;
}

.secondary-content-shell .comment {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .shop_navigation {
        grid-template-columns: 1fr 1fr;
    }

    .shop_address > .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop_navigation {
        grid-template-columns: 1fr;
    }

    .shop_cart,
    .shop_cart tbody,
    .shop_cart tr,
    .shop_cart td,
    .shop_cart th {
        display: block;
        width: 100%;
    }

    .shop_cart thead,
    .shop_cart th {
        display: none;
    }

    .shop_cart tr {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 20px;
        border: 1px solid rgba(214, 225, 236, 0.9);
        background: #fff;
    }

    .shop_cart td {
        padding: 8px 0;
        border: 0;
    }

    .shop_cart .total {
        background: rgba(178, 31, 28, 0.05);
    }
}

:root {
    --bg: #eef2f6;
    --bg-soft: #f7f9fc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --surface-alt: #f1f4f8;
    --surface-dark: #12161c;
    --ink: #1a2029;
    --muted: #677281;
    --line: #dbe2ea;
    --line-strong: #b9c4d0;
    --accent: #ff7a1b;
    --accent-strong: #dd6200;
    --accent-soft: rgba(255, 122, 27, 0.12);
    --accent-warm: #ffb347;
    --shadow-lg: 0 26px 54px rgba(21, 28, 37, 0.14);
    --shadow-md: 0 16px 34px rgba(21, 28, 37, 0.1);
}

html,
body {
    background:
        radial-gradient(circle at top left, rgba(255, 122, 27, 0.12), transparent 22%),
        linear-gradient(180deg, #f4f6f9 0%, #eef2f6 100%);
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.52) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.52) 1px, transparent 1px);
    background-size: 44px 44px, 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 78%);
}

.site-header {
    background: linear-gradient(180deg, rgba(21, 24, 31, 0.98) 0%, rgba(15, 18, 24, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(12, 15, 19, 0.28);
}

.site-header::after {
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 122, 27, 0.16) 62%, transparent 100%);
}

.brand-copy strong,
.brand-copy span,
.site-nav a,
.site-search-pill {
    color: #ffffff;
}

.brand-copy span {
    color: rgba(255, 255, 255, 0.64);
}

.site-nav {
    gap: 4px;
}

.site-nav a {
    min-height: 42px;
    border-radius: 10px;
    padding: 0 14px;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.site-nav a.is-active,
.site-nav a.site-nav-cta.is-active {
    background: rgba(255, 122, 27, 0.12);
    color: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(255, 122, 27, 0.24);
}

.site-search-pill {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    margin-left: 10px;
    border-radius: 12px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.site-search-pill i {
    color: var(--accent);
}

.site-nav-cta {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--ink) !important;
    margin-left: 8px;
}

.cart-badge,
.mobile-dock-badge {
    background: linear-gradient(135deg, var(--accent) 0%, #ff9a3d 100%);
}

.home-hero {
    padding-top: 18px;
}

.home-hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(18, 22, 28, 0.98) 0%, rgba(12, 15, 21, 0.98) 100%);
    box-shadow: 0 34px 60px rgba(16, 21, 29, 0.26);
}

.home-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.16), transparent 26%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 74px 74px, 74px 74px;
    opacity: 0.86;
    pointer-events: none;
}

.home-hero-webgl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    opacity: 0.82;
    pointer-events: none;
}

.home-hero-copy,
.home-hero-visual {
    position: relative;
    z-index: 1;
}

.home-hero-copy {
    padding: 54px 48px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.home-hero-copy .section-label {
    align-self: flex-start;
    background: rgba(255, 122, 27, 0.16);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--accent);
}

.home-hero-copy h1 {
    margin: 18px 0 0;
    max-width: 520px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(46px, 5vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.home-hero-copy p {
    max-width: 470px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 28px;
}

.home-hero .button {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 14px;
    box-shadow: 0 18px 28px rgba(255, 122, 27, 0.28);
}

.home-hero .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.home-hero-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-hero-inline-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-hero-inline-item i {
    color: var(--accent);
}

.home-hero-visual {
    min-height: 100%;
    padding: 34px 34px 24px 0;
}

.home-hero-circuit {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px),
        radial-gradient(circle at 32% 44%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
        linear-gradient(rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
    background-size: auto, auto, 120px 120px, 120px 120px;
    opacity: 0.28;
    pointer-events: none;
}

.home-hero-media {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(37, 42, 50, 0.96) 0%, rgba(20, 24, 30, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 40px rgba(9, 12, 17, 0.3);
}

.home-hero-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.34));
}

.home-hero-media-main {
    right: 34px;
    bottom: 22px;
    width: 72%;
    height: 82%;
    padding: 26px;
}

.home-hero-media-float {
    width: 132px;
    height: 132px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(235, 240, 246, 0.98) 100%);
}

.home-hero-media-float.float-1 {
    left: 26px;
    bottom: 42px;
}

.home-hero-media-float.float-2 {
    left: 126px;
    top: 44px;
}

.home-strip {
    margin-top: 14px;
}

.home-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 35, 44, 0.98) 0%, rgba(20, 24, 31, 0.98) 100%);
    box-shadow: 0 20px 34px rgba(17, 22, 30, 0.18);
}

.home-strip-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    color: #fff;
}

.home-strip-item + .home-strip-item {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-strip-item i {
    color: var(--accent);
    font-size: 22px;
}

.home-strip-item strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
}

.home-strip-item span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.5;
}

.marketplace-heading {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line-strong);
}

.home-products-grid,
.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.home-product-media {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 246, 250, 0.98) 100%);
}

.home-product-media.is-cover {
    padding: 0;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        var(--card-image);
    background-size: auto, cover;
    background-position: center center, center center;
    background-repeat: no-repeat;
}

.home-product-media img {
    max-height: 220px;
    object-fit: contain;
}

.home-product-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 18px;
    padding: 20px 20px 22px;
}

.home-product-body h3 {
    margin: 0;
}

.home-product-body h3 a {
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.28;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.home-product-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.home-product-price {
    font-family: var(--font-accent);
    font-size: 34px;
    line-height: 1;
    color: var(--ink);
}

.home-product-card .button2 {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
}

.home-category-tile {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(28, 33, 40, 0.98) 0%, rgba(17, 20, 26, 1) 100%);
    box-shadow: var(--shadow-md);
}

.home-category-media {
    aspect-ratio: 1.25 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 245, 249, 0.98) 100%);
}

.home-category-media.is-cover {
    padding: 0;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
        var(--card-image);
    background-size: auto, cover;
    background-position: center center, center center;
    background-repeat: no-repeat;
}

.home-category-media img {
    max-height: 200px;
    object-fit: contain;
}

.home-category-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    color: #fff;
}

.home-category-bar strong {
    font-size: 22px;
    line-height: 1.15;
}

.home-category-bar span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.home-reasons-panel,
.home-news-cta {
    flex: 1 1 auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.home-reasons-panel {
    padding: 28px;
    border: 1px solid var(--line);
    background: #fff;
}

.home-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-reason-card {
    padding: 22px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 251, 0.98) 100%);
    text-align: center;
}

.home-reason-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 251, 0.98) 100%);
    box-shadow: inset 0 0 0 7px rgba(255, 122, 27, 0.14);
}

.home-reason-icon i {
    color: var(--accent);
    font-size: 28px;
}

.home-reason-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.home-reason-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-news-cta {
    padding: 28px;
    background: linear-gradient(180deg, rgba(30, 34, 42, 0.98) 0%, rgba(17, 20, 26, 1) 100%);
    color: #fff;
}

.home-news-cta .section-label {
    align-self: flex-start;
    background: rgba(255, 122, 27, 0.16);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--accent);
}

.home-news-cta strong {
    display: block;
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: clamp(28px, 2.8vw, 38px);
    line-height: 1.05;
}

.home-news-cta p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.home-news-highlight {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.home-news-highlight small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-news-highlight span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.home-news-cta .button {
    margin-top: 22px;
    align-self: flex-start;
}

.home-news-grid .news-card {
    min-height: 100%;
}

@media (max-width: 1320px) {
    .home-products-grid,
    .home-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-reasons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1140px) {
    .header-wrap {
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .site-search-pill {
        margin-left: 0;
    }

    .home-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-hero-visual {
        min-height: 360px;
        padding: 0 24px 24px;
    }

    .home-hero-media-main {
        left: 24px;
        right: 24px;
        width: auto;
        height: 280px;
    }

    .home-hero-media-float.float-1 {
        left: 24px;
        bottom: 24px;
    }

    .home-hero-media-float.float-2 {
        left: auto;
        right: 24px;
        top: 24px;
    }

    .home-strip-grid {
        grid-template-columns: 1fr;
    }

    .home-strip-item + .home-strip-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 760px) {
    .site-nav {
        gap: 8px;
    }

    .site-nav a,
    .site-search-pill {
        min-height: 40px;
    }

    .home-hero-copy {
        padding: 30px 22px 24px;
    }

    .home-hero-copy h1 {
        font-size: 40px;
    }

    .home-hero-copy p {
        font-size: 17px;
    }

    .home-hero-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero-visual {
        min-height: 280px;
        padding: 0 18px 18px;
    }

    .home-hero-media-main {
        height: 210px;
        left: 18px;
        right: 18px;
        padding: 18px;
    }

    .home-hero-media-float {
        width: 88px;
        height: 88px;
        padding: 10px;
        border-radius: 16px;
    }

    .home-hero-media-float.float-1 {
        left: 18px;
        bottom: 18px;
    }

    .home-hero-media-float.float-2 {
        right: 18px;
        top: 18px;
    }

    .home-products-grid,
    .home-categories-grid {
        grid-template-columns: 1fr;
    }

    .home-product-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .home-product-card .button2 {
        width: 100%;
    }
}

/* Refined dark/orange storefront system */
.site-header {
    padding: 14px 0;
    background:
        linear-gradient(180deg, rgba(24, 28, 35, 0.98) 0%, rgba(16, 19, 25, 0.98) 100%),
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.08), transparent 30%);
    box-shadow: 0 14px 28px rgba(8, 10, 15, 0.18);
}

.site-header::before {
    background:
        linear-gradient(90deg, rgba(255, 122, 27, 0.95) 0%, rgba(255, 122, 27, 0.35) 18%, rgba(255, 122, 27, 0.08) 32%, transparent 48%);
}

.header-wrap {
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    box-shadow: 0 14px 24px rgba(255, 122, 27, 0.18);
}

.brand-copy strong {
    font-size: 17px;
    line-height: 1;
}

.brand-copy span {
    font-size: 12px;
    line-height: 1.35;
    max-width: 280px;
}

.site-nav {
    gap: 10px;
    align-items: center;
}

.site-nav a,
.site-search-pill {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.site-search-pill {
    min-width: 188px;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.site-nav-cta {
    margin-left: 4px;
    background: #fff !important;
    color: #19212c !important;
}

.page-main {
    padding-top: 34px;
}

.home-hero {
    margin-top: -8px;
}

.home-hero-shell {
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    min-height: 560px;
    border-radius: 26px;
}

.home-hero-copy {
    padding: 42px 42px 40px;
}

.home-hero-copy h1 {
    max-width: 9ch;
}

.home-hero-copy p {
    max-width: 28rem;
}

.home-hero-visual {
    min-height: 560px;
}

.home-hero-media-main {
    left: 148px;
    right: 28px;
    bottom: 28px;
    height: 430px;
    border-radius: 24px;
}

.home-hero-media-float.float-1 {
    left: 34px;
    bottom: 42px;
}

.home-hero-media-float.float-2 {
    left: 208px;
    top: 32px;
}

.marketplace-heading {
    align-items: end;
}

.catalog-layout {
    align-items: start;
}

.catalog-sidebar-card {
    background: linear-gradient(180deg, rgba(25, 29, 36, 0.98) 0%, rgba(16, 19, 25, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 36px rgba(10, 13, 18, 0.16);
}

.catalog-sidebar-card::before {
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 122, 27, 0.12) 100%);
}

.catalog-sidebar-label {
    background: rgba(255, 122, 27, 0.12);
    color: #fff;
}

.catalog-sidebar-title,
.catalog-sidebar-card p {
    color: #fff;
}

.catalog-sidebar-card p {
    color: rgba(255, 255, 255, 0.68);
}

.catalog-sidebar-link,
.catalog-sidebar-pill {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.catalog-sidebar-link:hover,
.catalog-sidebar-pill:hover {
    background: rgba(255, 122, 27, 0.14);
    color: #fff;
}

.catalog-sidebar-link.is-active,
.catalog-sidebar-pill.is-active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    border-color: transparent;
}

.catalog-intro-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.54fr);
    gap: 24px;
    margin-bottom: 22px;
    padding: 30px 32px;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(25, 29, 36, 0.98) 0%, rgba(16, 19, 25, 0.98) 100%);
    box-shadow: 0 24px 40px rgba(10, 13, 18, 0.16);
}

.catalog-intro-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
    pointer-events: none;
}

.catalog-intro-copy,
.catalog-intro-side {
    position: relative;
    z-index: 1;
}

.catalog-intro-copy .section-label {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--accent);
}

.catalog-intro-copy h1 {
    margin: 18px 0 0;
    max-width: 12ch;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.catalog-intro-copy p {
    max-width: 40rem;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

.catalog-intro-side {
    display: grid;
    gap: 16px;
    align-content: start;
}

.catalog-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.catalog-intro-stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-intro-stat strong {
    display: block;
    color: #fff;
    font-family: var(--font-accent);
    font-size: 38px;
    line-height: 1;
}

.catalog-intro-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.5;
}

.catalog-intro-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-intro-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.14);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.catalog-intro-link:hover {
    background: rgba(255, 122, 27, 0.24);
    color: #fff;
}

.catalog-content-shell {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 253, 0.98) 100%);
}

.catalog-content-shell h1,
.catalog-content-shell > div:first-of-type {
    display: none;
}

.catalog-content-shell .group_list {
    margin-bottom: 22px;
}

.catalog-content-shell .group_list li {
    min-height: 44px;
    padding: 0 16px;
    background: rgba(255, 122, 27, 0.09);
}

.shop_table {
    grid-template-columns: repeat(auto-fit, minmax(282px, 1fr));
    gap: 24px;
}

.shop_table_item {
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 249, 252, 0.98) 100%);
}

.image_row {
    min-height: 318px;
    padding: 24px 24px 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
}

.image_cell img {
    max-height: 248px;
}

.description_sell {
    padding: 22px 22px 24px;
    gap: 14px;
}

.description_sell > a:first-of-type,
.shop_item .description_sell h2 a,
.description_sell p a {
    font-size: 20px;
    line-height: 1.35;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 36px;
}

.price > div[style] {
    margin: 0 !important;
}

.price a.button2,
.price a.button2.white,
.price a.button2.white.medium {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(255, 122, 27, 0.2);
    font-size: 20px;
}

.product-top {
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.12fr) minmax(280px, 0.64fr);
    gap: 24px;
}

.product-gallery,
.product-summary,
.product-buy-card,
.product-section-card {
    border-radius: 22px;
}

.product-gallery {
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 253, 0.98) 100%);
}

.product-stage {
    min-height: 500px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.product-stage img {
    max-height: 420px;
}

.product-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(246, 238, 226, 0.98) 100%);
}

.product-summary h1 {
    margin: 0;
    max-width: none;
    font-size: clamp(30px, 2.65vw, 44px);
    line-height: 1.04;
}

.product-summary-lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.68;
}

.product-summary-specs {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.product-summary-spec {
    display: grid;
    grid-template-columns: minmax(112px, 0.8fr) minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(218, 224, 232, 0.98);
}

.product-summary-spec span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.product-summary-spec strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
}

.product-buy-card {
    padding: 24px;
    background: linear-gradient(180deg, rgba(24, 28, 35, 0.98) 0%, rgba(16, 19, 25, 0.99) 100%);
    top: 96px;
}

.product-buy-note {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    line-height: 1.7;
}

.product-buy-button,
.product-buy-secondary {
    min-height: 56px;
    border-radius: 16px;
}

.product-buy-secondary {
    background: #fff;
    color: #19212c;
    box-shadow: none;
}

.product-buy-secondary:hover {
    background: #fff;
    color: #19212c;
}

.product-buy-info {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-sections {
    margin-top: 22px;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.product-section-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 250, 252, 0.98) 100%);
}

.site-footer {
    padding: 10px 0 88px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(210px, 0.75fr) minmax(210px, 0.75fr) minmax(280px, 1fr);
    gap: 24px;
    padding: 32px;
    border-radius: 24px;
    background:
        radial-gradient(circle at bottom right, rgba(255, 122, 27, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(24, 28, 35, 0.99) 0%, rgba(16, 19, 25, 0.99) 100%);
}

.footer-brand-block,
.footer-links-block,
.footer-cta-block {
    min-width: 0;
}

.footer-brand {
    display: inline-flex;
}

.footer-brand.brand-image {
    width: min(100%, 480px);
}

.footer-brand-block p,
.footer-cta-block p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

.footer-brand-actions,
.footer-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-brand-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer-brand-actions a:hover {
    background: rgba(255, 122, 27, 0.18);
    color: #fff;
}

.footer-links-block strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-weight: 600;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-cta-block {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 122, 27, 0.18) 0%, rgba(255, 122, 27, 0.06) 100%);
    border: 1px solid rgba(255, 122, 27, 0.18);
}

.footer-cta-block .section-label {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-cta-block strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.06;
}

.footer-cta-links .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta-links .button-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.footer-license-note {
    justify-content: flex-start;
    padding-top: 8px;
}

@media (max-width: 1320px) {
    .catalog-intro-panel,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1140px) {
    .catalog-intro-panel {
        grid-template-columns: 1fr;
    }

    .product-top {
        grid-template-columns: 1fr;
    }

    .product-gallery,
    .product-summary,
    .product-buy-card {
        grid-column: auto;
    }

    .product-stage {
        min-height: 420px;
    }

    .home-hero-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .brand-copy span {
        max-width: 170px;
    }

    .catalog-intro-panel,
    .footer-grid,
    .catalog-intro-stats,
    .product-sections {
        grid-template-columns: 1fr;
    }

    .catalog-intro-panel {
        padding: 24px 22px;
    }

    .catalog-intro-copy h1 {
        font-size: 34px;
    }

    .shop_table {
        grid-template-columns: 1fr;
    }

    .image_row {
        min-height: 250px;
        padding: 18px 18px 14px;
    }

    .image_cell img {
        max-height: 200px;
    }

    .product-summary,
    .product-buy-card,
    .product-section-card {
        padding: 22px;
    }

    .product-summary h1 {
        max-width: none;
        font-size: 30px;
    }

    .product-summary-spec {
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* PRO spec alignment */
.site-nav {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.site-catalog-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.12);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(255, 122, 27, 0.18);
}

.site-catalog-button:hover,
.site-catalog-button.is-active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
}

.site-search-form {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-search-form i {
    color: var(--accent);
    font-size: 16px;
}

.site-search-form input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.site-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.site-search-form button {
    min-height: 38px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.site-icon-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.site-icon-button {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.site-icon-button:hover {
    background: rgba(255, 122, 27, 0.16);
    color: #fff;
}

.site-nav-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 999px;
}

.home-categories-grid-extended {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-bar small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.5;
}

.home-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-product-badge,
.home-product-chip {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-product-badge {
    background: rgba(21, 179, 115, 0.12);
    color: #12885a;
}

.home-product-badge.accent {
    background: rgba(255, 122, 27, 0.14);
    color: var(--accent-strong);
}

.home-product-chip {
    background: rgba(20, 24, 31, 0.06);
    color: var(--muted);
}

.home-model-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-model-card {
    display: grid;
    gap: 10px;
    min-height: 168px;
    padding: 22px 20px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(24, 28, 35, 0.98) 0%, rgba(16, 19, 25, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 34px rgba(10, 13, 18, 0.14);
}

.home-model-card strong {
    color: #fff;
    font-size: 22px;
    line-height: 1.08;
}

.home-model-card span {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.home-model-card em {
    margin-top: auto;
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

.home-model-card:hover {
    transform: translateY(-2px);
    color: #fff;
}

.home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-benefit-card {
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 249, 252, 0.98) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.home-benefit-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--accent);
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,248,251,.98) 100%);
    box-shadow: inset 0 0 0 8px rgba(255, 122, 27, 0.12);
}

.home-benefit-icon i {
    font-size: 30px;
}

.home-benefit-card strong {
    display: block;
    font-size: 20px;
    line-height: 1.2;
}

.home-benefit-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.seo-info-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    padding: 30px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,250,253,.98) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.seo-info-copy h2 {
    margin: 18px 0 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.06;
}

.seo-info-copy p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.85;
    font-size: 17px;
}

.seo-info-side {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(24, 28, 35, 0.98) 0%, rgba(16, 19, 25, 0.99) 100%);
}

.seo-info-side strong {
    color: #fff;
    display: block;
    font-size: 20px;
}

.seo-info-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.seo-info-list li {
    padding-left: 18px;
    position: relative;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.seo-info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.home-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(24, 28, 35, 0.99) 0%, rgba(16, 19, 25, 0.99) 100%);
    box-shadow: 0 24px 40px rgba(10, 13, 18, 0.16);
}

.home-cta-copy h2 {
    margin: 16px 0 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.04;
}

.home-cta-copy p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 17px;
    max-width: 44rem;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.product-compatibility-inline {
    display: grid;
    gap: 12px;
}

.product-compatibility-inline strong {
    font-size: 15px;
    color: var(--ink);
}

.product-compatibility-chips,
.product-option-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-chip,
.product-option-chip {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.12);
    border: 1px solid rgba(255, 122, 27, 0.14);
    color: var(--accent-strong);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.product-option-group {
    display: grid;
    gap: 12px;
}

.product-option-group > span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-option-chip {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.product-option-chip.is-current {
    background: rgba(255, 122, 27, 0.16);
    border-color: rgba(255, 122, 27, 0.18);
}

.product-quantity-box {
    display: grid;
    grid-template-columns: 44px minmax(68px, 84px) 44px;
    gap: 8px;
    align-items: center;
}

.product-qty-button,
.product-qty-input {
    min-height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-align: center;
}

.product-qty-button {
    font-size: 22px;
    font-weight: 700;
}

.product-qty-input {
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    appearance: textfield;
}

.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-delivery-summary {
    display: grid;
    gap: 10px;
}

.product-delivery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.product-delivery-row span {
    color: rgba(255, 255, 255, 0.6);
}

.product-delivery-row strong {
    color: #fff;
    font-size: 14px;
    text-align: right;
}

.product-related-section {
    margin-top: 24px;
}

.related-products-grid {
    margin-top: 18px;
}

@media (max-width: 1320px) {
    .home-model-grid,
    .home-categories-grid-extended {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1140px) {
    .site-nav {
        grid-template-columns: 1fr;
    }

    .site-icon-actions {
        justify-content: flex-start;
    }

    .seo-info-panel,
    .home-cta-panel {
        grid-template-columns: 1fr;
    }

    .home-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-search-form {
        min-height: 48px;
        padding: 0 10px 0 14px;
    }

    .site-search-form button {
        padding: 0 12px;
    }

    .site-icon-actions {
        flex-wrap: wrap;
    }

    .home-categories-grid-extended,
    .home-model-grid,
    .home-benefits-grid {
        grid-template-columns: 1fr;
    }

    .seo-info-panel,
    .home-cta-panel {
        padding: 24px 22px;
    }
}

.site-nav .site-nav-cta,
.site-nav .site-nav-cta span,
.site-nav .site-nav-cta i {
    color: #19212c !important;
}

.site-nav .site-nav-cta.is-active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 16px 28px rgba(255, 122, 27, 0.22) !important;
}

.site-nav .site-nav-cta.is-active span,
.site-nav .site-nav-cta.is-active i {
    color: #fff !important;
}

.secondary-side-card .catalog-sidebar-link,
.secondary-side-card .catalog-sidebar-pill {
    color: var(--ink);
    background: #fff;
    border-color: rgba(214, 225, 236, 0.92);
}

.secondary-side-card .catalog-sidebar-label {
    color: var(--accent-strong);
    background: rgba(255, 122, 27, 0.12);
}

.secondary-side-card .catalog-sidebar-title {
    color: var(--ink);
}

.secondary-side-card p {
    color: var(--muted);
}

.secondary-side-card .catalog-sidebar-link:hover,
.secondary-side-card .catalog-sidebar-pill:hover {
    background: rgba(255, 122, 27, 0.08);
    color: var(--accent-strong);
}

/* 2026-03-28 refinement pass */
.site-header {
    background: linear-gradient(180deg, rgba(25, 29, 36, 0.98) 0%, rgba(17, 20, 26, 0.98) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 32px rgba(10, 13, 18, 0.16);
}

.header-wrap {
    gap: 28px;
    padding: 16px 0;
}

.brand {
    gap: 16px;
    flex: 0 0 auto;
}

.site-header .brand.brand-image {
    width: clamp(250px, 23vw, 430px);
}

.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 24px;
    box-shadow: 0 18px 30px rgba(255, 122, 27, 0.22);
}

.brand-copy strong {
    color: #fff;
    font-size: clamp(22px, 2vw, 30px);
}

.brand-copy span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.site-nav {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: auto minmax(320px, 420px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.site-catalog-button {
    min-height: 50px;
    padding: 0 20px;
    background: rgba(255, 122, 27, 0.12);
    border-color: rgba(255, 122, 27, 0.16);
}

.site-search-form {
    min-height: 54px;
    padding: 0 12px 0 18px;
}

.site-search-form input {
    font-size: 15px;
}

.site-search-form button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.site-header-actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.site-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.site-nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 600;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.site-nav-cta {
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #1a2028 !important;
}

.page-main {
    padding-top: 28px;
}

.section-block {
    padding-top: 44px;
}

.marketplace-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.marketplace-heading p {
    max-width: 36rem;
    margin: 0;
    justify-self: end;
    font-size: 16px;
    line-height: 1.75;
}

.home-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    min-height: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.home-hero-copy,
.home-hero-visual {
    min-width: 0;
}

.home-hero-copy {
    padding: 42px 38px 38px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(22, 26, 33, 0.99) 0%, rgba(13, 16, 22, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 48px rgba(10, 13, 18, 0.18);
}

.home-hero-copy .section-label {
    background: rgba(255, 122, 27, 0.12);
    color: #fff;
}

.home-hero-copy h1 {
    max-width: 7.8ch;
    color: #fff;
    font-size: clamp(50px, 5vw, 78px);
    line-height: 0.95;
}

.home-hero-copy p {
    max-width: 33rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.72;
}

.home-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.home-hero-point {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hero-point i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 4px;
}

.home-hero-point strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
}

.home-hero-point span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.55;
}

.home-hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    align-items: stretch;
}

.home-hero-stage,
.home-hero-stack-card {
    text-decoration: none;
}

.home-hero-stage {
    display: flex;
    flex-direction: column;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(24, 28, 35, 0.99) 0%, rgba(15, 18, 24, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 48px rgba(10, 13, 18, 0.18);
}

.home-hero-stage-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 246, 250, 0.98) 100%);
}

.home-hero-stage-media img {
    max-height: 360px;
    object-fit: contain;
}

.home-hero-stage-body {
    display: grid;
    gap: 12px;
    padding: 22px 24px 24px;
}

.home-hero-stage-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-hero-stage-badges span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.14);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-hero-stage-body strong {
    color: #fff;
    font-size: 30px;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.home-hero-stage-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.home-hero-stage-body em {
    color: #fff;
    font-family: var(--font-accent);
    font-style: normal;
    font-size: 30px;
}

.home-hero-stack {
    display: grid;
    gap: 18px;
}

.home-hero-stack-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(24, 28, 35, 0.99) 0%, rgba(15, 18, 24, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 36px rgba(10, 13, 18, 0.16);
}

.home-hero-stack-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    padding: 10px;
}

.home-hero-stack-body {
    min-width: 0;
}

.home-hero-stack-body strong {
    display: -webkit-box;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-hero-stack-body span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
}

.home-hero-stack-card-accent {
    grid-template-columns: 1fr;
    align-items: start;
    background: linear-gradient(135deg, rgba(255, 122, 27, 0.2) 0%, rgba(143, 24, 22, 0.88) 100%);
}

.home-categories-grid-extended {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-category-tile {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 22px;
}

.home-category-media {
    aspect-ratio: 1.16 / 1;
    padding: 24px 24px 8px;
}

.home-category-media img {
    max-height: 220px;
}

.home-category-body {
    display: grid;
    gap: 10px;
    padding: 18px 20px 22px;
    color: #fff;
}

.home-category-count {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.14);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-category-body strong {
    font-size: 26px;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.home-category-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.home-category-link {
    margin-top: auto;
    color: #ff8d32;
    font-weight: 700;
}

.home-products-grid {
    gap: 20px;
}

.home-product-card {
    border-radius: 22px;
}

.home-product-media {
    padding: 20px;
}

.home-product-media.is-cover {
    padding: 0;
}

.home-product-media img {
    max-height: 210px;
}

.home-product-body {
    gap: 16px;
    padding: 18px 18px 20px;
}

.home-product-body h3 a {
    font-size: 18px;
    line-height: 1.4;
}

.home-product-price {
    font-size: 28px;
}

.home-product-card .button2 {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 16px;
}

.home-model-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-model-card {
    min-height: 156px;
    padding: 20px 18px;
}

.home-model-card strong {
    font-size: 20px;
}

.home-benefits-grid {
    gap: 20px;
}

.seo-info-panel,
.home-cta-panel {
    padding: 32px;
    border-radius: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(280px, 1fr);
    gap: 22px;
    padding: 28px;
    border-radius: 24px;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 16px 6px 0;
}

.catalog-layout {
    align-items: start;
}

.catalog-layout > .col-12.col-lg-3 {
    width: auto;
}

.catalog-layout > .col-12.col-lg-9 {
    width: auto;
}

.catalog-sidebar-card {
    position: sticky;
    top: 102px;
}

.shop_table {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.shop_table_item {
    border-radius: 20px;
}

.image_row {
    min-height: 260px;
    padding: 20px 20px 14px;
}

.image_cell img {
    max-height: 210px;
}

.description_sell {
    padding: 18px 18px 20px;
    gap: 12px;
}

.description_sell > a:first-of-type,
.shop_item .description_sell h2 a,
.description_sell p a {
    font-size: 16px;
    line-height: 1.46;
    -webkit-line-clamp: 3;
}

.price {
    gap: 14px;
    font-size: 30px;
    margin-top: auto;
}

.price a.button2,
.price a.button2.white,
.price a.button2.white.medium {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    font-size: 18px;
}

.product-top {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) 300px;
    gap: 20px;
}

.product-stage {
    min-height: 520px;
}

.product-summary h1 {
    font-size: clamp(36px, 3.8vw, 58px);
    line-height: 0.98;
}

.product-buy-card {
    top: 102px;
}

.secondary-content-shell {
    padding: 28px;
}

@media (max-width: 1240px) {
    .site-nav {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .site-header-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .marketplace-heading,
    .seo-info-panel,
    .home-cta-panel,
    .home-hero-shell,
    .home-hero-visual {
        grid-template-columns: 1fr;
    }

    .marketplace-heading p {
        justify-self: start;
        max-width: none;
    }

    .home-hero-points,
    .home-model-grid,
    .home-categories-grid-extended,
    .home-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .catalog-sidebar-card,
    .product-buy-card {
        position: static;
    }

    .catalog-layout,
    .product-top {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .header-wrap {
        gap: 18px;
    }

    .brand.brand-image,
    .site-header .brand.brand-image {
        width: min(76vw, 300px);
    }

    .brand-copy span {
        display: none;
    }

    .site-nav {
        grid-template-columns: 1fr;
    }

    .site-header-actions {
        justify-content: flex-start;
    }

    .home-hero-points,
    .home-model-grid,
    .home-categories-grid-extended,
    .home-benefits-grid,
    .shop_table,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .shop_address > .row > .form-error {
        grid-column: 1 / -1;
        margin-top: 0;
        padding-left: 0;
    }

    .home-hero-stage-media {
        min-height: 320px;
    }

    .home-hero-webgl {
        display: none;
    }

    .marketplace-heading,
    .seo-info-panel,
    .home-cta-panel {
        gap: 18px;
    }
}

.secondary-helper-panel {
    margin-top: 18px;
    padding: 28px 30px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 253, 0.98) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.secondary-helper-panel h2 {
    margin: 18px 0 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
}

.secondary-helper-panel p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.secondary-helper-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* 2026-03-28 closer to provided reference */
:root {
    --bg: #f3f5f8;
    --bg-soft: #fbfcfe;
    --surface: rgba(255, 255, 255, 0.98);
    --surface-strong: #ffffff;
    --surface-alt: #f6f7fa;
    --surface-dark: #181b21;
    --ink: #1f2732;
    --muted: #6a7280;
    --line: #e2e6ec;
    --line-strong: #d6dbe3;
    --accent: #ff6a00;
    --accent-strong: #ff7e1b;
    --accent-soft: rgba(255, 106, 0, 0.12);
    --accent-warm: #ff9d47;
    --shadow-lg: 0 24px 44px rgba(20, 24, 31, 0.12);
    --shadow-md: 0 14px 28px rgba(20, 24, 31, 0.08);
}

html,
body {
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.08), transparent 22%),
        linear-gradient(180deg, #fafbfd 0%, #f3f5f8 100%);
}

body::before {
    background-image:
        linear-gradient(rgba(24, 27, 33, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 27, 33, 0.018) 1px, transparent 1px);
    background-size: 42px 42px, 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 70%);
}

.site-header {
    background: linear-gradient(180deg, rgba(24, 27, 33, 0.985) 0%, rgba(19, 22, 28, 0.985) 100%);
}

.site-nav {
    grid-template-columns: auto minmax(320px, 470px) minmax(0, 1fr);
}

.site-header-actions {
    gap: 10px;
}

.site-nav-links {
    gap: 2px;
    flex-wrap: nowrap;
}

.site-nav-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
}

.site-catalog-button,
.site-search-form,
.site-icon-button {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.07);
}

.site-nav-cta {
    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.16);
}

.page-main {
    padding-top: 24px;
}

.marketplace-heading {
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #d7dbe3;
}

.marketplace-heading .section-label {
    background: rgba(255, 106, 0, 0.08);
    color: var(--accent);
    box-shadow: inset 4px 0 0 var(--accent);
}

.marketplace-heading h2 {
    font-size: clamp(34px, 3.2vw, 50px);
    line-height: 1.02;
}

.home-hero-shell {
    padding: 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at right top, rgba(255, 106, 0, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(24, 27, 33, 0.99) 0%, rgba(14, 17, 22, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 54px rgba(14, 17, 22, 0.18);
}

.home-hero-copy,
.home-hero-stage,
.home-hero-stack-card {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-hero-copy {
    padding: 26px 18px 18px 8px;
}

.home-hero-copy .section-label {
    background: rgba(255, 106, 0, 0.16);
    color: #fff;
}

.home-hero-copy h1 {
    max-width: 6.8ch;
    font-size: clamp(54px, 5.2vw, 86px);
}

.home-hero-copy p {
    max-width: 30rem;
    font-size: 18px;
}

.hero-actions {
    margin-top: 28px;
}

.hero-actions .button {
    min-height: 54px;
    padding: 0 22px;
    border-radius: 14px;
}

.hero-actions .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.home-hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.home-hero-point {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.home-hero-stage {
    border-radius: 22px;
    background: transparent;
}

.home-hero-stage-media {
    min-height: 380px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 106, 0, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f6fa 100%);
}

.home-hero-stage-body {
    gap: 10px;
    padding: 18px 6px 0;
}

.home-hero-stage-badges span {
    background: rgba(255, 106, 0, 0.14);
}

.home-hero-stage-body strong {
    font-size: 28px;
}

.home-hero-stage-body p {
    font-size: 14px;
}

.home-hero-stack {
    gap: 14px;
}

.home-hero-stack-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.home-categories-grid-extended {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-category-tile {
    width: 100%;
    max-width: 296px;
    justify-self: center;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.home-category-media {
    aspect-ratio: 1.02 / 1;
    padding: 14px 14px 4px;
    background:
        linear-gradient(135deg, rgba(249, 250, 252, 1) 0%, rgba(241, 244, 249, 1) 52%, rgba(249, 250, 252, 1) 100%);
}

.home-category-media.is-cover {
    padding: 0;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%),
        var(--card-image);
    background-size: auto, contain;
    background-position: center center, center 10px;
    background-repeat: no-repeat;
}

.home-category-media img {
    max-height: 170px;
}

.home-category-body {
    min-height: 148px;
    padding: 16px 18px 18px;
    background: linear-gradient(180deg, rgba(24, 27, 33, 0.985) 0%, rgba(17, 20, 25, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.home-category-count {
    background: rgba(255, 106, 0, 0.14);
}

.home-category-body strong {
    font-size: 22px;
}

.home-category-body p {
    font-size: 13px;
    line-height: 1.65;
}

.home-category-link {
    color: var(--accent);
}

.home-products-grid,
.shop_table {
    gap: 18px;
}

.home-product-card,
.shop_table_item {
    width: 100%;
    max-width: 304px;
    justify-self: center;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.home-product-media,
.image_row {
    aspect-ratio: 0.92 / 1;
    background:
        linear-gradient(135deg, rgba(249, 250, 252, 1) 0%, rgba(241, 244, 249, 1) 52%, rgba(249, 250, 252, 1) 100%);
}

.home-product-media.is-cover {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%),
        var(--card-image);
    background-size: auto, contain;
    background-position: center center, center 8px;
    background-repeat: no-repeat;
}

.home-product-media img {
    max-height: 188px;
}

.home-product-body {
    gap: 14px;
}

.home-product-body h3 a {
    font-size: 17px;
}

.home-product-price {
    font-size: 24px;
}

.home-product-card .button2,
.price a.button2,
.price a.button2.white,
.price a.button2.white.medium {
    min-height: 42px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(255, 106, 0, 0.18);
}

.home-model-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.home-model-card {
    min-height: 144px;
    border-radius: 16px;
}

.home-model-card strong {
    font-size: 18px;
}

.home-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-benefit-card {
    border-radius: 18px;
    padding: 22px 18px;
}

.home-benefit-card strong {
    font-size: 18px;
}

.seo-info-panel,
.home-cta-panel,
.secondary-helper-panel {
    background: #fff;
}

.catalog-intro-panel,
.catalog-sidebar-card,
.product-buy-card,
.footer-grid,
.footer-cta-block {
    background: linear-gradient(180deg, rgba(24, 27, 33, 0.99) 0%, rgba(16, 19, 25, 1) 100%);
}

.catalog-intro-copy h1 {
    font-size: clamp(36px, 4vw, 60px);
}

.catalog-content-shell {
    background: #fff;
    border-radius: 22px;
}

.shop_table {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image_row {
    min-height: 248px;
}

.image_cell img {
    max-height: 198px;
}

.description_sell {
    gap: 10px;
}

.description_sell > a:first-of-type,
.shop_item .description_sell h2 a,
.description_sell p a {
    font-size: 15px;
}

.price {
    font-size: 22px;
}

.product-summary h1 {
    font-size: clamp(34px, 3.6vw, 54px);
}

.site-footer {
    padding-top: 16px;
}

.footer-grid {
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1240px) {
    .home-categories-grid-extended,
    .home-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-nav-links {
        display: none;
    }

    .home-category-tile,
    .home-product-card,
    .shop_table_item {
        max-width: none;
    }

    .home-hero-points,
    .home-categories-grid-extended,
    .home-model-grid,
    .home-benefits-grid,
    .shop_table {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1560px) {
    .container.wrap,
    .wrap {
        width: min(1720px, calc(100vw - 96px));
    }

    .home-hero-shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .home-products-grid,
    .shop_table {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-categories-grid-extended {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .catalog-layout {
        grid-template-columns: 320px minmax(0, 1fr);
    }

    .catalog-intro-panel {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }

    .product-top {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr) 340px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 0.8fr) 360px;
    }
}

.seo-answer-grid,
.catalog-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seo-answer-card,
.catalog-seo-card {
    background: #fff;
    border: 1px solid rgba(20, 27, 38, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(15, 23, 38, 0.08);
    padding: 24px 24px 22px;
}

.seo-answer-card h3,
.catalog-seo-card strong {
    display: block;
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    color: #111827;
}

.seo-answer-card p,
.catalog-seo-card p {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.seo-answer-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #ff6a00;
    font-weight: 700;
    text-decoration: none;
}

.seo-answer-card a:hover {
    color: #ff7e1b;
}

.catalog-seo-grid {
    margin-top: 18px;
    margin-bottom: 18px;
}

@media (max-width: 1240px) {
    .seo-answer-grid,
    .catalog-seo-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-03-30 logo fit pass */
.site-header .brand.brand-image {
    width: clamp(220px, 18vw, 340px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 108px;
    object-fit: contain;
}

.header-wrap {
    align-items: center;
}

.footer-brand.brand-image {
    width: min(100%, 360px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.footer-brand .brand-logo {
    max-height: 120px;
}

@media (max-width: 860px) {
    .brand.brand-image,
    .site-header .brand.brand-image {
        width: min(72vw, 260px);
    }

    .brand-logo {
        max-height: 88px;
    }

    .footer-brand.brand-image {
        width: min(100%, 280px);
    }
}

/* 2026-04-10 composition polish pass */
@media (min-width: 1180px) {
    .site-header {
        background: rgba(17, 20, 26, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 38px rgba(9, 11, 15, 0.18);
    }

    .header-wrap {
        display: grid;
        grid-template-columns: minmax(220px, 280px) minmax(280px, 420px) minmax(0, 1fr);
        gap: 18px;
        padding: 14px 0;
    }

    .site-header .brand.brand-image {
        width: clamp(220px, 15vw, 280px);
    }

    .brand-logo {
        max-height: 82px;
    }

    .site-nav {
        display: grid;
        grid-template-columns: auto minmax(280px, 1fr) minmax(0, 1.1fr);
        align-items: center;
        gap: 16px;
        min-width: 0;
        margin-left: 0;
    }

    .site-search-form {
        width: 100%;
        min-height: 52px;
        padding: 0 16px 0 18px;
    }

    .site-header-actions {
        min-width: 0;
        justify-content: space-between;
        gap: 14px;
    }

    .site-nav-links {
        justify-content: flex-end;
        gap: 6px;
    }

    .site-nav-link {
        min-height: 42px;
        padding: 0 14px;
        font-size: 14px;
    }

    .site-nav-cta {
        min-height: 50px;
        padding: 0 18px;
    }
}

.section-heading.marketplace-heading {
    align-items: end;
    gap: 22px;
    margin-bottom: 22px;
}

.section-heading.marketplace-heading h2 {
    font-size: clamp(32px, 2.6vw, 46px);
    line-height: 1.05;
}

.section-heading.marketplace-heading p {
    max-width: 34rem;
    font-size: 16px;
}

.home-hero-shell {
    gap: 22px;
    min-height: 572px;
    padding: 22px;
    border-radius: 32px;
}

.home-hero-copy {
    padding: 42px 40px 38px;
    align-self: stretch;
}

.home-hero-copy h1 {
    max-width: 6.8ch;
    font-size: clamp(50px, 5vw, 82px);
    line-height: 0.93;
}

.home-hero-copy p {
    max-width: 31rem;
    font-size: 19px;
}

.home-hero-points {
    gap: 10px;
    margin-top: 26px;
}

.home-hero-point {
    min-height: 118px;
    align-content: start;
}

.home-hero-visual {
    grid-template-columns: minmax(0, 1fr) 252px;
    gap: 16px;
    min-height: 100%;
    padding: 6px 6px 6px 0;
}

.home-hero-stage {
    min-height: 100%;
}

.home-hero-stage-media {
    min-height: 360px;
    padding: 24px;
}

.home-hero-stage-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-hero-stage-body {
    padding: 18px 20px 20px;
}

.home-hero-stage-body strong {
    font-size: 22px;
    line-height: 1.3;
}

.home-hero-stage-body p {
    font-size: 15px;
    line-height: 1.65;
}

.home-hero-stage-body em {
    font-size: 30px;
}

.home-hero-stack {
    gap: 14px;
}

.home-hero-stack-card {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
}

.home-hero-stack-card img {
    width: 74px;
    height: 74px;
}

.home-hero-stack-body strong {
    font-size: 15px;
}

.home-hero-stack-body span {
    margin-top: 6px;
    font-size: 13px;
}

.home-categories-grid-extended,
.home-products-grid {
    gap: 18px;
}

.home-categories-grid-extended {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-tile,
.home-product-card {
    border-radius: 22px;
}

.home-category-media {
    aspect-ratio: 1.1 / 1;
    padding: 18px;
    background-position: center;
    background-size: contain;
}

.home-category-body {
    padding: 18px 18px 20px;
}

.home-category-body strong {
    font-size: 19px;
    line-height: 1.3;
}

.home-category-body p {
    font-size: 14px;
    line-height: 1.6;
}

.home-product-media {
    aspect-ratio: 1.02 / 1;
    padding: 18px;
}

.home-product-body {
    gap: 14px;
    padding: 18px 18px 20px;
}

.home-product-body h3 a {
    font-size: 18px;
    line-height: 1.42;
}

.home-product-price {
    font-size: 30px;
}

.home-product-bottom {
    margin-top: auto;
    gap: 12px;
    align-items: end;
}

.catalog-layout > aside {
    display: grid;
    gap: 18px;
}

.catalog-sidebar-card,
.page-cart .secondary-side-card {
    padding: 22px;
    border-radius: 24px;
}

.catalog-sidebar-card {
    position: sticky;
    top: 94px;
}

.catalog-intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 320px;
    gap: 18px;
    padding: 28px;
    border-radius: 26px;
}

.catalog-intro-copy h1 {
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.02;
}

.catalog-intro-copy p {
    max-width: 38rem;
    font-size: 16px;
    line-height: 1.72;
}

.catalog-intro-stats {
    gap: 12px;
}

.catalog-intro-stat {
    padding: 16px 18px;
    border-radius: 18px;
}

.catalog-intro-links {
    gap: 10px;
}

.catalog-seo-grid {
    gap: 14px;
}

.catalog-seo-card {
    padding: 18px 20px;
    border-radius: 18px;
}

.catalog-content-shell {
    padding: 20px;
    border-radius: 26px;
}

.catalog-content-shell .group_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 0 0 18px;
    padding: 0 0 18px;
    list-style: none;
}

.catalog-content-shell .group_list li {
    margin: 0;
}

.catalog-content-shell .group_list a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 20, 26, 0.04);
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.catalog-content-shell .shop_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: 8px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.14);
    color: var(--accent-strong);
}

.catalog-content-shell .shop_table {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.catalog-content-shell .shop_table_item {
    border-radius: 20px;
    box-shadow: 0 16px 28px rgba(18, 38, 58, 0.08);
}

.catalog-content-shell .image_row {
    min-height: 248px;
    padding: 18px 18px 12px;
}

.catalog-content-shell .image_cell img {
    max-height: 190px;
}

.catalog-content-shell .description_sell {
    padding: 18px 18px 20px;
    gap: 12px;
}

.catalog-content-shell .description_sell > a:first-of-type,
.catalog-content-shell .shop_item .description_sell h2 a,
.catalog-content-shell .description_sell p a {
    font-size: 17px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
}

.catalog-content-shell .price {
    gap: 12px;
    font-size: 30px;
}

.catalog-content-shell .price a.button2,
.catalog-content-shell .price a.button2.white,
.catalog-content-shell .price a.button2.white.medium {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 17px;
}

.product-top {
    grid-template-columns: minmax(320px, 0.88fr) minmax(380px, 0.96fr) minmax(286px, 0.6fr);
    gap: 18px;
}

.product-gallery {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
}

.product-stage {
    min-height: 460px;
}

.product-stage img {
    max-height: 382px;
}

.product-summary {
    padding: 24px;
    gap: 16px;
}

.product-summary h1 {
    font-size: clamp(34px, 2.65vw, 46px);
    line-height: 1.03;
}

.product-summary-lead {
    font-size: 16px;
    line-height: 1.66;
}

.product-compatibility-inline {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(216, 224, 232, 0.9);
}

.product-summary-specs {
    gap: 8px;
}

.product-summary-spec {
    padding: 12px 14px;
}

.product-buy-card {
    top: 94px;
    padding: 20px;
    border-radius: 22px;
}

.product-price {
    font-size: clamp(34px, 2.8vw, 46px);
}

.product-buy-note {
    margin-top: 14px;
    padding: 14px 15px;
    font-size: 14px;
    line-height: 1.62;
}

.product-buy-button,
.product-buy-secondary {
    min-height: 54px;
    font-size: 17px;
}

.product-delivery-summary,
.product-buy-info {
    margin-top: 14px;
    padding-top: 14px;
}

.product-sections {
    margin-top: 18px;
    gap: 18px;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.product-section-card {
    padding: 22px;
}

.related-products-grid {
    gap: 18px;
}

.page-cart .secondary-layout > .col-12.col-lg-8 {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.page-cart .secondary-content-shell {
    padding: 28px;
    border-radius: 26px;
}

.page-cart .secondary-content-shell > h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.02;
}

.page-cart .secondary-content-shell > p {
    max-width: 40rem;
    margin: 0 0 18px;
    color: var(--muted);
}

.page-cart .secondary-side-card {
    position: sticky;
    top: 94px;
}

.checkout-form-cart,
.checkout-form-address,
.checkout-form-delivery,
.checkout-form-payment {
    display: grid;
    gap: 18px;
}

.shop_navigation {
    gap: 10px;
    margin-bottom: 24px;
}

.shop_navigation li {
    min-height: 56px;
    font-size: 14px;
    border-radius: 16px;
}

.shop_navigation_current {
    border-color: transparent;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.94) 0%, rgba(209, 74, 37, 0.94) 100%);
    box-shadow: 0 16px 30px rgba(255, 106, 0, 0.18);
    color: #fff;
}

.shop_navigation_current span {
    color: inherit;
}

.checkout-card,
.checkout-choice-table,
.checkout-note-card {
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(18, 38, 58, 0.08);
}

.shop_address > .row {
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.82);
}

.shop_address .caption {
    font-size: 14px;
}

.shop_address .field {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.shop_address .field .width1 {
    width: auto;
    flex: 1 1 220px;
}

.shop_address .field .width2 {
    width: auto;
    flex: 1 1 100%;
}

.checkout-control,
.secondary-content-shell .shop_coupon input[type="text"],
.secondary-content-shell .delivery-time input[type="text"],
.shop_cart input[type="text"],
.shop_cart input[type="number"],
.shop_cart select {
    min-height: 52px;
    border-radius: 14px;
}

.shop_address textarea {
    min-height: 128px;
}

.shop_coupon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-weight: 600;
}

.shop_coupon input[type="text"] {
    max-width: 320px;
}

.delivery-time {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.checkout-submit-row {
    gap: 12px;
}

.checkout-submit-row .button,
.checkout-submit-row input.button,
.checkout-submit-row input[type="submit"].button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
}

.checkout-form-delivery .checkout-note-card {
    font-size: 15px;
    line-height: 1.7;
}

.checkout-choice-table .shop_cart th {
    background: #f6f8fb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-choice-table label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
}

.form-error {
    color: #c94a4a;
}

@media (max-width: 1240px) {
    .catalog-intro-panel,
    .home-hero-shell,
    .home-hero-visual {
        grid-template-columns: 1fr;
    }

    .catalog-content-shell .shop_table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-top,
    .product-sections {
        grid-template-columns: 1fr;
    }

    .page-cart .secondary-side-card,
    .catalog-sidebar-card,
    .product-buy-card {
        position: static;
    }
}

@media (max-width: 860px) {
    .page-cart .secondary-content-shell,
    .catalog-content-shell,
    .catalog-intro-panel {
        padding: 22px;
    }

    .shop_address > .row {
        grid-template-columns: 1fr;
    }

    .shop_address > .row > .form-error {
        grid-column: 1 / -1;
        margin-top: 0;
        padding-left: 0;
    }

    .delivery-time,
    .catalog-content-shell .shop_table,
    .home-categories-grid-extended,
    .home-products-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        padding: 28px 24px 22px;
    }

    .home-hero-copy h1 {
        font-size: clamp(40px, 11vw, 58px);
    }
}

/* 2026-04-10 breakpoint polish pass */
@media (max-width: 1180px) {
    .site-nav-links {
        display: none !important;
    }

    .header-wrap {
        gap: 16px !important;
        padding: 12px 0 !important;
    }

    .site-header .brand.brand-image {
        width: min(34vw, 250px) !important;
    }

    .brand-logo {
        max-height: 70px !important;
    }

    .site-nav {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        gap: 12px !important;
        min-width: 0;
    }

    .site-search-form {
        min-width: 0;
        width: 100%;
    }

    .site-header-actions {
        justify-content: flex-end !important;
        gap: 12px !important;
    }

    .page-main {
        padding-top: 18px;
    }

    .home-hero-shell {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        min-height: 0 !important;
        padding: 18px !important;
    }

    .home-hero-copy {
        padding: 16px 16px 8px !important;
    }

    .home-hero-copy h1 {
        max-width: none !important;
        font-size: clamp(40px, 6.4vw, 64px) !important;
        line-height: 0.96 !important;
    }

    .home-hero-copy p {
        max-width: 44rem;
        font-size: 17px !important;
        line-height: 1.6 !important;
    }

    .home-hero-points {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .home-hero-point {
        min-height: 0;
        padding: 12px 14px !important;
    }

    .home-hero-visual {
        display: grid;
        grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr) !important;
        gap: 14px !important;
        align-items: start;
    }

    .home-hero-stage {
        min-height: 0;
    }

    .home-hero-stage-media {
        min-height: 300px !important;
        padding: 20px !important;
    }

    .home-hero-stage-body {
        gap: 8px !important;
        padding: 16px 12px 6px !important;
    }

    .home-hero-stage-body strong {
        font-size: 20px !important;
        line-height: 1.22 !important;
    }

    .home-hero-stage-body p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 14px !important;
    }

    .home-hero-stage-body em {
        font-size: 24px !important;
    }

    .home-hero-stack {
        gap: 10px !important;
    }

    .home-hero-stack-card {
        grid-template-columns: 64px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .home-hero-stack-card img {
        width: 64px !important;
        height: 64px !important;
    }

    .home-hero-stack-body strong {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
    }

    .home-hero-stack-body span {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        margin-top: 4px !important;
        font-size: 12px !important;
    }

    .home-hero-stack-card-accent .home-hero-stack-body span {
        -webkit-line-clamp: 3;
    }

    .section-heading.marketplace-heading {
        gap: 16px;
        margin-bottom: 18px;
    }

    .section-heading.marketplace-heading h2 {
        font-size: 34px;
    }

    .home-categories-grid-extended,
    .home-products-grid {
        gap: 16px !important;
    }

    .home-category-body,
    .home-product-body {
        padding: 16px !important;
    }

    .home-category-body p,
    .home-product-body h3 a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .home-category-body p {
        -webkit-line-clamp: 3;
    }

    .home-product-body h3 a {
        -webkit-line-clamp: 3;
    }

    .catalog-layout {
        grid-template-columns: 280px minmax(0, 1fr) !important;
        gap: 16px !important;
    }

    .catalog-sidebar-card,
    .catalog-content-shell,
    .catalog-intro-panel,
    .secondary-content-shell,
    .secondary-side-card {
        padding: 20px !important;
        border-radius: 22px !important;
    }

    .product-top {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .product-gallery,
    .product-summary,
    .product-buy-card {
        grid-column: auto !important;
    }

    .product-gallery {
        padding: 16px !important;
    }

    .product-stage {
        min-height: 400px !important;
    }

    .product-summary {
        padding: 20px !important;
    }

    .product-summary h1 {
        font-size: clamp(30px, 4vw, 40px) !important;
    }

    .product-summary-lead {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .product-summary-spec {
        grid-template-columns: 110px 1fr !important;
    }

    .product-buy-card {
        position: static !important;
        top: auto !important;
        padding: 18px !important;
    }

    .product-delivery-summary {
        padding: 12px 14px !important;
    }

    .product-sections {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .page-cart .secondary-layout {
        row-gap: 16px !important;
    }

    .page-cart .secondary-side-card {
        position: static !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 10px 0 !important;
    }

    .header-wrap {
        gap: 12px !important;
        padding: 10px 0 !important;
    }

    .site-header .brand.brand-image {
        width: min(72vw, 220px) !important;
    }

    .brand-logo {
        max-height: 56px !important;
    }

    .site-nav {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .site-catalog-button,
    .site-nav-cta {
        min-height: 44px !important;
        padding: 0 16px !important;
    }

    .site-search-form {
        min-height: 48px !important;
        padding: 0 12px 0 14px !important;
    }

    .site-search-form button {
        min-height: 36px;
    }

    .site-header-actions {
        justify-content: space-between !important;
    }

    .site-nav-links {
        display: none !important;
    }

    .home-hero-shell {
        padding: 16px !important;
        gap: 14px !important;
        border-radius: 24px !important;
    }

    .home-hero-copy {
        padding: 0 !important;
    }

    .home-hero-copy h1 {
        font-size: clamp(34px, 11vw, 46px) !important;
        line-height: 0.95 !important;
    }

    .home-hero-copy p {
        font-size: 15px !important;
        line-height: 1.56 !important;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .button,
    .hero-actions .button-secondary {
        width: 100%;
        justify-content: center;
    }

    .home-hero-points {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .home-hero-point {
        padding: 10px 12px !important;
    }

    .home-hero-point:nth-child(3) {
        display: none;
    }

    .home-hero-visual {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .home-hero-stage-media {
        min-height: 248px !important;
        padding: 18px !important;
    }

    .home-hero-stage-media img {
        max-height: 228px;
    }

    .home-hero-stage-body strong {
        font-size: 18px !important;
    }

    .home-hero-stage-body em {
        font-size: 22px !important;
    }

    .home-hero-stack-card {
        grid-template-columns: 60px minmax(0, 1fr) !important;
        padding: 10px 12px !important;
    }

    .home-hero-stack-card img {
        width: 60px !important;
        height: 60px !important;
        padding: 8px !important;
        border-radius: 14px !important;
    }

    .home-hero-stack-card-accent {
        padding: 14px 12px !important;
    }

    .home-categories-grid-extended,
    .home-products-grid,
    .catalog-content-shell .shop_table {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .home-category-tile,
    .home-product-card,
    .catalog-content-shell .shop_table_item {
        max-width: none !important;
        border-radius: 18px !important;
    }

    .home-category-media {
        aspect-ratio: 1 / 0.86 !important;
        padding: 10px !important;
        background-size: contain !important;
        background-position: center 40% !important;
    }

    .home-category-body,
    .home-product-body {
        padding: 14px !important;
    }

    .home-category-count,
    .home-product-badge,
    .home-product-chip {
        font-size: 11px !important;
    }

    .home-category-body strong {
        font-size: 17px !important;
        line-height: 1.25;
    }

    .home-category-body p {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .home-product-body h3 {
        min-height: 0 !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    .home-product-price {
        font-size: 28px !important;
    }

    .home-product-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .home-product-bottom .button2 {
        width: 100%;
        justify-content: center;
    }

    .section-heading.marketplace-heading h2 {
        font-size: 28px !important;
    }

    .section-heading.marketplace-heading p {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .catalog-layout,
    .secondary-layout {
        row-gap: 14px !important;
    }

    .catalog-layout {
        grid-template-columns: 1fr !important;
    }

    .catalog-intro-panel,
    .catalog-content-shell,
    .catalog-sidebar-card,
    .secondary-content-shell,
    .secondary-side-card {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .product-gallery {
        grid-template-columns: 60px minmax(0, 1fr) !important;
        gap: 10px !important;
        padding: 12px !important;
    }

    .product-thumb img {
        width: 52px;
        height: 52px;
    }

    .product-stage {
        min-height: 280px !important;
    }

    .product-summary {
        padding: 16px !important;
    }

    .product-meta-row,
    .product-rating-row {
        gap: 8px !important;
    }

    .product-meta-badge,
    .product-meta-note,
    .product-rating-row span {
        min-height: 28px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
    }

    .product-summary h1 {
        font-size: clamp(26px, 7.5vw, 32px) !important;
        line-height: 1.01 !important;
    }

    .product-summary-lead {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        font-size: 14px !important;
        line-height: 1.54 !important;
    }

    .product-compatibility-inline {
        gap: 8px !important;
        padding: 12px !important;
    }

    .product-compatibility-inline strong {
        font-size: 14px !important;
    }

    .product-chip,
    .product-option-chip {
        min-height: 30px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
    }

    .product-summary-specs {
        gap: 6px !important;
    }

    .product-summary-spec {
        grid-template-columns: 94px 1fr !important;
        gap: 10px !important;
        padding: 9px 10px !important;
    }

    .product-summary-spec span,
    .product-summary-spec strong {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .product-buy-card {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .product-price {
        font-size: 36px !important;
        line-height: 1 !important;
    }

    .product-buy-note {
        padding: 12px !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    .product-quantity-box {
        min-height: 46px !important;
    }

    .product-buy-button,
    .product-buy-secondary {
        min-height: 50px !important;
    }

    .product-delivery-summary {
        gap: 10px !important;
    }

    .product-section-card {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .page-cart .secondary-helper-panel {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .shop_navigation {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-bottom: 18px !important;
    }

    .shop_navigation li {
        min-height: 48px !important;
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    .checkout-card,
    .checkout-note-card,
    .checkout-choice-table {
        border-radius: 18px !important;
    }

    .shop_address {
        gap: 14px !important;
    }

    .shop_address > .row {
        gap: 10px !important;
        padding: 14px !important;
    }

    .shop_address > .row > .caption {
        font-size: 13px !important;
    }

    .checkout-submit-row .field {
        justify-content: stretch !important;
    }

    .checkout-submit-row .button,
    .checkout-submit-row input.button,
    .checkout-submit-row input[type="submit"].button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 440px) {
    .home-categories-grid-extended,
    .home-products-grid,
    .catalog-content-shell .shop_table {
        grid-template-columns: 1fr !important;
    }
}

/* Motion and polish layer */
[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    filter: blur(10px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
    will-change: transform, opacity, filter;
}

[data-reveal="left"] {
    transform: translate3d(-28px, 0, 0);
}

[data-reveal="hero"] {
    transform: translate3d(0, 34px, 0) scale(.985);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
}

.home-hero-shell {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 78%, rgba(255, 106, 0, 0.16), transparent 34%),
        radial-gradient(circle at 82% 22%, rgba(255, 153, 0, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(10, 12, 17, 0.97), rgba(20, 22, 28, 0.95) 54%, rgba(42, 22, 13, 0.9));
}

.home-hero-shell::before,
.home-hero-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-hero-shell::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 74px 74px;
    opacity: .24;
    mask-image: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.35));
}

.home-hero-shell::after {
    background:
        linear-gradient(115deg, transparent 0 38%, rgba(255, 106, 0, 0.08) 48%, transparent 58%),
        radial-gradient(circle at center, transparent 52%, rgba(255, 255, 255, 0.04) 100%);
    opacity: .85;
}

.home-hero-copy {
    position: relative;
    z-index: 2;
}

.home-hero-copy .eyebrow-label {
    box-shadow: 0 14px 32px rgba(255, 106, 0, 0.18);
}

.home-hero-copy h1,
.home-hero-copy p {
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

.home-hero-visual {
    position: relative;
    z-index: 2;
    perspective: 1200px;
}

.home-hero-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 28px 62px rgba(5, 7, 11, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-hero-stage::after {
    content: "";
    position: absolute;
    inset: auto -8% -18% 22%;
    height: 34%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.24), transparent 72%);
    pointer-events: none;
}

.home-hero-stack-card {
    backdrop-filter: blur(18px);
    box-shadow:
        0 22px 44px rgba(6, 8, 11, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.home-hero-stack-card-accent {
    box-shadow:
        0 20px 52px rgba(255, 106, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-live-ribbon {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin: 24px 0 0;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(22, 24, 31, 0.96), rgba(14, 16, 21, 0.94));
    box-shadow: 0 20px 40px rgba(7, 9, 12, 0.22);
    overflow: hidden;
}

.home-live-ribbon-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.14);
    color: #ffb27a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-live-ribbon-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}

.home-live-ribbon-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    animation: homeRibbonScroll 36s linear infinite;
}

.home-live-ribbon-line:nth-child(2) {
    animation-duration: 42s;
    animation-direction: reverse;
    opacity: .72;
}

.home-live-ribbon-line span::after {
    content: "•";
    margin-left: 12px;
    color: rgba(255, 106, 0, 0.85);
}

.home-live-ribbon-line span:last-child::after {
    content: "";
    margin-left: 0;
}

@keyframes homeRibbonScroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-28%, 0, 0); }
}

.home-category-tile,
.home-product-card,
.home-model-card,
.home-benefit-card,
.catalog-seo-card,
.catalog-sidebar-card,
.product-gallery,
.product-summary,
.product-buy-card,
.product-section-card,
.secondary-content-shell,
.secondary-side-card {
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background-color .32s ease;
}

.home-category-tile:hover,
.home-product-card:hover,
.home-model-card:hover,
.home-benefit-card:hover,
.catalog-seo-card:hover,
.catalog-sidebar-card:hover,
.product-gallery:hover,
.product-summary:hover,
.product-buy-card:hover,
.product-section-card:hover,
.secondary-content-shell:hover,
.secondary-side-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 48px rgba(14, 18, 25, 0.12),
        0 12px 24px rgba(255, 106, 0, 0.08);
    border-color: rgba(255, 106, 0, 0.22);
}

.home-category-media,
.home-product-media,
.product-stage img,
.product-thumb img {
    transition: transform .45s ease, filter .45s ease;
}

.home-category-tile:hover .home-category-media,
.home-product-card:hover .home-product-media,
.product-gallery:hover .product-stage img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.catalog-intro-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.96));
}

.catalog-content-shell {
    position: relative;
    overflow: hidden;
}

.catalog-content-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.45), transparent);
    pointer-events: none;
}

.product-buy-card {
    position: sticky;
    top: 118px;
}

.product-buy-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 24%);
    pointer-events: none;
}

.product-price {
    text-shadow: 0 10px 28px rgba(255, 106, 0, 0.14);
}

.product-buy-button,
.product-buy-secondary,
.home-product-bottom .button2,
.home-cta-actions .button2,
.home-cta-actions .button3 {
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.product-buy-button:hover,
.product-buy-secondary:hover,
.home-product-bottom .button2:hover,
.home-cta-actions .button2:hover,
.home-cta-actions .button3:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22);
    filter: brightness(1.03);
}

.checkout-card,
.checkout-note-card,
.checkout-choice-table {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.96));
    box-shadow: 0 20px 44px rgba(14, 18, 25, 0.08);
}

.checkout-submit-row {
    align-items: center;
    gap: 16px;
}

.checkout-submit-row .caption {
    color: #5d6471 !important;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .home-live-ribbon-line {
        animation: none !important;
    }

    .home-category-tile,
    .home-product-card,
    .home-model-card,
    .home-benefit-card,
    .catalog-seo-card,
    .catalog-sidebar-card,
    .product-gallery,
    .product-summary,
    .product-buy-card,
    .product-section-card,
    .secondary-content-shell,
    .secondary-side-card,
    .home-category-media,
    .home-product-media,
    .product-stage img,
    .product-thumb img,
    .product-buy-button,
    .product-buy-secondary,
    .home-product-bottom .button2,
    .home-cta-actions .button2,
    .home-cta-actions .button3 {
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 1100px) {
    .home-live-ribbon {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-buy-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 860px) {
    .home-hero-shell::before,
    .home-hero-shell::after {
        opacity: .45;
    }

    .home-live-ribbon {
        margin-top: 18px;
        padding: 12px 14px;
        border-radius: 18px;
    }

    .home-live-ribbon-track {
        gap: 6px;
    }

    .home-live-ribbon-line {
        font-size: 12px;
    }

    .home-category-tile:hover,
    .home-product-card:hover,
    .home-model-card:hover,
    .home-benefit-card:hover,
    .catalog-seo-card:hover,
    .catalog-sidebar-card:hover,
    .product-gallery:hover,
    .product-summary:hover,
    .product-buy-card:hover,
    .product-section-card:hover,
    .secondary-content-shell:hover,
    .secondary-side-card:hover {
        transform: none;
    }
}

/* Final catalog refinement */
.page-main {
    padding-top: 34px !important;
}

.page-group .section-block:first-child,
.page-shop .section-block:first-child,
.page-cart .section-block:first-child,
.page-news .section-block:first-child {
    padding-top: 8px !important;
}

.catalog-layout {
    display: grid !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
}

.catalog-layout > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
}

.catalog-layout > aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.catalog-sidebar-card {
    padding: 22px !important;
}

.catalog-intro-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1.18fr) 300px !important;
    gap: 20px !important;
    padding: 24px !important;
    border-radius: 24px !important;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 27, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 242, 235, 0.98)) !important;
}

.catalog-intro-copy .section-label {
    background: rgba(255, 122, 27, 0.12) !important;
    color: var(--accent-strong) !important;
    box-shadow: inset 4px 0 0 var(--accent) !important;
}

.catalog-intro-copy h1 {
    max-width: 13ch !important;
    margin: 16px 0 0 !important;
    color: var(--ink) !important;
    font-size: clamp(34px, 3.2vw, 52px) !important;
    line-height: .98 !important;
    letter-spacing: -.04em !important;
}

.catalog-intro-copy p {
    max-width: 42rem !important;
    margin: 14px 0 0 !important;
    color: var(--muted) !important;
    font-size: 16px !important;
    line-height: 1.66 !important;
}

.catalog-intro-side {
    display: grid !important;
    gap: 14px !important;
    align-content: start !important;
}

.catalog-intro-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.catalog-intro-stat {
    padding: 16px 18px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.catalog-intro-stat strong {
    color: var(--ink) !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

.catalog-intro-stat span {
    color: var(--muted) !important;
    font-size: 13px !important;
}

.catalog-intro-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.catalog-intro-link {
    min-height: 40px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    color: var(--ink) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.catalog-seo-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 16px 0 18px !important;
}

.catalog-seo-card {
    padding: 18px 20px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.82) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06) !important;
}

.catalog-seo-card strong {
    display: block !important;
    margin: 0 0 8px !important;
    color: var(--ink) !important;
    font-size: 18px !important;
    line-height: 1.24 !important;
}

.catalog-seo-card p {
    margin: 0 !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    line-height: 1.62 !important;
}

.catalog-content-shell {
    padding: 22px !important;
}

.catalog-content-shell .shop_table {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
    grid-auto-rows: 1fr !important;
}

.catalog-content-shell .shop_table_item {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-self: stretch !important;
    border-radius: 20px !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 248, 251, 0.98)) !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08) !important;
    overflow: hidden !important;
}

.catalog-content-shell .image_row {
    min-height: 188px !important;
    aspect-ratio: 1 / 0.72 !important;
    padding: 14px 14px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.catalog-content-shell .image_cell img {
    max-height: 176px !important;
    max-width: 88% !important;
    width: auto !important;
    object-fit: contain !important;
    transform: scale(1.12);
    transform-origin: center center;
}

.catalog-content-shell .description_sell {
    flex: 1 1 auto !important;
    padding: 14px 16px 16px !important;
    gap: 8px !important;
}

.catalog-content-shell .description_sell > a:first-of-type,
.catalog-content-shell .shop_item .description_sell h2 a,
.catalog-content-shell .description_sell p a {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    font-size: 15px !important;
    line-height: 1.38 !important;
    font-weight: 800 !important;
}

.catalog-content-shell .description_sell > p:not(.price) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--muted) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.catalog-content-shell .price {
    margin-top: auto !important;
    padding-top: 4px !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
}

.catalog-content-shell .price,
.catalog-content-shell .price * {
    color: var(--ink) !important;
}

.catalog-content-shell .price a.button2,
.catalog-content-shell .price a.button2.white,
.catalog-content-shell .price a.button2.white.medium {
    min-height: 44px !important;
    padding: 0 14px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
    align-self: flex-start !important;
}

@media (max-width: 1280px) {
    .catalog-layout {
        grid-template-columns: 280px minmax(0, 1fr) !important;
    }

    .catalog-content-shell .shop_table {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 920px) {
    .page-main {
        padding-top: 22px !important;
    }

    .catalog-layout {
        grid-template-columns: 1fr !important;
    }

    .catalog-intro-panel {
        grid-template-columns: 1fr !important;
    }

    .catalog-seo-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 620px) {
    .catalog-content-shell .shop_table {
        grid-template-columns: 1fr !important;
    }

    .catalog-intro-panel,
    .catalog-content-shell,
    .catalog-sidebar-card {
        padding: 18px !important;
    }

    .catalog-intro-copy h1 {
        max-width: none !important;
        font-size: 30px !important;
    }

    .catalog-content-shell .image_row {
        min-height: 170px !important;
        aspect-ratio: 1 / 0.68 !important;
    }

    .catalog-content-shell .image_cell img {
        max-height: 154px !important;
        max-width: 84% !important;
        transform: scale(1.08);
    }
}

/* Catalog hotfix after HostCMS XSL output */
.catalog-content-shell .group_list {
    display: none !important;
}

.catalog-content-shell .table_row {
    display: none !important;
}

.catalog-content-shell form,
.catalog-content-shell .shop_block {
    margin: 0 !important;
}

.catalog-content-shell .shop_table {
    align-items: stretch !important;
}

.catalog-content-shell .shop_item {
    display: flex !important;
    height: 100% !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
}

.catalog-content-shell .shop_table_item {
    min-width: 0 !important;
    min-height: 100% !important;
}

.catalog-content-shell .image_cell,
.catalog-content-shell .image_cell > a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.catalog-content-shell .image_row {
    min-height: 156px !important;
    aspect-ratio: 1 / 0.62 !important;
    padding: 12px !important;
}

.catalog-content-shell .image_cell img {
    max-height: 148px !important;
    max-width: 78% !important;
    transform: none !important;
}

.catalog-content-shell .description_row,
.catalog-content-shell .description_sell {
    width: 100% !important;
}

.catalog-content-shell .description_sell {
    padding: 14px 16px 18px !important;
}

.catalog-content-shell .description_sell p {
    margin: 0 !important;
}

.catalog-content-shell .price {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px 12px !important;
}

.catalog-content-shell .price .compare,
.catalog-content-shell .price .favorite {
    display: none !important;
}

.catalog-content-shell .price > div {
    margin: 0 !important;
}

/* 2026-04-15 premium motion and wow pass */
@keyframes printpartsGlowShift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.78;
    }
    50% {
        transform: translate3d(1.5%, -2%, 0) scale(1.04);
        opacity: 1;
    }
}

@keyframes printpartsSheen {
    0% {
        transform: translateX(-130%) skewX(-18deg);
        opacity: 0;
    }
    20% {
        opacity: 0.26;
    }
    60% {
        opacity: 0.08;
    }
    100% {
        transform: translateX(150%) skewX(-18deg);
        opacity: 0;
    }
}

@keyframes printpartsBorderPulse {
    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(255, 132, 36, 0.14), 0 20px 44px rgba(8, 11, 17, 0.18);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(255, 132, 36, 0.28), 0 26px 54px rgba(8, 11, 17, 0.24);
    }
}

body {
    background:
        radial-gradient(circle at 14% -8%, rgba(255, 124, 26, 0.14), transparent 24%),
        radial-gradient(circle at 86% 8%, rgba(92, 134, 255, 0.08), transparent 20%),
        radial-gradient(circle at 50% 120%, rgba(255, 124, 26, 0.08), transparent 26%),
        linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 44%, #eff3f8 100%);
}

.site-header {
    background:
        linear-gradient(90deg, rgba(13, 16, 24, 0.96) 0%, rgba(20, 23, 31, 0.98) 52%, rgba(18, 18, 25, 0.96) 100%) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 20px 46px rgba(7, 11, 18, 0.28) !important;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% -30%, rgba(255, 120, 24, 0.24), transparent 34%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 28%, transparent 56%);
    opacity: 0.9;
}

.site-header .brand.brand-image {
    filter: drop-shadow(0 18px 32px rgba(255, 120, 24, 0.14));
}

.site-nav-link,
.site-nav-cta,
.site-catalog-button,
.site-search-form {
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease,
        color 0.24s ease;
}

.site-nav-link {
    position: relative;
}

.site-nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
}

.site-nav-link:hover::after,
.site-nav-link.is-active::after {
    transform: scaleX(1);
}

.site-nav-link:hover,
.site-nav-cta:hover,
.site-catalog-button:hover,
.site-search-form:hover {
    transform: translateY(-1px);
}

.home-hero-shell {
    position: relative;
    overflow: hidden;
    min-height: min(78svh, 760px);
    border-radius: 34px;
    background:
        linear-gradient(125deg, rgba(6, 10, 18, 0.98) 0%, rgba(18, 23, 35, 0.96) 42%, rgba(16, 14, 22, 0.98) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 38px 80px rgba(7, 10, 18, 0.28) !important;
}

.home-hero-shell::before,
.home-hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(36px);
    pointer-events: none;
}

.home-hero-shell::before {
    width: 440px;
    height: 440px;
    top: -110px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 122, 27, 0.42) 0%, rgba(255, 122, 27, 0.06) 55%, transparent 74%);
    animation: printpartsGlowShift 8s ease-in-out infinite;
}

.home-hero-shell::after {
    width: 380px;
    height: 380px;
    left: -120px;
    bottom: -130px;
    background: radial-gradient(circle, rgba(65, 124, 255, 0.2) 0%, rgba(65, 124, 255, 0.04) 58%, transparent 76%);
    animation: printpartsGlowShift 10s ease-in-out infinite reverse;
}

.home-hero-webgl {
    opacity: 0.34;
    mix-blend-mode: screen;
}

.home-hero-copy {
    position: relative;
    z-index: 1;
}

.home-hero-copy h1 {
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.home-hero-copy p {
    color: rgba(236, 242, 250, 0.84);
}

.home-hero-point {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
}

.home-hero-point strong {
    color: #fff;
}

.home-hero-point span {
    color: rgba(236, 242, 250, 0.72);
}

.home-hero-stage,
.home-hero-stack-card,
.home-product-card,
.catalog-seo-card,
.seo-answer-card,
.catalog-intro-panel,
.catalog-sidebar-card,
.product-summary,
.product-buy-card,
.product-section-card,
.secondary-content-shell,
.secondary-side-card,
.home-benefit-card,
.home-model-card,
.home-category-tile {
    position: relative;
    overflow: hidden;
}

.home-hero-stage::before,
.home-product-card::before,
.catalog-content-shell .shop_table_item::before,
.product-summary::before,
.product-buy-card::before,
.home-category-tile::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -35%;
    width: 42%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.26) 46%, transparent 100%);
    transform: translateX(-130%) skewX(-18deg);
    pointer-events: none;
    opacity: 0;
}

.home-hero-stage:hover::before,
.home-product-card:hover::before,
.catalog-content-shell .shop_table_item:hover::before,
.product-summary:hover::before,
.product-buy-card:hover::before,
.home-category-tile:hover::before {
    animation: printpartsSheen 1.05s ease forwards;
}

.home-hero-stage,
.home-hero-stack-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 44px rgba(5, 8, 14, 0.22);
    backdrop-filter: blur(12px);
}

.home-hero-stage-media {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 132, 36, 0.16) 0%, transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 246, 251, 0.98) 100%) !important;
}

.home-hero-stage-media img {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 22px 30px rgba(36, 44, 58, 0.18));
}

.home-hero-stage-badges span {
    border: 1px solid rgba(255, 132, 36, 0.2);
    background: rgba(255, 132, 36, 0.1);
}

.home-live-ribbon {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(13, 17, 26, 0.96) 0%, rgba(18, 22, 31, 0.98) 100%);
    box-shadow: 0 24px 52px rgba(8, 12, 18, 0.18);
}

.home-live-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 0%, transparent 20%, transparent 80%, rgba(255,255,255,0.04) 100%);
    pointer-events: none;
}

.home-live-ribbon-track {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-live-ribbon-line span {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.section-heading.marketplace-heading h2,
.catalog-intro-copy h1,
.product-summary h1 {
    text-wrap: balance;
}

.home-category-tile,
.home-product-card,
.catalog-content-shell .shop_table_item,
.home-benefit-card,
.home-model-card,
.catalog-seo-card,
.seo-answer-card,
.secondary-content-shell,
.secondary-side-card {
    box-shadow:
        0 22px 44px rgba(9, 14, 22, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.72) inset;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.home-category-tile:hover,
.home-product-card:hover,
.catalog-content-shell .shop_table_item:hover,
.home-benefit-card:hover,
.home-model-card:hover,
.catalog-seo-card:hover,
.seo-answer-card:hover,
.secondary-content-shell:hover,
.secondary-side-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 58px rgba(9, 14, 22, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.84) inset;
    border-color: rgba(255, 132, 36, 0.22);
}

.home-category-media,
.home-product-media,
.catalog-content-shell .image_row {
    position: relative;
    overflow: hidden;
}

.home-category-media::after,
.home-product-media::after,
.catalog-content-shell .image_row::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(15, 22, 35, 0.08));
    pointer-events: none;
}

.home-product-meta,
.home-category-count {
    gap: 8px;
}

.home-product-badge,
.home-product-chip,
.home-category-count {
    box-shadow: inset 0 0 0 1px rgba(255, 132, 36, 0.08);
}

.catalog-intro-panel,
.catalog-sidebar-card,
.product-buy-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 54px rgba(8, 12, 18, 0.22);
}

.catalog-intro-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 14%, rgba(255, 132, 36, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.catalog-intro-copy,
.catalog-intro-side,
.product-buy-card > *,
.product-summary > * {
    position: relative;
    z-index: 1;
}

.catalog-content-shell {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,253,0.98) 100%);
    box-shadow: 0 30px 62px rgba(9, 14, 22, 0.09);
}

.catalog-content-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.56) 0%, transparent 24%),
        radial-gradient(circle at 100% 0%, rgba(255, 132, 36, 0.06), transparent 22%);
}

.catalog-content-shell .shop_table_item {
    border-radius: 22px !important;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(246,248,252,0.98) 100%) !important;
}

.catalog-content-shell .image_row {
    min-height: 174px !important;
    background:
        radial-gradient(circle at 50% 4%, rgba(255, 132, 36, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(244,247,251,1) 100%) !important;
}

.catalog-content-shell .image_cell img {
    filter: drop-shadow(0 18px 24px rgba(37, 43, 53, 0.12));
    transition: transform 0.28s ease;
}

.catalog-content-shell .shop_table_item:hover .image_cell img {
    transform: scale(1.05);
}

.catalog-content-shell .description_sell p a,
.catalog-content-shell .description_sell > a:first-of-type,
.catalog-content-shell .shop_item .description_sell h2 a {
    transition: color 0.22s ease;
}

.catalog-content-shell .shop_table_item:hover .description_sell p a,
.catalog-content-shell .shop_table_item:hover .description_sell > a:first-of-type,
.catalog-content-shell .shop_table_item:hover .shop_item .description_sell h2 a {
    color: var(--accent) !important;
}

.product-summary,
.product-buy-card {
    backdrop-filter: blur(14px);
}

.product-summary {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,249,252,0.98) 100%);
}

.product-buy-card {
    animation: printpartsBorderPulse 5.4s ease-in-out infinite;
}

.product-buy-card .button,
.product-buy-card .button2 {
    width: 100%;
}

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 0%, rgba(255, 132, 36, 0.16), transparent 22%),
        radial-gradient(circle at 100% 100%, rgba(67, 121, 255, 0.08), transparent 22%);
    pointer-events: none;
}

@media (max-width: 1180px) {
    .home-hero-shell {
        min-height: auto;
    }

    .home-hero-copy {
        padding: 34px 28px 30px;
    }

    .home-hero-copy h1 {
        max-width: 8ch;
        font-size: clamp(42px, 7vw, 68px);
    }
}

@media (max-width: 860px) {
    .home-hero-shell::before,
    .home-hero-shell::after,
    .home-live-ribbon::before {
        display: none;
    }

    .home-category-tile:hover,
    .home-product-card:hover,
    .catalog-content-shell .shop_table_item:hover,
    .home-benefit-card:hover,
    .home-model-card:hover,
    .catalog-seo-card:hover,
    .seo-answer-card:hover,
    .secondary-content-shell:hover,
    .secondary-side-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-shell::before,
    .home-hero-shell::after,
    .product-buy-card,
    .home-hero-stage:hover::before,
    .home-product-card:hover::before,
    .catalog-content-shell .shop_table_item:hover::before,
    .product-summary:hover::before,
    .product-buy-card:hover::before,
    .home-category-tile:hover::before {
        animation: none !important;
    }
}
