: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: 12px;
    transform: translateX(-50%);
    z-index: 45;
    display: none;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;
    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: 64px;
    min-height: 52px;
    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: 10px;
    font-weight: 700;
}

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

.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;
}

/* Product page: move custom fields into HostCMS-style additional properties */
.product-summary-specs-core {
    gap: 10px;
}

.product-section-card-wide {
    grid-column: 1 / -1;
}

.product-spec-table-additional .product-spec-row {
    align-items: start;
}

.product-property-link {
    color: var(--accent-strong);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 122, 26, 0.35);
}

.product-property-link:hover {
    color: var(--accent);
    border-bottom-color: rgba(255, 122, 26, 0.72);
}

@media (max-width: 991px) {
    .product-section-card-wide {
        grid-column: auto;
    }
}

.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 {
    position: relative;
    overflow: visible;
    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;
    cursor: pointer;
}

.site-search-form.is-open,
.site-search-form:focus-within {
    border-color: rgba(255, 122, 27, 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(5, 7, 12, 0.32),
        0 0 0 1px rgba(255, 122, 27, 0.08);
}

.site-search-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 45;
    padding: 10px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(17, 21, 31, 0.98) 0%, rgba(10, 13, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 26px 60px rgba(5, 7, 12, 0.42),
        0 0 0 1px rgba(255, 122, 27, 0.08);
}

.site-search-results {
    display: grid;
    gap: 6px;
    max-height: min(62vh, 420px);
    overflow-y: auto;
    padding-right: 2px;
}

.site-search-section {
    display: grid;
    gap: 6px;
}

.site-search-section + .site-search-section {
    margin-top: 4px;
}

.site-search-section-title {
    padding: 10px 12px 4px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-search-helper {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.site-search-helper-title {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.site-search-helper-subtitle {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
}

.site-search-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-search-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.site-search-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 27, 0.26);
    background: rgba(255, 122, 27, 0.12);
}

.site-search-status,
.site-search-empty {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.55;
}

.site-search-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.site-search-item:hover,
.site-search-item.is-active {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 27, 0.26);
    background: linear-gradient(135deg, rgba(255, 122, 27, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 14px 24px rgba(7, 10, 18, 0.22);
}

.site-search-item-media {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-search-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-search-item-media.is-placeholder {
    color: var(--accent);
    font-size: 18px;
}

.site-search-item-copy {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.site-search-item-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.site-search-item-type {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.14);
    color: #ffb273;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-search-item-price {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.site-search-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.site-search-item strong mark,
.site-search-item-subtitle mark {
    padding: 0 0.18em;
    border-radius: 0.35em;
    background: rgba(255, 122, 27, 0.22);
    color: #fff;
}

.site-search-item-subtitle {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.45;
}

.site-search-item.is-query .site-search-item-type {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
}

.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-search-dropdown {
        top: calc(100% + 10px);
        padding: 8px;
        border-radius: 20px;
    }

    .site-search-item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
        border-radius: 16px;
    }

    .site-search-item-media {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .site-search-item-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .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;
    }
}
.catalog-text-block {
    margin-top: 28px;
    padding: 28px 32px;
    border-radius: 28px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95)),
        radial-gradient(circle at top right, rgba(255, 122, 26, 0.08), transparent 38%);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.catalog-text-block h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.1;
}

.catalog-text-block p {
    margin: 0;
    max-width: 76ch;
    color: rgba(15, 23, 42, 0.82);
    font-size: 1rem;
    line-height: 1.75;
}

.catalog-text-block p + p {
    margin-top: 12px;
}

@media (max-width: 991.98px) {
    .catalog-text-block {
        padding: 24px 22px;
        border-radius: 24px;
    }
}

/* HostCMS home hero refinement */
.home-hero-copy {
    display: flex;
    flex-direction: column;
}

.home-hero-copy p {
    margin-bottom: 0;
    max-width: 31rem;
    font-size: clamp(18px, 1.3vw, 21px);
    line-height: 1.58;
}

.home-hero-brand-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.home-hero-brand-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.home-hero-brand-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 132, 36, 0.42);
    background: rgba(255, 132, 36, 0.14);
    color: #fff;
}

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

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

.home-hero-point {
    min-height: 0;
    padding: 14px 16px;
    border-radius: 20px;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
}

.home-hero-point strong {
    font-size: 14px;
    line-height: 1.35;
}

.home-hero-point span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.45;
}

.home-hero-visual {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 20px;
}

.home-hero-stage,
.home-hero-stack-card {
    background:
        linear-gradient(180deg, rgba(31, 35, 46, 0.96) 0%, rgba(17, 20, 29, 0.98) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 28px 58px rgba(6, 10, 18, 0.34) !important;
}

.home-hero-stage {
    min-height: 100%;
}

.home-hero-stage:hover,
.home-hero-stack-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 132, 36, 0.22) !important;
    box-shadow: 0 34px 70px rgba(6, 10, 18, 0.42) !important;
}

.home-hero-stage-media {
    position: relative;
    min-height: 470px;
    padding: 34px;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 132, 36, 0.18), transparent 24%),
        radial-gradient(circle at 84% 86%, rgba(70, 116, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(27, 31, 42, 0.98) 0%, rgba(18, 21, 30, 0.98) 100%) !important;
}

.home-hero-stage-media::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

.home-hero-stage-media img {
    position: relative;
    z-index: 1;
    width: min(100%, 430px);
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.34));
}

.home-hero-stage-body {
    gap: 14px;
    padding: 22px 24px 26px;
}

.home-hero-stage-body strong {
    font-size: clamp(28px, 2.4vw, 42px);
    line-height: 1.06;
}

.home-hero-stage-body p {
    max-width: 28rem;
    font-size: 16px;
    line-height: 1.62;
}

.home-hero-stage-body em {
    font-size: clamp(34px, 2.5vw, 46px);
    line-height: 1;
}

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

.home-hero-stack-card {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 18px;
    min-height: 220px;
    padding: 20px;
    border-radius: 24px;
    align-items: center;
}

.home-hero-stack-card img {
    width: 124px;
    height: 124px;
    padding: 14px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.home-hero-stack-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.home-hero-stack-body strong {
    font-size: clamp(20px, 1.45vw, 30px);
    line-height: 1.14;
    -webkit-line-clamp: 4;
}

.home-hero-stack-body span {
    margin-top: 0;
    color: #fff;
    font-size: clamp(22px, 1.8vw, 30px);
    font-weight: 800;
    line-height: 1;
}

.home-hero-stack-card-accent {
    display: none !important;
}

@media (max-width: 1280px) {
    .home-hero-visual {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

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

    .home-hero-stack-card {
        grid-template-columns: 108px minmax(0, 1fr);
        min-height: 196px;
    }

    .home-hero-stack-card img {
        width: 108px;
        height: 108px;
    }
}

@media (max-width: 1080px) {
    .home-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        padding: 36px 30px 26px;
    }

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

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

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

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

@media (max-width: 860px) {
    .home-hero-brand-row {
        gap: 8px;
    }

    .home-hero-brand-chip {
        min-height: 34px;
        padding: 0 12px;
        font-size: 13px;
    }

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

    .home-hero-stage {
        margin-bottom: 16px;
    }

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

    .home-hero-stage-media::after {
        inset: 14px;
        border-radius: 22px;
    }

    .home-hero-stack {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(248px, 82vw);
        gap: 14px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        padding-bottom: 8px;
    }

    .home-hero-stack::-webkit-scrollbar {
        height: 8px;
    }

    .home-hero-stack::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.18);
    }

    .home-hero-stack-card {
        scroll-snap-align: start;
        min-height: 184px;
        grid-template-columns: 92px minmax(0, 1fr);
        padding: 16px;
    }

    .home-hero-stack-card img {
        width: 92px;
        height: 92px;
        border-radius: 18px;
        padding: 10px;
    }

    .home-hero-stack-body strong {
        font-size: 18px;
    }

    .home-hero-stack-body span {
        font-size: 20px;
    }
}

/* Home hero aligned to 3-card reference layout */
.home-hero-shell {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.25fr);
    gap: 28px;
    padding: 26px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(26, 29, 38, 0.98) 0%, rgba(16, 19, 27, 0.99) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 34px 74px rgba(6, 10, 18, 0.28) !important;
}

.home-hero-copy {
    padding: 26px 10px 10px 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-hero-copy h1 {
    max-width: 7ch;
    font-size: clamp(58px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.home-hero-copy p {
    max-width: 30rem;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.6;
}

.home-hero-brand-row {
    margin-top: 8px;
    max-width: 31rem;
}

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

.hero-actions .button,
.hero-actions .button.button-secondary {
    min-height: 54px;
    padding-inline: 24px;
    border-radius: 16px;
}

.home-hero-points {
    margin-top: 24px;
    gap: 12px;
}

.home-hero-point {
    padding: 12px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.home-hero-visual {
    display: block;
    min-width: 0;
}

.home-hero-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    min-width: 0;
}

.home-hero-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 590px;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(33, 36, 44, 0.98) 0%, rgba(22, 24, 31, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 26px 52px rgba(4, 8, 14, 0.28);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-hero-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 132, 36, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 34px 68px rgba(4, 8, 14, 0.36);
}

.home-hero-product-card.is-featured {
    min-height: 590px;
}

.home-hero-product-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 374px;
    padding: 30px 24px 18px;
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 132, 36, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(38, 41, 49, 0.98) 0%, rgba(31, 33, 40, 0.98) 100%);
}

.home-hero-product-media::after {
    content: "";
    position: absolute;
    inset: 16px 16px 0;
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    pointer-events: none;
}

.home-hero-product-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 260px;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.24));
}

.home-hero-product-media.is-featured {
    padding-top: 18px;
}

.home-hero-product-media.is-featured img {
    max-width: 100%;
    max-height: 320px;
}

.home-hero-product-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.home-hero-product-body strong {
    display: -webkit-box;
    color: #fff;
    font-size: clamp(22px, 1.8vw, 28px);
    line-height: 1.14;
    letter-spacing: -0.03em;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-hero-product-card.is-featured .home-hero-product-body strong {
    font-size: clamp(24px, 1.9vw, 30px);
}

.home-hero-product-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.58;
}

.home-hero-product-body em {
    margin-top: auto;
    color: #fff;
    font-style: normal;
    font-size: clamp(28px, 2vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

@media (max-width: 1320px) {
    .home-hero-showcase {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }

    .home-hero-product-card {
        min-height: 540px;
    }
}

@media (max-width: 1180px) {
    .home-hero-shell {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        padding: 16px 4px 0;
    }

    .home-hero-showcase {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
    }
}

@media (max-width: 860px) {
    .home-hero-shell {
        padding: 18px;
        border-radius: 28px;
    }

    .home-hero-copy h1 {
        font-size: clamp(44px, 13vw, 62px);
    }

    .home-hero-showcase {
        grid-auto-flow: column;
        grid-auto-columns: minmax(240px, 78vw);
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
    }

    .home-hero-product-card {
        min-height: 470px;
        scroll-snap-align: start;
        border-radius: 24px;
    }

    .home-hero-product-media {
        min-height: 260px;
        padding: 22px 18px 12px;
    }

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

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

    .home-hero-product-body strong {
        font-size: 18px;
    }

    .home-hero-product-body em {
        font-size: 22px;
    }
}

/* 2026-04-20 catalog brand-first navigation */
.catalog-sidebar-pills-brands {
    margin-top: 16px;
}

.catalog-brand-showcase,
.catalog-node-map {
    margin-bottom: 22px;
}

.catalog-block-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 18px;
    align-items: end;
    margin-bottom: 16px;
}

.catalog-block-head h2 {
    margin: 14px 0 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(28px, 2.7vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.catalog-block-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

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

.catalog-brand-card {
    position: relative;
    overflow: hidden;
    min-height: 248px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(255, 132, 36, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(14, 17, 24, 1) 100%);
    box-shadow: 0 24px 52px rgba(8, 12, 18, 0.18);
}

.catalog-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 100%);
    transform: translateX(-135%) skewX(-18deg);
    transition: transform .55s ease;
    pointer-events: none;
}

.catalog-brand-card:hover::before {
    transform: translateX(190%) skewX(-18deg);
}

.catalog-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(8, 12, 18, 0.24);
}

.catalog-brand-card-link {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px;
    gap: 12px;
    padding: 22px;
    color: inherit;
    text-decoration: none;
}

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

.catalog-brand-card-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-brand-card strong {
    display: block;
    color: #fff;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.catalog-brand-card p {
    margin: 0;
    color: rgba(236, 242, 250, 0.72);
    font-size: 14px;
    line-height: 1.65;
}

.catalog-brand-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.catalog-brand-card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.catalog-brand-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.catalog-brand-card-media img {
    width: 100%;
    max-width: 144px;
    max-height: 168px;
    object-fit: contain;
    filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.34));
}

.catalog-brand-card.is-creality {
    background:
        radial-gradient(circle at top right, rgba(255, 116, 51, 0.24), transparent 32%),
        linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(14, 17, 24, 1) 100%);
}

.catalog-brand-card.is-bambu {
    background:
        radial-gradient(circle at top right, rgba(255, 132, 36, 0.22), transparent 32%),
        linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(14, 17, 24, 1) 100%);
}

.catalog-brand-card.is-anycubic {
    background:
        radial-gradient(circle at top right, rgba(88, 150, 255, 0.22), transparent 32%),
        linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(14, 17, 24, 1) 100%);
}

.catalog-brand-card.is-flashforge {
    background:
        radial-gradient(circle at top right, rgba(45, 216, 175, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(14, 17, 24, 1) 100%);
}

.catalog-brand-card.is-elegoo {
    background:
        radial-gradient(circle at top right, rgba(163, 104, 255, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(24, 28, 36, 0.98) 0%, rgba(14, 17, 24, 1) 100%);
}

.catalog-node-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.catalog-node-card {
    min-height: 172px;
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    color: inherit;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.catalog-node-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 27, 0.18);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

.catalog-node-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 122, 27, 0.12);
    color: var(--accent);
    font-size: 18px;
}

.catalog-node-card strong {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.catalog-node-card span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1240px) {
    .catalog-brand-grid,
    .catalog-node-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-block-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .catalog-brand-grid,
    .catalog-node-grid {
        grid-template-columns: 1fr;
    }

    .catalog-brand-card-link {
        grid-template-columns: 1fr;
    }

    .catalog-brand-card-media {
        justify-content: flex-start;
    }

    .catalog-brand-card-media img {
        max-width: 116px;
        max-height: 132px;
    }

    .catalog-node-card {
        min-height: 0;
    }
}

/* 2026-04-20 catalog premium refinement */
.catalog-sidebar-card {
    backdrop-filter: blur(16px);
}

.catalog-intro-panel {
    position: relative;
    overflow: hidden;
    gap: 22px !important;
    padding: 30px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 122, 27, 0.18), transparent 26%),
        radial-gradient(circle at 88% 84%, rgba(255, 122, 27, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(18, 22, 29, 0.98), rgba(12, 15, 21, 1)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow:
        0 28px 64px rgba(8, 12, 18, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.catalog-intro-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        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.92), transparent 86%);
    pointer-events: none;
}

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

.catalog-intro-copy .section-label {
    background: rgba(255, 122, 27, 0.14) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 4px 0 0 var(--accent) !important;
}

.catalog-intro-copy h1 {
    max-width: 11ch !important;
    margin: 16px 0 0 !important;
    color: #fff !important;
    font-size: clamp(40px, 4vw, 68px) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.05em !important;
}

.catalog-intro-copy p {
    max-width: 43rem !important;
    margin: 18px 0 0 !important;
    color: rgba(236, 242, 250, 0.74) !important;
    font-size: 17px !important;
    line-height: 1.72 !important;
}

.catalog-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.catalog-intro-actions .button2 {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(255, 122, 27, 0.24);
}

.catalog-intro-ghost {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease;
}

.catalog-intro-ghost:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255, 122, 27, 0.14);
    border-color: rgba(255, 122, 27, 0.22);
}

.catalog-intro-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.catalog-intro-points span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
}

.catalog-intro-stats {
    gap: 14px !important;
}

.catalog-intro-stat {
    padding: 18px 20px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.catalog-intro-stat strong {
    color: #fff !important;
    font-size: clamp(28px, 2.4vw, 38px) !important;
}

.catalog-intro-stat span {
    color: rgba(255, 255, 255, 0.62) !important;
}

.catalog-intro-links {
    gap: 10px !important;
}

.catalog-intro-link {
    min-height: 42px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
}

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

.catalog-intro-spotlight {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-intro-spotlight-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.16);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-intro-spotlight strong {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.catalog-intro-spotlight p {
    margin: 10px 0 0;
    color: rgba(236, 242, 250, 0.72);
    font-size: 14px;
    line-height: 1.65;
}

.catalog-brand-showcase,
.catalog-node-map {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    margin-bottom: 20px;
    border: 1px solid rgba(18, 28, 45, 0.08);
    box-shadow:
        0 24px 52px rgba(10, 14, 22, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.catalog-brand-showcase {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 122, 27, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98));
}

.catalog-node-map {
    background:
        radial-gradient(circle at 0% 100%, rgba(255, 122, 27, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 251, 253, 0.99));
}

.catalog-block-head {
    gap: 20px;
    margin-bottom: 18px;
}

.catalog-block-head .section-label {
    background: rgba(255, 122, 27, 0.1);
    color: var(--accent-strong);
    box-shadow: inset 4px 0 0 var(--accent);
}

.catalog-brand-grid {
    gap: 18px;
}

.catalog-brand-card {
    min-height: 286px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 26px 52px rgba(8, 12, 18, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.catalog-brand-card-link {
    grid-template-columns: minmax(0, 1fr) 178px;
    gap: 18px;
    padding: 24px;
}

.catalog-brand-card strong {
    font-size: clamp(26px, 2vw, 34px);
}

.catalog-brand-card p {
    max-width: 34ch;
}

.catalog-brand-card-tags {
    margin-top: 4px;
}

.catalog-brand-card-tags span {
    background: rgba(255, 255, 255, 0.08);
}

.catalog-brand-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.catalog-brand-card-frame {
    width: 100%;
    min-height: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-brand-card-media img {
    max-width: 156px;
    max-height: 176px;
}

.catalog-node-grid {
    gap: 16px;
}

.catalog-node-card {
    min-height: 196px;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 249, 252, 0.98));
    border: 1px solid rgba(18, 28, 45, 0.08);
    box-shadow: 0 18px 36px rgba(10, 14, 22, 0.06);
}

.catalog-node-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.catalog-node-card em {
    color: var(--accent-strong);
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-node-card strong {
    font-size: 22px;
}

.catalog-node-card-cta {
    margin-top: auto;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.catalog-seo-grid {
    gap: 14px !important;
    margin: 18px 0 20px !important;
}

.catalog-seo-card {
    padding: 18px 20px !important;
    border-radius: 22px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.98)) !important;
    border: 1px solid rgba(18, 28, 45, 0.08);
}

.catalog-seo-card-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 122, 27, 0.1);
    color: var(--accent-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-seo-card strong {
    display: block;
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.26;
    letter-spacing: -0.02em;
}

.catalog-seo-card p {
    margin-top: 8px;
    color: var(--muted);
}

.catalog-content-shell {
    border-radius: 28px !important;
    padding: 28px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 249, 252, 0.99)) !important;
    border: 1px solid rgba(18, 28, 45, 0.08);
    box-shadow: 0 24px 48px rgba(10, 14, 22, 0.08);
}

.catalog-content-shell .shop_table {
    gap: 22px !important;
}

.catalog-content-shell .shop_table_item {
    border-radius: 24px !important;
    border: 1px solid rgba(18, 28, 45, 0.08) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 249, 252, 0.98)) !important;
    box-shadow: 0 20px 42px rgba(10, 14, 22, 0.08) !important;
}

.catalog-content-shell .image_row {
    min-height: 210px !important;
    padding: 22px 20px 14px !important;
    background:
        radial-gradient(circle at 50% 6%, rgba(255, 122, 27, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 247, 240, 0.96), rgba(248, 250, 252, 1)) !important;
}

.catalog-content-shell .image_cell img {
    max-height: 188px;
    object-fit: contain;
}

.catalog-content-shell .description_sell {
    padding: 18px 18px 20px !important;
    gap: 10px !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 {
    font-size: 16px !important;
    line-height: 1.42 !important;
    -webkit-line-clamp: 3 !important;
}

.catalog-content-shell .description_sell > p:not(.price) {
    -webkit-line-clamp: 3;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.catalog-content-shell .price {
    margin-top: auto;
    display: grid !important;
    gap: 12px !important;
    align-items: start !important;
    font-size: 28px !important;
    font-weight: 800;
}

.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: 46px !important;
    padding: 0 16px !important;
    justify-content: center !important;
    border-radius: 14px !important;
    font-size: 15px !important;
}

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

    .catalog-brand-grid,
    .catalog-node-grid,
    .catalog-seo-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 860px) {
    .catalog-intro-panel,
    .catalog-brand-showcase,
    .catalog-node-map,
    .catalog-content-shell {
        padding: 22px !important;
        border-radius: 24px !important;
    }

    .catalog-intro-copy h1 {
        max-width: none !important;
        font-size: clamp(34px, 10vw, 48px) !important;
    }

    .catalog-intro-actions {
        flex-direction: column;
    }

    .catalog-intro-actions .button2,
    .catalog-intro-ghost {
        width: 100%;
    }

    .catalog-brand-card-link {
        grid-template-columns: 1fr !important;
    }

    .catalog-brand-card-frame {
        min-height: 156px;
    }

    .catalog-brand-card-media {
        justify-content: flex-start !important;
    }

    .catalog-content-shell .shop_table {
        gap: 18px !important;
    }
}

@media (max-width: 620px) {
    .catalog-brand-grid,
    .catalog-node-grid,
    .catalog-seo-grid {
        grid-template-columns: 1fr !important;
    }

    .catalog-intro-points {
        gap: 8px;
    }

    .catalog-intro-points span {
        width: 100%;
        justify-content: center;
    }

    .catalog-content-shell .image_row {
        min-height: 184px !important;
    }
}

/* 2026-04-22 final live overrides for template3 cascade */
.site-search-form {
    overflow: hidden !important;
}

@media (min-width: 981px) {
    .header-wrap {
        overflow: hidden !important;
    }

    .site-nav {
        grid-template-columns: 48px 126px minmax(0, 1fr) 132px !important;
        gap: 12px !important;
        max-width: 100% !important;
    }

    .site-search-form {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .site-header-actions {
        min-width: 0 !important;
        max-width: 132px !important;
    }

    .site-nav-cta {
        max-width: 132px !important;
    }
}

.page-item .product-top.row,
.page-item .product-sections.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 24px !important;
}

.page-item .product-sections.row {
    margin-top: 24px !important;
    align-items: flex-start !important;
}

.page-item .product-top.row > [class*="col-"],
.page-item .product-sections.row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card,
.page-item .product-section-card {
    border-radius: 22px !important;
    height: auto !important;
    min-height: 0 !important;
}

.page-item .product-gallery {
    padding: 16px !important;
}

.page-item .product-summary {
    padding: 18px !important;
    gap: 12px !important;
}

.page-item .product-summary h1 {
    font-size: clamp(22px, 1.9vw, 30px) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.025em !important;
}

.page-item .product-summary-lead {
    font-size: 14px !important;
    line-height: 1.58 !important;
}

.page-item .product-buy-card {
    padding: 16px !important;
}

.page-item .product-price {
    font-size: clamp(24px, 2vw, 34px) !important;
    line-height: 1.02 !important;
}

.page-item .product-buy-button,
.page-item .product-buy-secondary {
    min-height: 46px !important;
}

.page-item .product-buy-info div {
    min-height: 42px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.page-item .product-stage {
    min-height: 430px !important;
    border-radius: 18px !important;
}

.page-item .product-stage img {
    max-height: 400px !important;
}

.page-item .product-section-card {
    padding: 18px !important;
    border-radius: 20px !important;
}

.page-item .product-section-card h2 {
    margin-bottom: 14px !important;
    font-size: clamp(20px, 1.7vw, 26px) !important;
    line-height: 1.12 !important;
}

.page-item .product-section-card p,
.page-item .product-section-card li,
.page-item .product-section-card td,
.page-item .product-section-card th {
    font-size: 14px !important;
    line-height: 1.62 !important;
}

@media (min-width: 1200px) {
    .page-item .product-top.row > .product-gallery.col-xl-4 {
        flex: 0 0 calc((100% - 48px) * 0.31) !important;
        max-width: calc((100% - 48px) * 0.31) !important;
    }

    .page-item .product-top.row > .product-summary.col-xl-5 {
        flex: 0 0 calc((100% - 48px) * 0.45) !important;
        max-width: calc((100% - 48px) * 0.45) !important;
    }

    .page-item .product-top.row > .product-buy-card.col-xl-3 {
        flex: 0 0 calc((100% - 48px) * 0.24) !important;
        max-width: calc((100% - 48px) * 0.24) !important;
    }

    .page-item .product-sections.row > .product-section-card.col-xl-7 {
        flex: 0 0 calc((100% - 24px) * 0.60) !important;
        max-width: calc((100% - 24px) * 0.60) !important;
    }

    .page-item .product-sections.row > .product-section-card.col-xl-5 {
        flex: 0 0 calc((100% - 24px) * 0.40) !important;
        max-width: calc((100% - 24px) * 0.40) !important;
    }
}

@media (max-width: 1199.98px) {
    .page-item .product-top.row,
    .page-item .product-sections.row {
        gap: 18px !important;
    }
}


/* 2026-04-22 live polish v3 */
.site-search-form,
.site-search-form *,
.site-nav-cta,
.site-header-actions,
.site-catalog-button,
.site-menu-toggle {
    box-sizing: border-box !important;
}

.site-search-form {
    overflow: hidden !important;
}

@media (min-width: 981px) {
    .header-wrap {
        overflow: hidden !important;
    }

    .site-nav {
        grid-template-columns: 48px 126px minmax(0, 1fr) 124px !important;
        gap: 14px !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .site-search-form {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 10px !important;
    }

    .site-search-form button {
        flex: 0 0 auto !important;
        min-width: 96px !important;
        padding: 0 18px !important;
    }

    .site-header-actions {
        width: 124px !important;
        min-width: 124px !important;
        max-width: 124px !important;
    }

    .site-nav-cta {
        width: 124px !important;
        min-width: 124px !important;
        max-width: 124px !important;
        justify-content: center !important;
    }
}

.page-item .product-top.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    column-gap: 24px !important;
    row-gap: 24px !important;
    align-items: flex-start !important;
}

.page-item .product-sections.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    column-gap: 24px !important;
    row-gap: 24px !important;
    margin-top: 32px !important;
    align-items: flex-start !important;
}

.page-item .product-top.row > [class*="col-"],
.page-item .product-sections.row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card,
.page-item .product-section-card {
    height: auto !important;
    min-height: 0 !important;
    border-radius: 22px !important;
}

.page-item .product-summary {
    padding: 20px !important;
    gap: 14px !important;
}

.page-item .product-summary h1 {
    font-size: clamp(24px, 2vw, 34px) !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
}

.page-item .product-summary-lead {
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.page-item .product-buy-card {
    padding: 18px !important;
    align-self: flex-start !important;
}

.page-item .product-section-card {
    padding: 22px !important;
}

.page-item .product-section-card h2 {
    margin-bottom: 16px !important;
    font-size: clamp(22px, 1.8vw, 28px) !important;
    line-height: 1.12 !important;
}

.page-item .product-section-card.col-xl-5 {
    align-self: flex-start !important;
}

@media (min-width: 1200px) {
    .page-item .product-top.row > .product-gallery.col-xl-4 {
        flex: 0 0 calc((100% - 48px) * 0.31) !important;
        max-width: calc((100% - 48px) * 0.31) !important;
    }

    .page-item .product-top.row > .product-summary.col-xl-5 {
        flex: 0 0 calc((100% - 48px) * 0.45) !important;
        max-width: calc((100% - 48px) * 0.45) !important;
    }

    .page-item .product-top.row > .product-buy-card.col-xl-3 {
        flex: 0 0 calc((100% - 48px) * 0.24) !important;
        max-width: calc((100% - 48px) * 0.24) !important;
    }

    .page-item .product-sections.row > .product-section-card.col-xl-7 {
        flex: 0 0 calc((100% - 24px) * 0.60) !important;
        max-width: calc((100% - 24px) * 0.60) !important;
    }

    .page-item .product-sections.row > .product-section-card.col-xl-5 {
        flex: 0 0 calc((100% - 24px) * 0.40) !important;
        max-width: calc((100% - 24px) * 0.40) !important;
    }
}

/* 2026 storefront polish */
:root {
    --pp-surface-0: #0d1016;
    --pp-surface-1: #141820;
    --pp-surface-2: #1b2029;
    --pp-surface-3: #232935;
    --pp-line-soft: rgba(255, 255, 255, 0.08);
    --pp-line-strong: rgba(255, 255, 255, 0.14);
    --pp-text-main: #f6f7fb;
    --pp-text-muted: rgba(234, 239, 247, 0.72);
    --pp-text-soft: rgba(214, 220, 229, 0.56);
    --pp-orange: #ff7a1a;
    --pp-orange-soft: rgba(255, 122, 26, 0.14);
    --pp-panel-shadow: 0 28px 72px rgba(3, 7, 14, 0.34);
}

body {
    background:
        radial-gradient(circle at top, rgba(255, 122, 26, 0.06), transparent 22%),
        linear-gradient(180deg, #f6f1ea 0%, #eef2f7 100%);
}

.site-header {
    top: 10px;
    width: min(1380px, calc(100% - 24px));
    margin: 0 auto;
    border-radius: 22px;
    background: rgba(20, 24, 32, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(6, 10, 16, 0.18);
}

.site-header::after {
    background: linear-gradient(90deg, transparent, rgba(255, 122, 26, 0.24), transparent);
    opacity: 0.8;
}

.header-wrap {
    min-height: 72px;
    gap: 20px;
    padding: 12px 22px;
}

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

.site-nav-link,
.site-nav-cta {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.82);
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.site-nav-cta:hover,
.site-nav-cta.is-active {
    color: #fff;
    border-color: rgba(255, 122, 26, 0.26);
    background: rgba(255, 122, 26, 0.14);
    box-shadow: 0 14px 32px rgba(255, 122, 26, 0.16);
    transform: translateY(-1px);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 122, 26, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(18, 22, 31, 0.98) 0%, rgba(11, 14, 20, 0.99) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 120px 100%,
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 100% 120px;
    opacity: 0.18;
    pointer-events: none;
}

.footer-grid,
.footer-bottom-row {
    position: relative;
    z-index: 1;
}

.footer-grid {
    gap: 24px;
}

.footer-brand-actions a,
.footer-cta-links .button-secondary {
    min-height: 46px;
    border-radius: 14px;
}

.section-block {
    position: relative;
}

.home-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 124px 100%,
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 100% 124px,
        radial-gradient(circle at 18% 18%, rgba(255, 122, 26, 0.14), transparent 28%),
        radial-gradient(circle at 84% 82%, rgba(255, 122, 26, 0.08), transparent 20%);
    opacity: 0.85;
    pointer-events: none;
}

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

.home-hero-copy p,
.marketplace-heading p,
.home-category-body p,
.home-product-body p,
.product-summary-lead,
.news-card p,
.news-article-lead,
.checkout-note-card p {
    color: var(--pp-text-muted);
}

.home-hero-brand-chip {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.home-hero-brand-chip:hover {
    border-color: rgba(255, 122, 26, 0.24);
    background: rgba(255, 122, 26, 0.1);
}

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

.home-hero-point {
    min-height: 92px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.home-hero-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 122, 26, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff9c52;
}

.home-hero-product-card,
.home-category-tile,
.home-product-card,
.product-summary,
.product-buy-card,
.news-card,
.news-article-card,
.checkout-card,
.checkout-note-card,
.checkout-choice-table {
    border-color: var(--pp-line-soft) !important;
    box-shadow: var(--pp-panel-shadow);
}

.home-category-tile,
.home-product-card,
.product-summary,
.product-buy-card,
.news-card,
.news-article-card,
.checkout-card,
.checkout-note-card,
.checkout-choice-table {
    background:
        linear-gradient(180deg, rgba(28, 32, 40, 0.98) 0%, rgba(18, 21, 29, 0.98) 100%) !important;
}

.home-category-tile:hover,
.home-product-card:hover {
    border-color: rgba(255, 122, 26, 0.22) !important;
    box-shadow: 0 34px 80px rgba(4, 8, 15, 0.38);
}

.home-category-media,
.home-product-media,
.product-stage {
    min-height: 280px;
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 122, 26, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(34, 38, 47, 0.98) 0%, rgba(25, 28, 36, 0.98) 100%) !important;
}

.home-category-media.is-cover,
.home-product-media.is-cover {
    background-size: contain, cover;
    background-position: center, center;
}

.home-category-body,
.home-product-body {
    padding: 22px 22px 24px;
}

.home-category-body strong,
.home-product-body h3,
.home-product-body h3 a {
    color: var(--pp-text-main);
    letter-spacing: -0.03em;
}

.home-product-price {
    font-size: clamp(28px, 2vw, 38px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.home-product-card .button2 {
    min-height: 44px;
    padding-inline: 18px;
    border-radius: 14px;
}

.product-top {
    gap: 22px;
    align-items: start;
}

.product-summary h1 {
    font-size: clamp(34px, 3vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.product-summary-spec {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.product-buy-card {
    position: sticky;
    top: 108px;
}

.product-buy-button,
.product-buy-secondary,
.checkout-submit-row .button,
.checkout-submit-row input.button,
.checkout-submit-row input[type="submit"].button {
    min-height: 54px;
    border-radius: 16px;
}

.product-section-card {
    background: linear-gradient(180deg, rgba(24, 29, 37, 0.98), rgba(15, 18, 25, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(4, 8, 14, 0.26);
}

.news-page-block .container.wrap {
    max-width: 1320px;
}

.news-article-card {
    padding: clamp(24px, 3vw, 42px);
    border-radius: 30px;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

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

.news-article-card h1 {
    max-width: 18ch;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.news-article-lead {
    max-width: 80ch;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 122, 26, 0.12);
    background: rgba(255, 122, 26, 0.08);
    font-size: 17px;
    line-height: 1.7;
}

.news-article-body {
    max-width: 860px;
    margin-top: 26px;
    color: rgba(241, 245, 250, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.news-article-body h2,
.news-article-body h3 {
    margin-top: 1.7em;
    margin-bottom: 0.55em;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.news-article-body h2 {
    font-size: clamp(26px, 2.6vw, 40px);
}

.news-article-body h3 {
    font-size: clamp(22px, 2vw, 30px);
}

.news-article-body p,
.news-article-body ul,
.news-article-body ol,
.news-article-body blockquote {
    margin-bottom: 1.1em;
}

.news-article-body ul,
.news-article-body ol {
    padding-left: 1.4em;
}

.news-article-body li + li {
    margin-top: 0.45em;
}

.news-article-body a {
    color: #ffb070;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.news-article-body blockquote {
    padding: 18px 22px;
    border-radius: 22px;
    border-left: 3px solid var(--pp-orange);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
}

.news-article-body img {
    display: block;
    width: 100%;
    max-width: 860px;
    height: auto;
    margin: 26px 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
    background: #151922;
}

.news-grid-expanded .news-card-large {
    min-height: 100%;
    padding: 28px;
    border-radius: 26px;
}

.news-card h3 {
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
}

.page-cart .secondary-content-shell,
.page-cart .secondary-side-card {
    background:
        linear-gradient(180deg, rgba(25, 30, 39, 0.98) 0%, rgba(16, 19, 27, 0.98) 100%) !important;
}

.checkout-card,
.checkout-note-card,
.checkout-choice-table {
    backdrop-filter: blur(8px);
}

.checkout-delivery-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.checkout-delivery-option:hover .checkout-delivery-card,
.checkout-delivery-option input[type="radio"]:checked + .checkout-delivery-card {
    border-color: rgba(255, 122, 26, 0.24);
    background: rgba(255, 122, 26, 0.08);
    box-shadow: 0 18px 38px rgba(255, 122, 26, 0.12);
}

.checkout-delivery-price,
.checkout-delivery-total strong,
.checkout-payment-summary strong {
    color: #fff;
}

@media (max-width: 1180px) {
    .product-buy-card {
        position: static;
    }
}

@media (max-width: 860px) {
    body {
        padding-bottom: 104px;
    }

    .site-header {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: 18px;
    }

    .header-wrap {
        min-height: 64px;
        padding: 10px 14px;
    }

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

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

    .hero-actions {
        margin-top: 16px;
        gap: 10px;
    }

    .hero-actions .button,
    .hero-actions .button.button-secondary {
        min-height: 50px;
        width: 100%;
        justify-content: center;
    }

    .home-hero-showcase {
        gap: 12px;
        grid-auto-columns: minmax(220px, 74vw);
    }

.home-hero-product-card {
        min-height: 410px;
        border-radius: 22px;
    }

    .home-hero-product-media {
        min-height: 208px;
        padding: 18px 16px 10px;
    }

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

    .home-hero-product-body {
        gap: 8px;
        padding: 14px 14px 16px;
    }

    .home-hero-product-body strong {
        font-size: 16px;
        line-height: 1.18;
    }

    .home-hero-product-body p {
        font-size: 13px;
        line-height: 1.45;
    }

    .home-hero-product-body em {
        font-size: 20px;
    }

    .home-hero-point {
        min-height: 58px;
        padding: 10px;
        border-radius: 14px;
    }

    .home-hero-point i {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .home-hero-point strong {
        font-size: 12px;
        line-height: 1.25;
    }

    .home-hero-point span {
        display: none;
    }

    .home-category-media,
    .home-product-media,
    .product-stage {
        min-height: 220px;
    }

    .home-category-body,
    .home-product-body {
        padding: 18px;
    }

    .news-article-card {
        padding: 18px;
        border-radius: 24px;
    }

    .news-article-card h1 {
        max-width: none;
        font-size: clamp(30px, 10vw, 42px);
    }

    .news-article-body {
        font-size: 16px;
        line-height: 1.72;
    }

    .product-summary h1 {
        font-size: clamp(28px, 8vw, 36px);
    }
}

/* 2026-04-21 convenience pass: mobile drawer + live page readability */
.site-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(213, 198, 181, 0.92);
    border-radius: 14px;
    background: rgba(255, 250, 243, 0.94);
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(41, 28, 16, 0.12);
    cursor: pointer;
}

.site-menu-toggle i {
    font-size: 15px;
}

.mobile-drawer[hidden] {
    display: none !important;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(6, 10, 16, 0.58);
    backdrop-filter: blur(10px);
}

.mobile-drawer-panel {
    position: relative;
    width: min(92vw, 420px);
    max-width: 100%;
    height: 100%;
    padding: 18px 18px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 26, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(22, 26, 34, 0.98) 0%, rgba(11, 14, 20, 0.99) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    transform: translateX(-104%);
    transition: transform .24s ease;
}

.mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mobile-drawer-head strong {
    color: #fff;
    font-size: 20px;
    line-height: 1.1;
}

.mobile-drawer-close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
}

.mobile-drawer-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mobile-drawer-group {
    display: grid;
    gap: 12px;
}

.mobile-drawer-group > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-drawer-links,
.mobile-drawer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mobile-drawer-links a,
.mobile-drawer-pills a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    line-height: 1.35;
}

.mobile-drawer-links a {
    width: 100%;
}

body.drawer-open {
    overflow: hidden;
}

.page-group .catalog-intro-panel,
.page-group .catalog-sidebar-card,
.page-group .catalog-content-shell,
.page-item .product-summary,
.page-item .product-buy-card,
.page-cart .secondary-content-shell,
.page-cart .secondary-side-card,
.page-cart .secondary-helper-panel {
    background:
        radial-gradient(circle at top left, rgba(255, 122, 26, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(24, 29, 37, 0.98) 0%, rgba(12, 15, 21, 0.99) 100%) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 26px 62px rgba(4, 8, 15, 0.26) !important;
    color: #eef2f7 !important;
}

.page-group .catalog-intro-panel h1,
.page-group .catalog-sidebar-title,
.page-item .product-summary h1,
.page-item .product-price,
.page-cart .secondary-content-shell > h1,
.page-cart .secondary-helper-panel h2,
.page-cart .secondary-side-card .catalog-sidebar-title {
    color: #fff !important;
}

.page-group .catalog-intro-panel p,
.page-group .catalog-sidebar-card p,
.page-item .product-summary p,
.page-item .product-summary-lead,
.page-item .product-summary-spec span,
.page-cart .secondary-content-shell > p,
.page-cart .secondary-side-card p,
.page-cart .secondary-helper-panel p {
    color: rgba(238, 242, 247, 0.76) !important;
}

.page-item .product-meta-badge,
.page-item .product-meta-note,
.page-item .product-rating-row span,
.page-group .catalog-sidebar-label,
.page-cart .catalog-sidebar-label,
.page-cart .section-label {
    background: rgba(255, 122, 26, 0.14) !important;
    color: #ffd0ad !important;
    box-shadow: inset 4px 0 0 var(--pp-orange, #ff7a1a);
}

.page-item .product-summary-spec,
.page-item .product-buy-note,
.page-item .product-delivery-summary,
.page-cart .shop_address > .row,
.page-cart .checkout-card,
.page-cart .checkout-note-card,
.page-cart .checkout-choice-table {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #eef2f7 !important;
}

.page-item .product-summary-spec strong,
.page-item .product-delivery-row strong,
.page-item .product-buy-info strong,
.page-cart .checkout-payment-summary strong,
.page-cart .checkout-delivery-total strong,
.page-cart .checkout-delivery-price {
    color: #fff !important;
}

.page-item .product-buy-note,
.page-item .product-delivery-row span,
.page-item .product-buy-info span,
.page-cart .shop_address .caption,
.page-cart .checkout-note-card,
.page-cart .checkout-payment-summary,
.page-cart .checkout-delivery-summary {
    color: rgba(238, 242, 247, 0.76) !important;
}

.page-item .product-section-card h2,
.page-item .product-section-card h3,
.page-item .product-section-card strong {
    color: #fff !important;
}

.page-item .product-section-card p,
.page-item .product-section-card li,
.page-item .product-section-card span,
.page-item .product-description-html,
.page-item .product-spec-table {
    color: rgba(238, 242, 247, 0.78) !important;
}

.page-item .product-spec-row {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.page-item .product-property-link,
.page-item .product-description-html a {
    color: #ffbb82 !important;
}

.page-item .product-buy-card .product-qty-button,
.page-item .product-buy-card .product-qty-input,
.page-cart .shop_cart input[type="number"],
.page-cart .shop_cart input[type="text"],
.page-cart .shop_cart select,
.page-cart .shop_coupon input[type="text"],
.page-cart .delivery-time input[type="text"],
.page-cart .shop_address input[type="text"],
.page-cart .shop_address input[type="email"],
.page-cart .shop_address textarea,
.page-cart .shop_address select {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.page-cart .shop_address input::placeholder,
.page-cart .shop_address textarea::placeholder,
.page-cart .shop_coupon input::placeholder,
.page-cart .delivery-time input::placeholder {
    color: rgba(238, 242, 247, 0.42) !important;
}

.page-cart .shop_navigation li {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(238, 242, 247, 0.82) !important;
}

.page-cart .shop_navigation li a,
.page-cart .shop_navigation li span {
    color: inherit !important;
}

.page-cart .shop_navigation_current {
    background: linear-gradient(135deg, rgba(255, 122, 26, 0.94) 0%, rgba(211, 74, 45, 0.96) 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.page-cart .shop_cart,
.page-cart .shop_cart td,
.page-cart .shop_cart th,
.page-cart .shop_cart tr {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #eef2f7 !important;
}

.page-cart .shop_cart th {
    color: rgba(238, 242, 247, 0.56) !important;
}

.page-cart .shop_cart td a {
    color: #fff !important;
    text-decoration: none;
}

.page-cart .shop_cart tr.total td {
    color: #fff !important;
    font-weight: 800;
}

.page-cart label:has(input[name="shop_delivery_condition_id"]),
.page-cart label:has(input[name="shop_payment_system_id"]) {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: #eef2f7 !important;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.page-cart label:has(input[name="shop_delivery_condition_id"]:checked),
.page-cart label:has(input[name="shop_payment_system_id"]:checked) {
    border-color: rgba(255, 122, 26, 0.3);
    background: rgba(255, 122, 26, 0.1);
    box-shadow: 0 18px 36px rgba(255, 122, 26, 0.12);
}

.page-cart input[name="shop_delivery_condition_id"],
.page-cart input[name="shop_payment_system_id"] {
    accent-color: #ff7a1a;
}

.catalog-content-shell .shop_table {
    gap: 18px !important;
}

.catalog-content-shell .shop_item {
    height: 100%;
}

.catalog-content-shell .shop_table_item {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(255, 122, 26, 0.07), transparent 26%),
        linear-gradient(180deg, rgba(26, 31, 39, 0.98) 0%, rgba(14, 17, 24, 0.99) 100%);
    box-shadow: 0 20px 42px rgba(4, 8, 15, 0.18);
}

.catalog-content-shell .image_row {
    margin-bottom: 14px;
}

.catalog-content-shell .image_cell {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.catalog-content-shell .image_cell img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
}

.catalog-content-shell .description_row,
.catalog-content-shell .description_sell {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.catalog-content-shell .description_sell p {
    margin: 0 0 14px;
}

.catalog-content-shell .description_sell p a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.34;
    text-decoration: none;
}

.catalog-content-shell .description_sell .price {
    margin-top: auto;
    color: #fff;
    font-size: clamp(26px, 2vw, 34px);
    font-weight: 800;
    line-height: 1.05;
}

.catalog-content-shell .description_sell .price .button2 {
    min-height: 44px;
    border-radius: 14px;
}

.catalog-sidebar-card .catalog-sidebar-link,
.secondary-side-card .catalog-sidebar-link {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.catalog-sidebar-card .catalog-sidebar-pill {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #eef2f7 !important;
}

@media (max-width: 860px) {
    body {
        padding-bottom: 0 !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .mobile-dock {
        display: none !important;
    }

    .site-menu-toggle {
        display: inline-flex;
    }

    .header-wrap {
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "brand actions"
            "nav nav";
        align-items: center;
        gap: 12px !important;
    }

    .brand.brand-image {
        grid-area: brand;
        width: min(46vw, 180px) !important;
    }

    .site-nav {
        grid-area: nav;
        display: grid !important;
        grid-template-columns: 46px minmax(0, 1fr) auto;
        grid-template-areas:
            "menu search search"
            "actions actions actions";
        align-items: center;
        gap: 10px !important;
        width: 100%;
    }

    .site-catalog-button {
        display: none !important;
    }

    .site-menu-toggle {
        grid-area: menu;
        width: 46px;
        min-width: 46px;
        padding: 0;
    }

    .site-menu-toggle span {
        display: none;
    }

    .site-search-form {
        grid-area: search;
        width: 100%;
        min-width: 0;
    }

    .site-header-actions {
        grid-area: actions;
        width: 100%;
        justify-content: flex-end !important;
    }

    .site-nav-cta {
        min-height: 46px !important;
    }

    .page-group .catalog-intro-panel,
    .page-group .catalog-sidebar-card,
    .page-group .catalog-content-shell,
    .page-item .product-summary,
    .page-item .product-buy-card,
    .page-cart .secondary-content-shell,
    .page-cart .secondary-side-card,
    .page-cart .secondary-helper-panel {
        border-radius: 20px !important;
    }

    .catalog-content-shell .shop_table {
        grid-template-columns: 1fr !important;
    }

    .catalog-content-shell .shop_table_item {
        padding: 14px;
        border-radius: 18px;
    }

    .catalog-content-shell .image_cell {
        min-height: 220px;
        padding: 14px;
    }

    .catalog-content-shell .image_cell img {
        max-height: 190px;
    }

    .catalog-content-shell .description_sell p a {
        font-size: 17px;
    }

    .page-item .product-gallery {
        grid-template-columns: 1fr !important;
    }

    .page-item .product-thumbs {
        order: 1;
        display: flex !important;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .page-item .product-thumb {
        flex: 0 0 auto;
        width: 62px !important;
        min-width: 62px !important;
        padding: 6px !important;
        border-radius: 12px !important;
    }

    .page-item .product-stage {
        order: 2;
        min-height: 220px !important;
    }

    .page-item .product-stage img {
        max-height: 260px !important;
        width: auto !important;
        object-fit: contain;
    }

    .page-item .product-summary h1,
    .page-cart .secondary-content-shell > h1 {
        font-size: clamp(28px, 8vw, 36px) !important;
    }

    .page-cart .shop_navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .page-cart .shop_cart {
        display: block;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-cart .shop_cart,
    .page-cart .shop_cart tbody,
    .page-cart .shop_cart tr,
    .page-cart .shop_cart td {
        display: block;
        width: 100% !important;
    }

    .page-cart .shop_cart tr:first-child {
        display: none;
    }

    .page-cart .shop_cart tr {
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .page-cart .shop_cart td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 8px 0;
        text-align: left !important;
    }

    .page-cart .shop_cart tr:not(.total) td:first-child {
        display: block;
        padding-bottom: 12px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(2)::before {
        content: "Количество";
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(3)::before {
        content: "Цена";
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(4)::before {
        content: "Сумма";
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(5)::before {
        content: "Склад";
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(6)::before {
        content: "Отложить";
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(7)::before {
        content: "Действия";
    }

    .page-cart .shop_cart tr:not(.total) td:nth-child(n + 2)::before {
        color: rgba(238, 242, 247, 0.52);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .page-cart .shop_cart tr.total td {
        font-size: 15px;
        font-weight: 700;
    }

    .page-cart .shop_cart tr.total td:nth-child(n + 3):empty,
    .page-cart .shop_cart tr.total td:nth-child(3),
    .page-cart .shop_cart tr.total td:nth-child(5),
    .page-cart .shop_cart tr.total td:nth-child(6),
    .page-cart .shop_cart tr.total td:nth-child(7) {
        display: none;
    }
}

/* storefront hotfix: restore product/category media and readable card content */
.home-category-media,
.home-product-media,
.product-stage {
    background-color: #1b2029 !important;
    background-repeat: no-repeat;
}

.home-category-media.is-cover,
.home-product-media.is-cover {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
        var(--card-image) !important;
    background-size: auto, contain !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat !important;
}

.home-category-media:not(.is-cover),
.home-product-media:not(.is-cover),
.product-stage:not(.is-cover) {
    background-image:
        radial-gradient(circle at 50% 10%, rgba(255, 122, 26, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(34, 38, 47, 0.98) 0%, rgba(25, 28, 36, 0.98) 100%) !important;
}

.home-category-tile,
.home-product-card {
    background:
        linear-gradient(180deg, rgba(32, 36, 45, 0.96) 0%, rgba(19, 22, 29, 0.98) 100%) !important;
}

.home-category-body strong,
.home-product-body h3,
.home-product-body h3 a,
.home-product-price {
    color: #ffffff !important;
}

.home-category-body p,
.home-product-body p {
    color: rgba(255, 255, 255, 0.76) !important;
}

.home-category-link,
.home-product-card .button2 {
    color: #fff !important;
}

/* storefront refinement: balanced desktop header + hero */
.page-home .container.wrap {
    max-width: 1460px;
}

.page-home .page-main {
    padding-top: 22px !important;
}

.page-home .section-block:first-child {
    padding-top: 14px !important;
}

.site-header {
    width: min(1460px, calc(100% - 32px));
    border-radius: 24px;
}

.header-wrap {
    min-height: 64px;
    gap: 16px;
    padding: 10px 18px;
}

.site-nav-link,
.site-nav-cta {
    min-height: 40px;
    padding: 0 14px;
}

.home-hero-shell {
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.12fr);
    gap: 30px;
    padding: 24px 28px 28px;
}

.home-hero-copy {
    padding: 20px 2px 8px 0;
}

.home-hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(52px, 5vw, 74px);
    line-height: 0.94;
}

.home-hero-copy p {
    max-width: 31rem;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
}

.home-hero-brand-row {
    margin-top: 12px;
    max-width: 32rem;
}

.hero-actions {
    margin-top: 20px;
    gap: 12px;
}

.hero-actions .button,
.hero-actions .button.button-secondary {
    min-height: 52px;
    padding-inline: 22px;
}

.home-hero-points {
    margin-top: 18px;
    gap: 12px;
}

.home-hero-point {
    min-height: 76px;
    padding: 12px 14px;
    border-radius: 16px;
}

.home-hero-point i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.home-hero-point strong {
    font-size: 14px;
}

.home-hero-point span {
    font-size: 12px;
    line-height: 1.4;
}

.home-hero-showcase {
    gap: 18px;
    align-items: stretch;
}

.home-hero-product-card {
    min-height: 560px;
    border-radius: 26px;
}

.home-hero-product-card.is-featured {
    min-height: 560px;
}

.home-hero-product-media {
    min-height: 314px;
    padding: 22px 20px 14px;
}

.home-hero-product-media::after {
    inset: 14px 14px 0;
    border-radius: 20px 20px 0 0;
}

.home-hero-product-media img {
    max-width: 236px;
    max-height: 248px;
}

.home-hero-product-media.is-featured img {
    max-height: 264px;
}

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

.home-hero-product-badges span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 10px;
}

.home-hero-product-body strong {
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.12;
    -webkit-line-clamp: 3;
}

.home-hero-product-card.is-featured .home-hero-product-body strong {
    font-size: clamp(19px, 1.55vw, 24px);
}

.home-hero-product-body p {
    display: -webkit-box;
    font-size: 14px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-hero-product-body em {
    font-size: clamp(24px, 1.7vw, 32px);
}

/* final refinement: calmer, more symmetric product page + search */
.site-header {
    box-shadow: 0 12px 28px rgba(7, 11, 18, 0.18) !important;
}

.site-header::before {
    opacity: 0.42 !important;
}

.site-header::after {
    height: 2px !important;
    opacity: 0.72 !important;
}

.header-wrap {
    gap: 18px !important;
}

.site-nav-link,
.site-nav-cta,
.site-catalog-button,
.site-search-form,
.site-search-chip,
.site-search-item {
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease !important;
}

.site-nav-link:hover,
.site-nav-cta:hover,
.site-catalog-button:hover,
.site-search-form:hover,
.site-search-chip:hover,
.site-search-item:hover,
.site-search-item.is-active {
    transform: none !important;
}

.site-search-form.is-open,
.site-search-form:focus-within {
    border-color: rgba(255, 122, 27, 0.24) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 12px 28px rgba(5, 7, 12, 0.18),
        0 0 0 1px rgba(255, 122, 27, 0.06) !important;
}

.site-search-dropdown {
    top: calc(100% + 8px) !important;
    padding: 8px !important;
    border-radius: 20px !important;
    background: linear-gradient(180deg, rgba(19, 22, 30, 0.98) 0%, rgba(13, 15, 21, 0.98) 100%) !important;
    box-shadow:
        0 18px 38px rgba(5, 7, 12, 0.24),
        0 0 0 1px rgba(255, 122, 27, 0.06) !important;
}

.site-search-results {
    gap: 4px !important;
    max-height: min(52vh, 360px) !important;
}

.site-search-section-title {
    padding: 10px 12px 2px !important;
}

.site-search-helper {
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.025) !important;
}

.site-search-helper-subtitle {
    font-size: 12px !important;
    line-height: 1.45 !important;
}

.site-search-chip-row {
    gap: 6px !important;
}

.site-search-chip {
    min-height: 32px !important;
    padding: 0 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.site-search-chip:hover {
    border-color: rgba(255, 122, 27, 0.18) !important;
    background: rgba(255, 122, 27, 0.08) !important;
}

.site-search-item {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.site-search-item:hover,
.site-search-item.is-active {
    border-color: rgba(255, 122, 27, 0.18) !important;
    background: rgba(255, 122, 27, 0.08) !important;
    box-shadow: none !important;
}

.site-search-item-media {
    width: 46px !important;
    height: 46px !important;
    border-radius: 12px !important;
}

.site-search-item-topline {
    gap: 8px !important;
}

.site-search-item-type {
    min-height: 20px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
}

.site-search-item strong {
    font-size: 14px !important;
    line-height: 1.3 !important;
}

.site-search-item-subtitle,
.site-search-item-price {
    font-size: 12px !important;
}

.page-item .product-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr) minmax(320px, 0.72fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card {
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 16px 32px rgba(8, 12, 18, 0.14) !important;
}

.page-item .product-gallery::before,
.page-item .product-summary::before,
.page-item .product-buy-card::before {
    content: none !important;
    display: none !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card {
    overflow: hidden !important;
}

.page-item .product-gallery {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 20px !important;
    min-height: 0 !important;
    background: linear-gradient(180deg, rgba(28, 32, 41, 0.98) 0%, rgba(21, 25, 33, 0.98) 100%) !important;
}

.page-item .product-thumbs {
    gap: 12px !important;
}

.page-item .product-thumb {
    padding: 8px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
}

.page-item .product-thumb.is-active,
.page-item .product-thumb:hover {
    border-color: rgba(255, 122, 27, 0.26) !important;
    box-shadow: 0 0 0 2px rgba(255, 122, 27, 0.12) !important;
}

.page-item .product-stage {
    min-height: 520px !important;
    border-radius: 18px !important;
    background: #171c24 !important;
}

.page-item .product-stage img {
    max-height: 440px !important;
    filter: none !important;
    transform: none !important;
}

.page-item .product-gallery:hover .product-stage img {
    transform: none !important;
}

.page-item .product-summary {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 28px !important;
    background: linear-gradient(180deg, rgba(29, 34, 43, 0.98) 0%, rgba(22, 26, 34, 0.98) 100%) !important;
}

.page-item .product-summary h1 {
    margin: 4px 0 0 !important;
    max-width: 13ch !important;
    font-size: clamp(32px, 2.8vw, 44px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    text-wrap: pretty !important;
}

.page-item .product-rating-row,
.page-item .product-meta-row {
    gap: 10px !important;
}

.page-item .product-meta-badge,
.page-item .product-meta-note,
.page-item .product-rating-row span {
    min-height: 32px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.page-item .product-summary-lead {
    margin: 0 !important;
    max-width: 42ch !important;
    font-size: 17px !important;
    line-height: 1.58 !important;
}

.page-item .product-summary-specs,
.page-item .product-spec-preview {
    gap: 10px !important;
}

.page-item .product-summary-spec,
.page-item .product-spec-line,
.page-item .product-spec-row {
    border-radius: 14px !important;
}

.page-item .product-summary-spec {
    padding: 14px 16px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.page-item .product-buy-card {
    top: 96px !important;
    padding: 24px !important;
    background: linear-gradient(180deg, rgba(25, 29, 37, 0.98) 0%, rgba(19, 22, 29, 0.98) 100%) !important;
    animation: none !important;
}

.page-item .product-buy-top {
    align-items: flex-start !important;
    gap: 14px !important;
}

.page-item .product-price {
    font-size: clamp(40px, 2.8vw, 56px) !important;
    line-height: 0.96 !important;
}

.page-item .product-stock {
    min-height: 38px !important;
    padding: 0 14px !important;
    border-radius: 12px !important;
}

.page-item .product-buy-note,
.page-item .product-delivery-summary {
    margin-top: 14px !important;
    padding: 16px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.page-item .product-qty-control {
    gap: 10px !important;
}

.page-item .product-qty-button,
.page-item .product-qty-input {
    min-height: 46px !important;
    border-radius: 12px !important;
}

.page-item .product-buy-button,
.page-item .product-buy-secondary {
    min-height: 56px !important;
    margin-top: 14px !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.page-item .product-buy-info {
    margin-top: 18px !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    gap: 0 !important;
}

.page-item .product-buy-info div {
    padding: 12px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
}

.page-item .product-buy-info div:first-child {
    padding-top: 0 !important;
    border-top: 0 !important;
}

.page-item .product-buy-info strong {
    font-size: 15px !important;
}

.page-item .product-buy-info span {
    font-size: 14px !important;
}

.page-item .product-summary:hover,
.page-item .product-buy-card:hover,
.page-item .product-gallery:hover {
    transform: none !important;
    box-shadow: 0 16px 32px rgba(8, 12, 18, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.07) !important;
}

@media (max-width: 1180px) {
    .page-item .product-top {
        grid-template-columns: 1fr !important;
    }

    .page-item .product-buy-card {
        position: static !important;
        top: auto !important;
    }

    .page-item .product-summary h1 {
        max-width: none !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        width: min(calc(100% - 20px), 100%) !important;
        border-radius: 22px !important;
    }

    .header-wrap {
        gap: 14px !important;
        padding: 14px 14px 12px !important;
    }

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

    .site-search-form {
        min-height: 56px !important;
        padding: 0 8px 0 12px !important;
    }

    .site-search-form input[type="search"] {
        font-size: 16px !important;
        padding-right: 8px !important;
    }

    .site-search-form button {
        min-width: 108px !important;
        padding: 0 18px !important;
        font-size: 16px !important;
    }

    .site-icon-button,
    .site-nav-cta {
        min-height: 56px !important;
        border-radius: 18px !important;
    }

    .site-nav-cta {
        width: 100% !important;
        justify-content: center !important;
    }

    .page-item .product-gallery,
    .page-item .product-summary,
    .page-item .product-buy-card {
        border-radius: 18px !important;
    }

    .page-item .product-gallery {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 14px !important;
    }

    .page-item .product-thumbs {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
    }

    .page-item .product-thumb {
        width: 60px !important;
        min-width: 60px !important;
    }

    .page-item .product-stage {
        min-height: 280px !important;
    }

    .page-item .product-stage img {
        max-height: 250px !important;
    }

    .page-item .product-summary {
        padding: 20px !important;
        gap: 14px !important;
    }

    .page-item .product-summary h1 {
        font-size: clamp(24px, 7vw, 32px) !important;
        line-height: 1.06 !important;
    }

    .page-item .product-summary-lead {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }

    .page-item .product-buy-card {
        padding: 20px !important;
    }

    .page-item .product-price {
        font-size: 38px !important;
    }

    .site-search-dropdown {
        border-radius: 16px !important;
    }

    .site-search-helper {
        padding: 10px !important;
    }
}

/* final refinement: calmer symmetry pass */
[data-reveal],
[data-reveal].is-revealed,
[data-float-card] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

[data-hero-webgl] {
    display: none !important;
}

.site-search-form {
    position: relative !important;
    z-index: 40 !important;
}

.site-search-dropdown {
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: auto !important;
    width: min(390px, 100%) !important;
    max-height: min(70vh, 520px) !important;
    padding: 10px !important;
    overflow: auto !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(18, 22, 30, 0.98) !important;
    box-shadow: 0 20px 44px rgba(8, 12, 18, 0.22) !important;
    backdrop-filter: blur(18px) !important;
}

.site-search-results {
    gap: 6px !important;
}

.site-search-helper {
    gap: 12px !important;
    padding: 12px !important;
    border-radius: 16px !important;
}

.site-search-helper h4 {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
}

.site-search-helper p {
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.site-search-chip {
    min-height: 38px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    box-shadow: none !important;
}

.site-search-item {
    padding: 12px 14px !important;
    border-radius: 14px !important;
}

.site-search-item:hover,
.site-search-item.is-active {
    transform: none !important;
}

.page-item .product-top {
    gap: 26px !important;
    align-items: start !important;
}

.page-item .product-side-column {
    display: grid !important;
    gap: 22px !important;
    align-content: start !important;
    min-width: 0 !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card {
    min-height: auto !important;
    height: auto !important;
    border-radius: 24px !important;
}

.page-item .product-gallery {
    padding: 20px !important;
    background: linear-gradient(180deg, rgba(24, 28, 36, 0.99) 0%, rgba(18, 22, 29, 0.99) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 18px 34px rgba(8, 12, 18, 0.14) !important;
}

.page-item .product-thumbs {
    gap: 10px !important;
}

.page-item .product-thumb {
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}

.page-item .product-stage {
    min-height: 540px !important;
    border-radius: 20px !important;
    background: rgba(14, 18, 24, 0.96) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
}

.page-item .product-stage img {
    max-width: min(100%, 420px) !important;
    max-height: 500px !important;
    object-fit: contain !important;
}

.page-item .product-summary {
    align-self: start !important;
    padding: 24px !important;
    gap: 14px !important;
    justify-content: flex-start !important;
}

.page-item .product-summary h1 {
    max-width: none !important;
    margin: 0 !important;
    font-size: clamp(28px, 2.2vw, 38px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    text-wrap: balance !important;
}

.page-item .product-rating-row,
.page-item .product-meta-row {
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.page-item .product-summary-lead {
    max-width: none !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.74) !important;
}

.page-item .product-summary-spec {
    min-height: 52px !important;
}

.page-item .product-buy-card {
    align-self: start !important;
    top: 88px !important;
    width: 100% !important;
    padding: 22px !important;
    box-shadow: 0 18px 34px rgba(8, 12, 18, 0.14) !important;
}

.page-item .product-price {
    font-size: clamp(34px, 2.4vw, 48px) !important;
    line-height: 1 !important;
}

.page-item .product-buy-top {
    align-items: center !important;
}

.page-item .product-stock {
    min-height: 36px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
}

.page-item .product-buy-button,
.page-item .product-buy-secondary {
    min-height: 54px !important;
}

.page-item .product-buy-info div {
    min-height: 50px !important;
    align-items: center !important;
}

@media (min-width: 1181px) {
    .page-item .product-top {
        grid-template-columns: minmax(360px, 430px) minmax(0, 1fr) !important;
        gap: 24px !important;
        align-items: start !important;
    }

    .page-item .product-gallery {
        align-self: start !important;
    }

    .page-item .product-side-column {
        gap: 24px !important;
    }

    .page-item .product-summary {
        min-height: 0 !important;
        width: 100% !important;
    }

    .page-item .product-buy-card {
        position: static !important;
        top: auto !important;
        justify-self: start !important;
        width: min(430px, 100%) !important;
        max-width: 430px !important;
        min-height: 0 !important;
    }

    .page-item .product-stage {
        min-height: 500px !important;
    }

    .page-item .product-stage img {
        max-height: 460px !important;
    }

    .page-item .product-summary h1 {
        max-width: 16ch !important;
        font-size: clamp(30px, 2.15vw, 42px) !important;
    }

    .page-item .product-summary-lead {
        max-width: 58ch !important;
    }

    .page-item .product-sections {
        grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.9fr) !important;
        gap: 22px !important;
        align-items: start !important;
    }

    .page-item .product-section-card {
        min-height: 0 !important;
        border-radius: 24px !important;
    }
}

@media (max-width: 980px) {
    .site-search-dropdown {
        width: min(100%, 520px) !important;
    }

    .page-item .product-top {
        gap: 18px !important;
    }

    .page-item .product-side-column {
        gap: 18px !important;
    }

    .page-item .product-stage {
        min-height: 380px !important;
    }

    .page-item .product-stage img {
        max-height: 340px !important;
    }
}

@media (max-width: 760px) {
    .site-search-dropdown {
        width: 100% !important;
        max-height: 58vh !important;
        border-radius: 16px !important;
    }

    .site-search-form input[type="search"] {
        font-size: 15px !important;
    }

    .site-search-form button {
        min-width: 92px !important;
        padding: 0 14px !important;
        font-size: 15px !important;
    }

    .site-search-item {
        padding: 11px 12px !important;
    }

    .page-item .product-top {
        gap: 16px !important;
    }

    .page-item .product-side-column {
        gap: 16px !important;
    }

    .page-item .product-gallery,
    .page-item .product-summary,
    .page-item .product-buy-card {
        padding: 16px !important;
        border-radius: 18px !important;
        min-height: auto !important;
    }

    .page-item .product-stage {
        min-height: 260px !important;
    }

    .page-item .product-stage img {
        max-height: 230px !important;
    }

    .page-item .product-summary h1 {
        font-size: clamp(24px, 6.6vw, 30px) !important;
        line-height: 1.08 !important;
    }

    .page-item .product-summary-lead {
        font-size: 15px !important;
        line-height: 1.58 !important;
    }

    .page-item .product-price {
        font-size: 34px !important;
    }
}

/* 2026-04-22 catalog layout normalization */
.page-catalog .catalog-layout,
.page-group .catalog-layout {
    display: grid !important;
    grid-template-columns: 246px minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
}

.page-catalog .catalog-layout > [class*="col-"],
.page-group .catalog-layout > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: none !important;
}

.page-catalog .catalog-layout > aside,
.page-group .catalog-layout > aside {
    display: grid !important;
    gap: 18px !important;
    align-content: start !important;
}

.page-catalog .catalog-sidebar-card,
.page-group .catalog-sidebar-card {
    position: relative !important;
    overflow: hidden !important;
    padding: 20px !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(25, 29, 37, 0.98), rgba(17, 20, 27, 1)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 18px 36px rgba(10, 14, 22, 0.14) !important;
    backdrop-filter: none !important;
    transform: none !important;
}

.page-catalog .catalog-sidebar-card::before,
.page-group .catalog-sidebar-card::before {
    opacity: 0.22 !important;
}

.page-catalog .catalog-sidebar-card:hover,
.page-group .catalog-sidebar-card:hover {
    transform: none !important;
    box-shadow: 0 18px 36px rgba(10, 14, 22, 0.14) !important;
}

.page-catalog .catalog-sidebar-title,
.page-group .catalog-sidebar-title {
    font-size: 15px !important;
    line-height: 1.25 !important;
}

.page-catalog .catalog-sidebar-card p,
.page-group .catalog-sidebar-card p {
    margin-top: 10px !important;
    color: rgba(236, 242, 250, 0.72) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.page-catalog .catalog-sidebar-link,
.page-catalog .catalog-sidebar-pill,
.page-group .catalog-sidebar-link,
.page-group .catalog-sidebar-pill {
    min-height: 42px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    justify-content: flex-start !important;
}

.page-catalog .catalog-content-shell,
.page-group .catalog-content-shell {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.page-catalog .catalog-content-shell::before,
.page-catalog .catalog-content-shell::after,
.page-group .catalog-content-shell::before,
.page-group .catalog-content-shell::after {
    display: none !important;
}

.page-catalog .catalog-intro-panel,
.page-group .catalog-intro-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 1.32fr) minmax(248px, 0.72fr) !important;
    gap: 26px !important;
    align-items: stretch !important;
    padding: 28px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 27, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(21, 24, 31, 0.99), rgba(15, 18, 24, 1)) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 24px 48px rgba(8, 12, 18, 0.18) !important;
}

.page-catalog .catalog-intro-panel::before,
.page-catalog .catalog-intro-panel::after,
.page-group .catalog-intro-panel::before,
.page-group .catalog-intro-panel::after {
    opacity: 0.28 !important;
}

.page-catalog .catalog-intro-copy,
.page-group .catalog-intro-copy {
    align-self: start !important;
}

.page-catalog .catalog-intro-copy h1,
.page-group .catalog-intro-copy h1 {
    max-width: 8.8ch !important;
    margin: 14px 0 0 !important;
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
}

.page-catalog .catalog-intro-copy p,
.page-group .catalog-intro-copy p {
    max-width: 52ch !important;
    margin-top: 16px !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.page-catalog .catalog-intro-actions,
.page-group .catalog-intro-actions {
    gap: 12px !important;
    margin-top: 20px !important;
}

.page-catalog .catalog-intro-actions .button2,
.page-group .catalog-intro-actions .button2,
.page-catalog .catalog-intro-ghost,
.page-group .catalog-intro-ghost {
    min-height: 48px !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    transform: none !important;
}

.page-catalog .catalog-intro-ghost:hover,
.page-group .catalog-intro-ghost:hover {
    transform: none !important;
}

.page-catalog .catalog-intro-points,
.page-group .catalog-intro-points {
    gap: 8px !important;
    margin-top: 14px !important;
}

.page-catalog .catalog-intro-points span,
.page-group .catalog-intro-points span {
    min-height: 30px !important;
    padding: 0 11px !important;
    font-size: 11px !important;
}

.page-catalog .catalog-intro-side,
.page-group .catalog-intro-side {
    display: grid !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 14px !important;
    align-content: start !important;
}

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

.page-catalog .catalog-intro-stat,
.page-group .catalog-intro-stat {
    min-height: 96px !important;
    padding: 16px 18px !important;
    border-radius: 18px !important;
}

.page-catalog .catalog-intro-stat strong,
.page-group .catalog-intro-stat strong {
    font-size: clamp(24px, 2.1vw, 34px) !important;
    line-height: 1 !important;
}

.page-catalog .catalog-intro-links,
.page-group .catalog-intro-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.page-catalog .catalog-intro-link,
.page-group .catalog-intro-link {
    min-height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
}

.page-catalog .catalog-intro-spotlight,
.page-group .catalog-intro-spotlight {
    min-height: 100% !important;
    padding: 18px !important;
    border-radius: 22px !important;
}

.page-catalog .catalog-intro-spotlight strong,
.page-group .catalog-intro-spotlight strong {
    font-size: 18px !important;
    line-height: 1.22 !important;
}

.page-catalog .catalog-brand-showcase,
.page-catalog .catalog-node-map,
.page-group .catalog-brand-showcase,
.page-group .catalog-node-map {
    padding: 24px !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 36px rgba(10, 14, 22, 0.09) !important;
}

.page-catalog .catalog-block-head,
.page-group .catalog-block-head {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr) !important;
    gap: 18px !important;
    align-items: end !important;
    margin-bottom: 18px !important;
}

.page-catalog .catalog-block-head h2,
.page-group .catalog-block-head h2 {
    margin-top: 10px !important;
    font-size: clamp(24px, 2.3vw, 38px) !important;
    line-height: 1.06 !important;
}

.page-catalog .catalog-block-head p,
.page-group .catalog-block-head p {
    max-width: 34ch !important;
    justify-self: end !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.page-catalog .catalog-brand-grid,
.page-group .catalog-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.page-catalog .catalog-brand-card,
.page-group .catalog-brand-card {
    min-height: 216px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 34px rgba(8, 12, 18, 0.16) !important;
    transform: none !important;
}

.page-catalog .catalog-brand-card::before,
.page-group .catalog-brand-card::before {
    display: none !important;
}

.page-catalog .catalog-brand-card:hover,
.page-group .catalog-brand-card:hover {
    transform: none !important;
    box-shadow: 0 18px 34px rgba(8, 12, 18, 0.16) !important;
}

.page-catalog .catalog-brand-card-link,
.page-group .catalog-brand-card-link {
    grid-template-columns: minmax(0, 1fr) 132px !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 22px !important;
}

.page-catalog .catalog-brand-card strong,
.page-group .catalog-brand-card strong {
    font-size: clamp(24px, 2vw, 30px) !important;
    line-height: 1.08 !important;
}

.page-catalog .catalog-brand-card p,
.page-group .catalog-brand-card p {
    max-width: 30ch !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

.page-catalog .catalog-brand-card-tags,
.page-group .catalog-brand-card-tags {
    gap: 6px !important;
}

.page-catalog .catalog-brand-card-tags span,
.page-group .catalog-brand-card-tags span {
    min-height: 28px !important;
    padding: 0 9px !important;
    font-size: 11px !important;
}

.page-catalog .catalog-brand-card-frame,
.page-group .catalog-brand-card-frame {
    min-height: 136px !important;
    padding: 14px !important;
    border-radius: 18px !important;
}

.page-catalog .catalog-brand-card-media img,
.page-group .catalog-brand-card-media img {
    max-width: 112px !important;
    max-height: 132px !important;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2)) !important;
}

.page-catalog .catalog-node-grid,
.page-group .catalog-node-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.page-catalog .catalog-node-card,
.page-group .catalog-node-card {
    min-height: 154px !important;
    padding: 18px !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 24px rgba(10, 14, 22, 0.06) !important;
    transform: none !important;
}

.page-catalog .catalog-node-card:hover,
.page-group .catalog-node-card:hover {
    transform: none !important;
    box-shadow: 0 12px 24px rgba(10, 14, 22, 0.06) !important;
}

.page-catalog .catalog-node-card strong,
.page-group .catalog-node-card strong {
    font-size: 18px !important;
}

.page-catalog .catalog-node-card span,
.page-group .catalog-node-card span {
    font-size: 13px !important;
    line-height: 1.58 !important;
}

@media (max-width: 1180px) {
    .page-catalog .catalog-layout,
    .page-group .catalog-layout {
        grid-template-columns: 1fr !important;
    }

    .page-catalog .catalog-layout > aside,
    .page-group .catalog-layout > aside {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .page-catalog .catalog-intro-panel,
    .page-group .catalog-intro-panel {
        grid-template-columns: 1fr !important;
    }

    .page-catalog .catalog-block-head,
    .page-group .catalog-block-head {
        grid-template-columns: 1fr !important;
    }

    .page-catalog .catalog-block-head p,
    .page-group .catalog-block-head p {
        justify-self: start !important;
        max-width: 56ch !important;
    }
}

@media (max-width: 860px) {
    .page-catalog .catalog-layout,
    .page-group .catalog-layout {
        gap: 18px !important;
    }

    .page-catalog .catalog-layout > aside,
    .page-group .catalog-layout > aside {
        grid-template-columns: 1fr !important;
    }

    .page-catalog .catalog-sidebar-card,
    .page-group .catalog-sidebar-card,
    .page-catalog .catalog-intro-panel,
    .page-group .catalog-intro-panel,
    .page-catalog .catalog-brand-showcase,
    .page-catalog .catalog-node-map,
    .page-group .catalog-brand-showcase,
    .page-group .catalog-node-map {
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .page-catalog .catalog-intro-copy h1,
    .page-group .catalog-intro-copy h1 {
        max-width: none !important;
        font-size: clamp(30px, 8vw, 42px) !important;
    }

    .page-catalog .catalog-intro-copy p,
    .page-group .catalog-intro-copy p {
        font-size: 15px !important;
    }

    .page-catalog .catalog-intro-stats,
    .page-group .catalog-intro-stats,
    .page-catalog .catalog-brand-grid,
    .page-group .catalog-brand-grid,
    .page-catalog .catalog-node-grid,
    .page-group .catalog-node-grid {
        grid-template-columns: 1fr !important;
    }

    .page-catalog .catalog-brand-card-link,
    .page-group .catalog-brand-card-link {
        grid-template-columns: 1fr !important;
        align-items: start !important;
    }

    .page-catalog .catalog-brand-card-media,
    .page-group .catalog-brand-card-media {
        justify-content: flex-start !important;
    }

    .page-catalog .catalog-brand-card-frame,
    .page-group .catalog-brand-card-frame {
        min-height: 110px !important;
        width: 120px !important;
    }
}

/* 2026-04-22 header reset: longer search + burger navigation */
.site-search-form {
    flex: 1 1 720px !important;
    width: 100% !important;
    max-width: none !important;
}

.site-search-form input[type="search"] {
    min-width: 0 !important;
}

@media (min-width: 981px) {
    .header-wrap {
        grid-template-columns: auto minmax(0, 1fr) !important;
        align-items: center !important;
    }

    .site-nav {
        display: grid !important;
        grid-template-columns: 48px auto minmax(640px, 1fr) auto !important;
        gap: 14px !important;
        align-items: center !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .site-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        min-width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        border-radius: 14px !important;
    }

    .site-menu-toggle span {
        display: none !important;
    }

    .site-catalog-button {
        min-width: 126px !important;
        justify-content: center !important;
    }

    .site-search-form {
        min-width: 640px !important;
    }

    .site-header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important;
        min-width: max-content !important;
    }

    .site-nav-links {
        display: none !important;
    }

    .site-nav-cta {
        min-width: 132px !important;
        justify-content: center !important;
    }

    .mobile-drawer {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-top: 96px !important;
        padding-left: max(18px, calc((100vw - 1460px) / 2 + 18px)) !important;
        padding-right: 18px !important;
        background: rgba(11, 14, 20, 0.14) !important;
        backdrop-filter: blur(10px) !important;
    }

    .mobile-drawer-backdrop {
        background: transparent !important;
    }

    .mobile-drawer-panel {
        width: min(380px, calc(100vw - 36px)) !important;
        max-height: calc(100vh - 120px) !important;
        border-radius: 24px !important;
        box-shadow: 0 28px 64px rgba(7, 11, 18, 0.24) !important;
        transform: translateY(-10px) scale(0.98) !important;
    }

    .mobile-drawer.is-open .mobile-drawer-panel {
        transform: translateY(0) scale(1) !important;
    }
}

@media (max-width: 980px) {
    .site-nav {
        grid-template-columns: 48px minmax(0, 1fr) !important;
        grid-template-areas:
            "menu search"
            "cart cart" !important;
        gap: 12px !important;
    }

    .site-menu-toggle {
        grid-area: menu !important;
    }

    .site-catalog-button,
    .site-nav-links {
        display: none !important;
    }

    .site-search-form {
        grid-area: search !important;
        min-width: 0 !important;
    }

    .site-header-actions {
        grid-area: cart !important;
        width: 100% !important;
    }

    .site-nav-cta {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* 2026-04-22 bootstrap-4 grid normalization */
.footer-grid.row,
.page-item .product-top.row,
.page-item .product-sections.row,
.page-catalog .catalog-intro-panel.row,
.page-group .catalog-intro-panel.row,
.page-catalog .catalog-brand-grid.row,
.page-group .catalog-brand-grid.row,
.page-catalog .catalog-node-grid.row,
.page-group .catalog-node-grid.row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.footer-grid.row {
    margin-left: -12px !important;
    margin-right: -12px !important;
}

.footer-grid.row > [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-bottom: 20px !important;
}

.page-item .product-top.row,
.page-item .product-sections.row,
.page-catalog .catalog-intro-panel.row,
.page-group .catalog-intro-panel.row,
.page-catalog .catalog-brand-grid.row,
.page-group .catalog-brand-grid.row,
.page-catalog .catalog-node-grid.row,
.page-group .catalog-node-grid.row {
    margin-left: -12px !important;
    margin-right: -12px !important;
}

.page-item .product-top.row > [class*="col-"],
.page-item .product-sections.row > [class*="col-"],
.page-catalog .catalog-intro-panel.row > [class*="col-"],
.page-group .catalog-intro-panel.row > [class*="col-"],
.page-catalog .catalog-brand-grid.row > [class*="col-"],
.page-group .catalog-brand-grid.row > [class*="col-"],
.page-catalog .catalog-node-grid.row > [class*="col-"],
.page-group .catalog-node-grid.row > [class*="col-"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin-bottom: 24px !important;
}

.page-item .product-top.row {
    gap: 0 !important;
    align-items: stretch !important;
}

.page-item .product-side-column {
    display: contents !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card,
.page-item .product-section-card {
    width: 100% !important;
    max-width: none !important;
}

.page-item .product-sections.row {
    gap: 0 !important;
}

.page-item .product-section-card {
    height: 100% !important;
}

.page-catalog .catalog-intro-panel.row,
.page-group .catalog-intro-panel.row {
    gap: 0 !important;
    align-items: stretch !important;
}

.page-catalog .catalog-intro-copy,
.page-catalog .catalog-intro-side,
.page-group .catalog-intro-copy,
.page-group .catalog-intro-side {
    align-self: stretch !important;
}

.page-catalog .catalog-brand-grid.row,
.page-group .catalog-brand-grid.row,
.page-catalog .catalog-node-grid.row,
.page-group .catalog-node-grid.row {
    gap: 0 !important;
}

.page-catalog .catalog-brand-card,
.page-group .catalog-brand-card,
.page-catalog .catalog-node-card,
.page-group .catalog-node-card {
    height: 100% !important;
}

@media (max-width: 1199.98px) {
    .page-item .product-side-column {
        display: contents !important;
    }
}

@media (max-width: 767.98px) {
    .footer-grid.row > [class*="col-"],
    .page-item .product-top.row > [class*="col-"],
    .page-item .product-sections.row > [class*="col-"],
    .page-catalog .catalog-intro-panel.row > [class*="col-"],
    .page-group .catalog-intro-panel.row > [class*="col-"],
    .page-catalog .catalog-brand-grid.row > [class*="col-"],
    .page-group .catalog-brand-grid.row > [class*="col-"],
    .page-catalog .catalog-node-grid.row > [class*="col-"],
    .page-group .catalog-node-grid.row > [class*="col-"] {
        margin-bottom: 16px !important;
    }
}

/* 2026-04-22 absolute final overrides */
.site-search-form {
    overflow: hidden !important;
}

@media (min-width: 981px) {
    .header-wrap {
        overflow: hidden !important;
    }

    .site-nav {
        grid-template-columns: 48px 126px minmax(0, 1fr) 132px !important;
        gap: 12px !important;
        max-width: 100% !important;
    }

    .site-search-form {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .site-header-actions {
        min-width: 0 !important;
        max-width: 132px !important;
    }
}

.page-item .product-top.row,
.page-item .product-sections.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 24px !important;
}

.page-item .product-sections.row {
    margin-top: 24px !important;
    align-items: flex-start !important;
}

.page-item .product-top.row {
    align-items: flex-start !important;
}

.page-item .product-top.row > [class*="col-"],
.page-item .product-sections.row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    align-self: flex-start !important;
}

.page-item .product-gallery,
.page-item .product-summary,
.page-item .product-buy-card,
.page-item .product-section-card {
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
}

.page-item .product-summary {
    padding: 18px !important;
    gap: 12px !important;
}

.page-item .product-summary h1 {
    font-size: clamp(22px, 1.9vw, 30px) !important;
    line-height: 1.14 !important;
}

.page-item .product-summary-lead {
    font-size: 14px !important;
    line-height: 1.58 !important;
}

.page-item .product-buy-card {
    padding: 16px !important;
}

.page-item .product-stage {
    min-height: 430px !important;
}

.page-item .product-stage img {
    max-height: 400px !important;
}

.page-item .product-section-card {
    padding: 18px !important;
    border-radius: 20px !important;
}

.page-item .product-section-card h2 {
    margin-bottom: 14px !important;
    font-size: clamp(20px, 1.7vw, 26px) !important;
    line-height: 1.12 !important;
}

.page-item .product-section-card p,
.page-item .product-section-card li,
.page-item .product-section-card td,
.page-item .product-section-card th {
    font-size: 14px !important;
    line-height: 1.62 !important;
}

@media (min-width: 1200px) {
    .page-item .product-top.row > .product-gallery.col-xl-4 {
        flex: 0 0 calc((100% - 48px) * 0.31) !important;
        max-width: calc((100% - 48px) * 0.31) !important;
    }

    .page-item .product-top.row > .product-summary.col-xl-5 {
        flex: 0 0 calc((100% - 48px) * 0.45) !important;
        max-width: calc((100% - 48px) * 0.45) !important;
    }

    .page-item .product-top.row > .product-buy-card.col-xl-3 {
        flex: 0 0 calc((100% - 48px) * 0.24) !important;
        max-width: calc((100% - 48px) * 0.24) !important;
    }

    .page-item .product-sections.row > .product-section-card.col-xl-7 {
        flex: 0 0 calc((100% - 24px) * 0.60) !important;
        max-width: calc((100% - 24px) * 0.60) !important;
    }

    .page-item .product-sections.row > .product-section-card.col-xl-5 {
        flex: 0 0 calc((100% - 24px) * 0.40) !important;
        max-width: calc((100% - 24px) * 0.40) !important;
    }
}

@media (max-width: 1199.98px) {
    .page-item .product-top.row,
    .page-item .product-sections.row {
        gap: 18px !important;
    }
}
