:root {
    --ink: #101418;
    --muted: #5c6670;
    --line: #dde3e8;
    --surface: #f5f7f8;
    --panel: #ffffff;
    --accent: #d12b20;
    --accent-dark: #a91f17;
    --steel: #27313a;
    --charcoal: #161b1f;
    --soft: #eef2f4;
}

* {
    box-sizing: border-box;
}

html {
    font-family: Manrope, Arial, sans-serif;
    color: var(--ink);
    background: var(--surface);
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 0 clamp(20px, 5vw, 72px);
    border-bottom: 1px solid rgba(16, 20, 24, .08);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(18px);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .01em;
}

.site-logo img {
    width: 210px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--ink);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(209, 43, 32, .24);
    border-radius: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: min(780px, calc(100vh - 132px));
    padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 72px);
    background:
        linear-gradient(90deg, rgba(245, 247, 248, .98) 0%, rgba(245, 247, 248, .90) 58%, rgba(16, 20, 24, .10) 100%),
        linear-gradient(135deg, #ffffff 0%, #eef2f4 100%);
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.1;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(23px, 2.5vw, 32px);
    line-height: 1.16;
    letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
}

.button.primary {
    background: var(--accent);
    color: #ffffff;
}

.button.primary:hover {
    background: var(--accent-dark);
}

.button.secondary {
    border: 1px solid var(--line);
    background: #ffffff;
}

.button.secondary:hover {
    border-color: rgba(209, 43, 32, .38);
    color: var(--accent);
}

.hero-search {
    max-width: 650px;
    margin-top: 34px;
    padding: 10px;
    border: 1px solid rgba(16, 20, 24, .10);
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 48px rgba(16, 20, 24, .07);
}

.hero-search label {
    display: block;
    padding: 4px 6px 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.hero-search div {
    display: flex;
    gap: 8px;
}

.hero-search input {
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    background: #ffffff;
}

.hero-search button {
    min-width: 92px;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--charcoal);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.text-link {
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: clamp(24px, 5vw, 64px);
    align-items: end;
    padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 72px) clamp(28px, 5vw, 56px);
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
    max-width: 820px;
    font-size: clamp(26px, 3.2vw, 38px);
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.catalog-search {
    width: min(100%, 470px);
    padding: 8px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 20, 24, .05);
}

.catalog-search label {
    display: block;
    margin-bottom: 10px;
    color: var(--steel);
    font-size: 13px;
    font-weight: 800;
}

.catalog-search div {
    display: flex;
    gap: 6px;
}

.catalog-search input {
    min-width: 0;
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    font: inherit;
    background: #f6f8f9;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    outline: 0;
}

.catalog-search input:focus {
    box-shadow: inset 0 0 0 1px rgba(209, 43, 32, .35);
}

.catalog-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(209, 43, 32, .22);
}

.catalog-search button:hover {
    background: #e02f24;
}

.catalog-search small {
    display: block;
    margin-top: 8px;
    padding: 0 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: 34px;
    padding-bottom: 36px;
}

.motor-catalog-page {
    padding-top: 34px;
    padding-bottom: 34px;
}

.result-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 470px);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(16, 20, 24, .08);
    color: var(--muted);
}

.result-title {
    min-width: 0;
}

.result-title .breadcrumb {
    margin-bottom: 8px;
}

.result-title h1 {
    max-width: none;
    margin: 0 0 5px;
    font-size: clamp(24px, 2.2vw, 31px);
    line-height: 1.12;
}

.result-title > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.result-title strong {
    color: var(--ink);
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.product-image {
    display: block;
    aspect-ratio: 1;
    background: #f0f3f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image img.is-placeholder,
.main-product-image.is-placeholder,
.gallery-strip img.is-placeholder {
    object-fit: cover;
}

.product-card-body {
    padding: 18px;
}

.product-meta,
.summary-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.product-meta span,
.summary-badges span,
.category-pills a,
.reference-codes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: #eef2f5;
    color: var(--steel);
    font-size: 12px;
    font-weight: 800;
}

.product-meta .meta-label {
    min-width: 0;
    overflow: hidden;
    font: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-badges span {
    gap: 8px;
}

.product-card h2 {
    min-height: 52px;
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

.stock-code {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
}

.stock-code strong {
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.product-card p {
    min-height: 62px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

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

.catalog-product-grid .product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-color: rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    box-shadow: 0 16px 36px rgba(16, 20, 24, .045);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-product-grid .product-card:hover {
    border-color: rgba(209, 43, 32, .22);
    box-shadow: 0 20px 46px rgba(16, 20, 24, .09);
    transform: translateY(-2px);
}

.catalog-product-grid .product-image {
    margin: 9px 9px 0;
    overflow: hidden;
    border: 1px solid rgba(16, 20, 24, .05);
    border-radius: 12px;
    background: #ffffff;
}

.catalog-product-grid .product-image img {
    transition: transform .22s ease;
}

.catalog-product-grid .product-card:hover .product-image img {
    transform: scale(1.035);
}

.catalog-product-grid .product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 11px;
}

.catalog-product-grid .product-meta {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.catalog-product-grid .product-meta span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    min-height: 27px;
    justify-content: center;
    gap: 7px;
    padding: 0 7px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 7px;
    background: #ffffff;
    color: var(--steel);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-product-grid .product-meta span:last-child {
    border-color: rgba(35, 196, 94, .26);
    background: #f3fbf6;
    color: #16803f;
}

.catalog-product-grid .product-meta i {
    flex: 0 0 auto;
    font-size: 9px;
}

.catalog-product-grid .product-card h2 {
    min-height: 48px;
    font-size: 12.5px;
    line-height: 1.3;
}

.motor-catalog-page .motor-grid {
    gap: 16px;
}

.motor-catalog-page .empty-state {
    margin-top: 12px;
}

.motor-search small {
    line-height: 1.35;
}

.catalog-product-grid .stock-code {
    display: grid;
    gap: 3px;
    margin-top: 9px;
    padding: 7px 8px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 9px;
    background: #ffffff;
    font-size: 10.5px;
    line-height: 1.35;
}

.catalog-product-grid .product-card-link {
    min-height: 38px;
    margin-top: auto;
    padding: 0 7px 0 11px;
    border-radius: 10px;
    font-size: 11.5px;
}

.catalog-product-grid .product-card-link i {
    width: 22px;
    height: 22px;
    font-size: 10px;
}

.pagination-wrap {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 28px;
}

.pagination-wrap > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 16px 38px rgba(16, 20, 24, .055);
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.pagination a:hover {
    border-color: rgba(209, 43, 32, .26);
    color: var(--accent);
    transform: translateY(-1px);
}

.pagination a.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(209, 43, 32, .20);
}

.pagination-control {
    gap: 8px;
}

.pagination-control.is-next {
    border-color: rgba(209, 43, 32, .24);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(209, 43, 32, .18);
}

.pagination-control.is-next:hover {
    border-color: var(--accent);
    background: var(--accent-dark);
    color: #ffffff;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 38px;
    color: var(--muted);
    font-weight: 900;
}

.catalog-seo-block {
    padding-top: 18px;
    padding-bottom: 68px;
}

.catalog-seo-intro {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
    gap: clamp(22px, 4vw, 46px);
    align-items: stretch;
    padding: 30px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .075), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%),
        #ffffff;
    box-shadow: 0 22px 56px rgba(16, 20, 24, .07);
}

.catalog-seo-intro::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(209, 43, 32, .18));
}

.catalog-seo-intro h2 {
    max-width: 760px;
    font-size: clamp(24px, 2vw, 30px);
}

.catalog-seo-intro p:not(.eyebrow) {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.76;
}

.catalog-seo-panel {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .20), transparent 44%),
        #151a1e;
    color: rgba(255, 255, 255, .82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.catalog-seo-panel span {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 50px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.45;
}

.catalog-seo-panel i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(209, 43, 32, .22);
    color: #ffffff;
}

.catalog-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.catalog-seo-grid article {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    box-shadow: 0 14px 34px rgba(16, 20, 24, .045);
}

.catalog-seo-grid article::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(209, 43, 32, .055);
}

.catalog-seo-grid i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.catalog-seo-grid h3 {
    margin: 14px 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.catalog-seo-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.catalog-faq {
    margin-top: 40px;
}

.catalog-faq .section-head {
    align-items: flex-end;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(16, 20, 24, .08);
    margin-bottom: 16px;
}

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

.catalog-faq-list details {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 20, 24, .045);
    transition: border-color .18s ease, box-shadow .18s ease;
}

.catalog-faq-list details[open] {
    border-color: rgba(209, 43, 32, .20);
    box-shadow: 0 16px 38px rgba(16, 20, 24, .07);
}

.catalog-faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    padding: 16px 18px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
    list-style: none;
}

.catalog-faq-list summary::-webkit-details-marker {
    display: none;
}

.catalog-faq-list summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(209, 43, 32, .09);
    color: var(--accent);
    font-size: 16px;
    font-weight: 900;
}

.catalog-faq-list details[open] summary::after {
    content: "-";
}

.catalog-faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.empty-state {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.empty-state.standalone {
    margin: clamp(28px, 6vw, 72px);
}

.empty-state h1,
.empty-state h2 {
    margin: 0 0 10px;
}

.empty-state p {
    color: var(--muted);
}

.product-detail {
    padding-top: clamp(26px, 4vw, 48px);
    padding-bottom: clamp(46px, 6vw, 74px);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.breadcrumbs a {
    color: var(--accent);
}

.breadcrumbs strong {
    color: var(--steel);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
    gap: clamp(20px, 4vw, 44px);
    align-items: start;
}

.gallery,
.product-summary,
.reference-section details,
.cta-panel {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.gallery {
    position: sticky;
    top: 118px;
    padding: 12px;
}

.product-image-stage {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 420px;
    padding: 0;
    border: 1px solid rgba(16, 20, 24, .06);
    border-radius: 15px;
    background: #ffffff;
    cursor: zoom-in;
}

.product-image-stage > span {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    color: var(--accent);
    box-shadow: 0 12px 26px rgba(16, 20, 24, .10);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .18s ease, transform .18s ease;
}

.product-image-stage:hover > span,
.product-image-stage:focus-visible > span {
    opacity: 1;
    transform: translateY(0);
}

.main-product-image {
    width: 100%;
    height: 100%;
    max-height: min(54vw, 560px);
    aspect-ratio: 5 / 4;
    object-fit: contain;
    transform: scale(1.12);
    background: transparent;
}

.main-product-image.is-placeholder {
    aspect-ratio: 5 / 4;
    transform: none;
}

.motor-main-image {
    aspect-ratio: 1;
    transform: none;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.gallery-strip button {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.gallery-strip img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 10px;
    background: #ffffff;
}

.gallery-strip button:hover img,
.gallery-strip button:focus-visible img {
    border-color: rgba(209, 43, 32, .28);
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 42px);
    background: rgba(16, 20, 24, .82);
    backdrop-filter: blur(10px);
}

.product-lightbox.is-open {
    display: flex;
}

.product-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.product-lightbox button {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
}

.product-summary {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
}

.product-summary::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(209, 43, 32, .16));
}

.product-summary h1 {
    max-width: 760px;
    font-size: clamp(24px, 2.45vw, 34px);
    line-height: 1.14;
}

.product-summary p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.76;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
}

.product-info-list {
    display: grid;
    gap: 9px;
    margin-top: 20px;
}

.product-info-list > div {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-height: 44px;
    padding: 11px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 12px;
    background: #f9fafb;
    color: var(--steel);
    font-size: 13px;
    line-height: 1.4;
}

.product-info-list p {
    margin: 0;
    color: var(--steel);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
}

.product-info-list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 950;
}

.product-info-list i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    padding: 18px;
    border-color: rgba(209, 43, 32, .18);
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .08), transparent 38%),
        #f8fafb;
    box-shadow: none;
}

.cta-panel strong,
.cta-panel span {
    display: block;
}

.cta-panel span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

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

.product-cta-actions .button {
    min-height: 44px;
    gap: 8px;
    padding: 0 13px;
    font-size: 13px;
    white-space: nowrap;
}

.product-technical-section,
.product-faq-section,
.product-internal-links,
.motor-spec-section {
    margin-top: 22px;
}

.motor-spec-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 16px;
    align-items: stretch;
}

.motor-spec-card,
.motor-spec-help {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.motor-spec-card {
    overflow: hidden;
}

.motor-spec-intro {
    display: grid;
    gap: 5px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(16, 20, 24, .07);
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .075), transparent 38%),
        #f9fafb;
}

.motor-spec-intro strong {
    color: var(--ink);
    font-size: 18px;
    font-weight: 950;
}

.motor-spec-intro span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.motor-spec-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 6px;
}

.motor-spec-table div {
    display: grid;
    gap: 4px;
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid rgba(16, 20, 24, .055);
    border-radius: 12px;
    background: #ffffff;
}

.motor-spec-table dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.motor-spec-table dd {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.38;
}

.motor-spec-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    padding: 14px 20px 18px;
    border-top: 1px solid rgba(16, 20, 24, .07);
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.55;
}

.motor-spec-note i {
    margin-top: 2px;
    color: var(--accent);
}

.motor-spec-help {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background:
        linear-gradient(160deg, rgba(209, 43, 32, .12), rgba(16, 20, 24, .02) 42%),
        #ffffff;
}

.motor-spec-help > i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.motor-spec-help strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.28;
}

.motor-spec-help p {
    margin: 10px 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.motor-spec-help a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
}

.motor-spec-help a:hover {
    background: var(--accent-dark);
}

.product-technical-copy {
    padding: 26px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .055), transparent 34%),
        #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.product-technical-copy h2 {
    max-width: 860px;
    font-size: clamp(23px, 2.1vw, 30px);
}

.product-technical-copy p:not(.eyebrow) {
    max-width: 1040px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.76;
}

.product-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.product-detail-info-grid article {
    padding: 20px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 20, 24, .045);
}

.product-detail-info-grid i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.product-detail-info-grid h3 {
    margin: 14px 0 8px;
    font-size: 17px;
    line-height: 1.3;
}

.product-detail-info-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.product-faq-section .section-head,
.product-internal-links .section-head {
    padding: 0 0 14px;
}

.product-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-faq-list details {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 20, 24, .045);
}

.product-faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    padding: 15px 16px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
    list-style: none;
}

.product-faq-list summary::-webkit-details-marker {
    display: none;
}

.product-faq-list summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(209, 43, 32, .09);
    color: var(--accent);
    font-size: 16px;
    font-weight: 900;
}

.product-faq-list details[open] summary::after {
    content: "-";
}

.product-faq-list p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

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

.product-link-groups nav {
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 18px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 20, 24, .045);
}

.product-link-groups strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 950;
}

.product-link-groups a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--steel);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.product-link-groups a:hover {
    color: var(--accent);
}

.product-link-groups i {
    color: var(--accent);
    font-size: 11px;
}

.reference-section {
    margin-top: 18px;
}

.reference-section details {
    padding: 18px;
    border-radius: 16px;
}

.reference-section summary {
    cursor: pointer;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.reference-section p {
    color: var(--muted);
    line-height: 1.65;
}

.reference-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(28px, 5vw, 64px) clamp(20px, 5vw, 72px);
}

.service-grid article,
.contact-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.service-grid article {
    padding: 22px;
}

.service-grid span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-grid h2 {
    margin: 12px 0;
    font-size: 22px;
    line-height: 1.25;
}

.service-grid p,
.contact-panel p {
    color: var(--muted);
    line-height: 1.65;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    margin: clamp(28px, 5vw, 64px) clamp(20px, 5vw, 72px);
    padding: clamp(22px, 4vw, 38px);
}

.contact-panel h2 {
    margin-top: 0;
}

.services-page {
    padding-top: 34px;
    padding-bottom: 76px;
}

.services-page-head {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(16, 20, 24, .08);
}

.services-page-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 24px;
    align-items: end;
    margin-top: 12px;
}

.services-page-head h1 {
    max-width: 760px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.services-page-head p:not(.eyebrow) {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.services-contact-card {
    padding: 20px;
    border: 1px solid rgba(209, 43, 32, .18);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .08), rgba(255, 255, 255, .96) 42%),
        #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .06);
}

.services-contact-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.services-contact-card strong {
    display: block;
    margin-top: 10px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
}

.services-contact-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 16px;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
}

.services-page .service-grid {
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.services-page .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 278px;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
    box-shadow: 0 16px 42px rgba(16, 20, 24, .055);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.services-page .service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--accent);
    opacity: .92;
}

.services-page .service-card:hover {
    border-color: rgba(209, 43, 32, .24);
    box-shadow: 0 22px 54px rgba(16, 20, 24, .10);
    transform: translateY(-2px);
}

.service-card-icon {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(209, 43, 32, .13);
    border-radius: 13px;
    background: rgba(255, 240, 239, .96);
    color: var(--accent);
    font-size: 18px;
    box-shadow: 0 12px 26px rgba(16, 20, 24, .14);
}

.service-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #ffffff;
    border-bottom: 1px solid rgba(16, 20, 24, .07);
}

.service-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    transition: transform .22s ease;
}

.service-card-image:hover img {
    transform: scale(1.025);
}

.service-card-image:hover .service-card-icon {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-1px);
}

.service-card-copy {
    min-width: 0;
    padding: 18px 20px 0;
}

.services-page .service-card span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.services-page .service-card h2 {
    min-height: 54px;
    margin: 9px 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.25;
}

.services-page .service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
}

.service-card-footer {
    margin-top: auto;
    padding-right: 20px;
    padding-top: 18px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.service-card-footer small {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 11px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 10px;
    background: #ffffff;
    color: var(--steel);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.35;
}

.service-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 40px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .17);
}

.service-detail-link:hover {
    background: var(--accent-dark);
}

.service-detail-page {
    padding-top: 34px;
    padding-bottom: 78px;
}

.service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    padding: 24px 0 34px;
}

.service-detail-hero h1 {
    max-width: 820px;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.08;
}

.service-detail-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.service-detail-hero figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(16, 20, 24, .08);
}

.service-detail-hero img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #ffffff;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.service-answer-box,
.service-intro-block,
.service-rich-section,
.service-process-grid {
    margin-bottom: 28px;
}

.service-intro-block {
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(16, 20, 24, .05);
}

.service-intro-block p {
    max-width: 980px;
    margin: 0;
    color: var(--steel);
    font-size: 17px;
    line-height: 1.8;
}

.service-rich-section {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

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

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

.service-rich-grid article {
    min-height: 160px;
    padding: 18px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f8fafb);
}

.service-rich-grid article > i {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: var(--soft-red);
    color: var(--accent);
}

.service-rich-grid h2 {
    margin: 0 0 8px;
    font-size: 17px;
}

.service-rich-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.service-process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 18px;
}

.service-process-grid > div,
.service-process-grid > aside {
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.service-process-grid article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(16, 20, 24, .07);
}

.service-process-grid article:last-child {
    border-bottom: 0;
}

.service-process-grid article span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 900;
}

.service-process-grid h2 {
    margin: 0 0 6px;
    font-size: 17px;
}

.service-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.service-process-grid ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.service-process-grid li {
    display: flex;
    gap: 9px;
    color: var(--steel);
    font-size: 14px;
    font-weight: 800;
}

.service-process-grid li i {
    color: var(--accent);
    margin-top: 2px;
}

.service-side-links {
    display: grid;
    gap: 9px;
}

.service-side-links a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 11px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 10px;
    background: #f8fafb;
    color: var(--steel);
    font-size: 13px;
    font-weight: 850;
}

.service-side-links a:hover {
    border-color: rgba(209, 43, 32, .24);
    color: var(--accent);
}

.services-info-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.services-info-band h2 {
    max-width: 760px;
    font-size: clamp(22px, 2.2vw, 30px);
}

.services-info-band p {
    max-width: 780px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.services-info-band ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-info-band li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 12px;
    background: #f8fafb;
    color: var(--steel);
    font-size: 13px;
    font-weight: 850;
}

.services-info-band li i {
    color: var(--accent);
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
    gap: clamp(22px, 4vw, 46px);
    align-items: stretch;
    padding-top: clamp(30px, 5vw, 58px);
    padding-bottom: 24px;
}

.contact-hero-copy {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .08), transparent 36%),
        #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.contact-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
}

.contact-hero-copy p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-hero-actions .button {
    min-height: 44px;
    gap: 8px;
}

.contact-focus-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: 20px;
    background:
        linear-gradient(150deg, rgba(209, 43, 32, .20), transparent 40%),
        var(--charcoal);
    color: #ffffff;
    box-shadow: 0 24px 58px rgba(16, 20, 24, .14);
}

.contact-focus-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffc1ba;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.contact-focus-card strong {
    display: block;
    margin: 16px 0 10px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1;
}

.contact-focus-card p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.65;
}

.contact-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-top: 6px;
    padding-bottom: 24px;
}

.contact-action-card {
    display: grid;
    gap: 8px;
    min-height: 178px;
    padding: 20px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(16, 20, 24, .045);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-action-card:hover {
    border-color: rgba(209, 43, 32, .22);
    box-shadow: 0 22px 48px rgba(16, 20, 24, .09);
    transform: translateY(-2px);
}

.contact-action-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
    font-size: 17px;
}

.contact-action-card span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.contact-action-card strong {
    min-width: 0;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.contact-action-card-email strong {
    white-space: nowrap;
    overflow-wrap: normal;
    font-size: clamp(13px, 1.05vw, 15px);
    letter-spacing: -0.01em;
}

.contact-action-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
}

.contact-action-card.is-primary {
    border-color: rgba(209, 43, 32, .20);
}

.contact-action-card.is-primary i {
    background: var(--accent);
    color: #ffffff;
}

.contact-action-card.is-whatsapp i {
    background: #23c45e;
    color: #ffffff;
}

.contact-stock-request {
    margin: 0 0 24px;
    border: 1px solid rgba(209, 43, 32, .16);
}

.contact-stock-request p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.contact-detail-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 18px;
    padding-top: 4px;
    padding-bottom: 26px;
}

.contact-address-card,
.contact-map-card {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.contact-address-card {
    padding: clamp(22px, 4vw, 32px);
}

.contact-address-card h2 {
    margin: 0 0 14px;
    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.2;
}

.contact-address-card address {
    color: var(--steel);
    font-style: normal;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.7;
}

.working-hours {
    display: grid;
    gap: 8px;
    margin: 20px 0;
}

.working-hours div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafb;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.working-hours strong {
    color: var(--ink);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(209, 43, 32, .20);
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
}

.map-link:hover {
    background: var(--accent-dark);
}

.contact-map-card {
    overflow: hidden;
}

.map-visual {
    position: relative;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .15), rgba(16, 20, 24, .04)),
        repeating-linear-gradient(45deg, rgba(16, 20, 24, .05) 0 1px, transparent 1px 18px),
        #f7f9fa;
    text-align: center;
}

.map-visual i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: var(--accent);
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 18px 36px rgba(209, 43, 32, .22);
}

.map-visual span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.map-visual strong {
    margin-top: 6px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
}

.contact-map-card p {
    margin: 0;
    padding: 18px 20px 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.contact-seo-section {
    padding-top: 0;
    padding-bottom: 4px;
}

.contact-faq-section,
.motor-catalog-faq-section {
    padding-bottom: clamp(48px, 7vw, 82px);
}

.bank-page {
    padding-top: clamp(30px, 5vw, 58px);
    padding-bottom: clamp(50px, 7vw, 82px);
}

.bank-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: clamp(18px, 4vw, 42px);
    align-items: stretch;
}

.bank-hero-copy,
.bank-logo-panel,
.bank-account-card,
.bank-note-card,
.bank-warning {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.bank-hero-copy {
    padding: clamp(24px, 4vw, 38px);
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .075), transparent 38%),
        #ffffff;
}

.bank-hero-copy h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}

.bank-hero-copy p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.bank-logo-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 230px;
    padding: clamp(24px, 4vw, 34px);
}

.bank-logo-panel img {
    width: min(100%, 310px);
    height: auto;
}

.bank-logo-panel span {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f7e8e8;
    color: var(--accent);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.bank-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 18px;
    margin-top: 18px;
}

.bank-account-card {
    overflow: hidden;
}

.bank-account-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(16, 20, 24, .07);
    background:
        linear-gradient(135deg, rgba(209, 43, 32, .09), transparent 38%),
        #f9fafb;
}

.bank-account-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.bank-account-head strong {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.18;
}

.bank-account-head i,
.bank-note-card > i,
.bank-warning i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.bank-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 10px;
}

.bank-info-list div {
    display: grid;
    gap: 6px;
    min-height: 82px;
    padding: 16px;
    border: 1px solid rgba(16, 20, 24, .055);
    border-radius: 13px;
    background: #ffffff;
}

.bank-info-list dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.bank-info-list dd {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.38;
}

.bank-info-list .bank-iban-row {
    grid-column: 1 / -1;
}

.bank-info-list .bank-iban-row dd {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: clamp(20px, 2.2vw, 28px);
    letter-spacing: .01em;
    overflow-wrap: anywhere;
}

.bank-copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 0 10px 14px;
}

.bank-copy-row input {
    min-width: 0;
    height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 11px;
    background: #f8fafb;
    color: var(--steel);
    font: 850 13px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
}

.bank-copy-row button,
.bank-note-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 11px;
    background: var(--accent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
}

.bank-copy-row button.is-copied {
    background: #23c45e;
}

.bank-note-card {
    padding: 24px;
    background:
        linear-gradient(160deg, rgba(209, 43, 32, .10), rgba(16, 20, 24, .015) 42%),
        #ffffff;
}

.bank-note-card h2 {
    margin: 14px 0 10px;
    font-size: 21px;
    line-height: 1.24;
}

.bank-note-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.bank-note-card a {
    background: #23c45e;
    box-shadow: 0 14px 30px rgba(35, 196, 94, .18);
}

.bank-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 18px;
    background: #fffafa;
}

.bank-warning p {
    margin: 0;
    color: var(--steel);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.58;
}

.stock-request {
    align-self: start;
    padding: 18px;
    border-radius: 8px;
    background: #f8fafb;
}

.stock-request span,
.stock-request strong {
    display: block;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span::before {
    content: "/";
    margin-right: 8px;
    color: rgba(16, 20, 24, .32);
}

.about-page-hero {
    overflow: hidden;
    background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .94) 52%, rgba(245, 247, 248, .72) 100%);
    border-bottom: 1px solid rgba(16, 20, 24, .08);
}

.about-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: clamp(34px, 5vw, 74px);
    align-items: center;
    padding-top: clamp(42px, 6vw, 76px);
    padding-bottom: clamp(40px, 6vw, 72px);
}

.about-page-copy h1 {
    max-width: 780px;
    font-size: clamp(30px, 3.6vw, 48px);
    line-height: 1.08;
}

.about-page-lead {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.about-page-lead strong {
    color: var(--ink);
}

.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.button.secondary {
    background: #ffffff;
    color: var(--ink);
    border-color: rgba(16, 20, 24, .10);
}

.button.secondary:hover {
    border-color: rgba(209, 43, 32, .28);
    color: var(--accent);
}

.about-page-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 82px rgba(16, 20, 24, .16);
}

.about-page-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #ffffff;
}

.about-page-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.about-page-stats article {
    display: grid;
    gap: 7px;
    padding: 18px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(16, 20, 24, .052);
}

.about-page-stats i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.about-page-stats strong {
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
}

.about-page-stats span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.about-answer-section {
    display: grid;
    grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 66px);
    align-items: start;
    padding-top: 34px;
    padding-bottom: 48px;
}

.about-answer-section h2,
.about-detail-section h2,
.about-local-section h2 {
    max-width: 720px;
}

.about-answer-section > p {
    margin: 0;
    padding: 22px;
    border-left: 3px solid var(--accent);
    border-radius: 0 14px 14px 0;
    background: #ffffff;
    color: var(--steel);
    box-shadow: 0 16px 38px rgba(16, 20, 24, .052);
    font-size: 17px;
    line-height: 1.78;
}

.about-detail-section,
.about-process-section {
    background: #ffffff;
}

.about-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding-top: 58px;
    padding-bottom: 58px;
}

.about-rich-text p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.78;
}

.about-side-panel {
    position: sticky;
    top: 140px;
    padding: 22px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fafb);
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.about-side-panel strong {
    display: block;
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 900;
}

.about-side-panel ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-side-panel li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
    color: var(--steel);
    font-size: 14px;
    line-height: 1.5;
}

.about-side-panel i {
    margin-top: 4px;
    color: var(--accent);
}

.about-brand-section {
    padding-top: 58px;
    padding-bottom: 58px;
}

.about-brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-brand-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 999px;
    background: #ffffff;
    color: var(--steel);
    box-shadow: 0 10px 24px rgba(16, 20, 24, .045);
    font-size: 13px;
    font-weight: 900;
}

.about-process-section .site-shell {
    padding-top: 58px;
    padding-bottom: 58px;
}

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

.about-process-grid article {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fafb);
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.about-process-grid span {
    position: absolute;
    right: 18px;
    top: 14px;
    color: rgba(16, 20, 24, .08);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.about-process-grid i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.about-process-grid h3 {
    margin: 16px 0 8px;
    font-size: 18px;
    line-height: 1.3;
}

.about-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
}

.about-local-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding-top: 58px;
    padding-bottom: 58px;
}

.about-local-section p {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.78;
}

.about-local-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.about-local-card strong {
    color: var(--ink);
    font-size: 15px;
    font-weight: 900;
}

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

.about-local-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.about-faq-section {
    padding-top: 58px;
    padding-bottom: 70px;
}

.about-faq-list {
    display: grid;
    gap: 10px;
}

.about-faq-list details {
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(16, 20, 24, .045);
}

.about-faq-list summary {
    cursor: pointer;
    padding: 17px 18px;
    color: var(--ink);
    font-weight: 900;
}

.about-faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
    line-height: 1.68;
}

.stock-request span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.stock-request strong {
    margin-top: 8px;
    color: var(--accent);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.hero-panel {
    display: grid;
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    box-shadow: 0 24px 70px rgba(16, 20, 24, .08);
}

.hero-panel-top span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel-top strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.1;
}

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

.stat-grid div {
    min-height: 104px;
    padding: 16px;
    border: 1px solid #edf0f2;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f7f8f9);
}

.stat-grid strong,
.stat-grid span {
    display: block;
}

.stat-grid strong {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1;
}

.stat-grid span {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-strip span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--steel);
    font-size: 12px;
    font-weight: 800;
}

.section {
    padding: clamp(38px, 6vw, 76px) clamp(20px, 5vw, 72px);
}

.split-section,
.section-heading,
.cta-band {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: clamp(20px, 5vw, 72px);
}

.split-section {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.split-section > p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.home-services {
    padding-top: 0;
}

.section-heading {
    padding-bottom: 20px;
}

.featured-products {
    padding: 0 clamp(20px, 5vw, 72px) clamp(40px, 6vw, 76px);
}

.cta-band {
    margin: 0 clamp(20px, 5vw, 72px) clamp(40px, 6vw, 76px);
    padding: clamp(26px, 5vw, 48px);
    border: 1px solid rgba(209, 43, 32, .20);
    border-radius: 12px;
    background: var(--charcoal);
    color: #ffffff;
}

.cta-band .eyebrow {
    color: #f4b4ad;
}

.cta-band h2 {
    max-width: 780px;
    color: #ffffff;
}

.cta-band .button.primary {
    background: #ffffff;
    color: var(--accent);
}

@media (max-width: 820px) {
    .site-header {
        align-items: center;
        flex-wrap: wrap;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .site-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

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

    .split-section,
    .section-heading,
    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-hero,
    .catalog-layout,
    .product-detail-grid,
    .contact-panel,
    .about-page-hero-inner,
    .about-answer-section,
    .about-detail-grid,
    .about-local-section {
        grid-template-columns: 1fr;
    }

    .about-side-panel {
        position: static;
    }

    .gallery {
        position: static;
    }

    .cta-panel,
    .product-detail-info-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .service-grid,
    .about-page-stats,
    .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        padding: 14px 20px;
    }

    .site-logo img {
        width: 150px;
    }

    .site-nav {
        grid-column: 1 / -1;
        gap: 18px;
        font-size: 14px;
    }

    .header-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-panel {
        display: none;
    }

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

    .hero-search div,
    .result-bar {
        flex-direction: column;
    }

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

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

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

/* Home v2 */
.site-shell {
    width: min(1280px, calc(100% - 44px));
    margin-inline: auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 2000;
    display: block;
    min-height: auto;
    padding: 0;
    border-bottom: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    transition: box-shadow .18s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(16, 20, 24, .10);
}

.announce-band {
    background: linear-gradient(90deg, #11171c, #1c252d);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.announce-inner {
    min-height: 36px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 250px;
    align-items: center;
    gap: 18px;
}

.announce-inner a,
.announce-inner span {
    font-weight: 800;
}

.account-link,
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    width: max-content;
    padding: 0 10px;
    border-radius: 999px;
}

.account-link {
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
}

.whatsapp-link {
    justify-self: end;
    background: #23c45e;
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .16), 0 8px 22px rgba(35, 196, 94, .28);
}

.whatsapp-link:hover {
    background: #18a94e;
}

.top-marquee {
    overflow: hidden;
    min-width: 0;
    color: #ffd8d3;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.top-marquee div {
    width: max-content;
    display: flex;
    gap: 34px;
    animation: topMarquee 22s linear infinite;
}

@keyframes topMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.header-main {
    min-height: 88px;
    display: grid;
    grid-template-columns: 240px minmax(260px, 1fr) 190px;
    align-items: center;
    gap: 24px;
    transition: min-height .18s ease, padding .18s ease;
}

.site-logo img {
    width: 210px;
    height: auto;
}

.mobile-menu-toggle {
    display: none;
}

.top-search {
    position: relative;
    z-index: 5;
}

.top-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(16, 20, 24, .10);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(16, 20, 24, .06);
}

.top-search-form input {
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 0;
    outline: none;
    font: inherit;
    color: var(--ink);
}

.top-search-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: 8px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.live-search-panel {
    position: fixed;
    top: var(--live-search-top, 120px);
    left: var(--live-search-left, 20px);
    width: var(--live-search-width, 420px);
    right: auto;
    z-index: 3000;
    overflow: hidden;
    max-height: min(460px, calc(100vh - 210px));
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(16, 20, 24, .18);
}

.live-result {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #edf0f2;
}

.live-result:last-child {
    border-bottom: 0;
}

.live-result:hover {
    background: #f7f9fa;
}

.live-result img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 8px;
    background: #f3f6f8;
}

.live-result strong,
.live-result small {
    display: block;
}

.live-result strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-result small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.live-empty {
    padding: 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.dealer-actions {
    display: flex;
    justify-content: flex-end;
}

.dealer-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #ffffff;
    color: var(--steel);
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
}

.dealer-actions .dealer-primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.menu-band {
    border-top: 1px solid rgba(16, 20, 24, .07);
    border-bottom: 1px solid rgba(16, 20, 24, .07);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.site-nav {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.8vw, 34px);
    color: var(--steel);
    font-size: 15px;
    font-weight: 900;
}

.site-nav a,
.eyebrow,
.account-link,
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-nav a:hover {
    color: var(--accent);
}

.site-nav a {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid transparent;
    border-radius: 999px;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-nav a:hover {
    border-color: rgba(209, 43, 32, .24);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(16, 20, 24, .08);
    transform: translateY(-1px);
}

.site-nav i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f3f5;
    color: var(--accent);
    font-size: 11px;
}

.home-slider {
    width: min(1280px, calc(100% - 44px));
    margin: 28px auto 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: var(--charcoal);
    box-shadow: 0 28px 80px rgba(16, 20, 24, .10);
}

.slider-track {
    position: relative;
    min-height: 430px;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: clamp(30px, 5vw, 62px);
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity .45s ease, transform .45s ease;
}

.slide::before,
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
}

.slide::before {
    background-image: var(--slide-image);
    background-size: cover;
    background-position: center right;
}

.slide::after {
    background:
        linear-gradient(90deg, rgba(16, 20, 24, .92) 0%, rgba(16, 20, 24, .80) 38%, rgba(16, 20, 24, .24) 72%, rgba(16, 20, 24, .10) 100%),
        linear-gradient(0deg, rgba(16, 20, 24, .26), rgba(16, 20, 24, .02));
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide h1 {
    max-width: 560px;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.14;
    color: #ffffff;
}

.slide-copy {
    position: relative;
    z-index: 2;
    max-width: 670px;
}

.slide-copy > p:not(.eyebrow) {
    max-width: 580px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.68;
}

.slide .eyebrow {
    color: #ffb8b0;
}

.slide .button.secondary {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .10);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.slider-dots {
    position: absolute;
    left: clamp(30px, 5vw, 62px);
    bottom: 24px;
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 20, 24, .18);
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--accent);
}

.slider-status {
    position: absolute;
    right: clamp(24px, 4vw, 52px);
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(16, 20, 24, .48);
    color: #ffffff;
    backdrop-filter: blur(14px);
}

.slider-status span,
.slider-status strong {
    font-size: 12px;
    font-weight: 800;
}

.slider-status small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 800;
}

.slider-status strong {
    max-width: 230px;
    overflow: hidden;
    color: #ffccc7;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.trust-band article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 92px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 40px rgba(16, 20, 24, .045);
}

.trust-band article > span,
.category-link-strip > a > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.trust-band article > span {
    width: 38px;
    height: 38px;
    font-size: 15px;
}

.trust-band strong,
.trust-band p {
    display: block;
}

.trust-band strong {
    font-size: 13px;
    line-height: 1.25;
}

.trust-band p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.category-link-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.category-link-strip a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 12px;
    background: #ffffff;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.category-link-strip a:hover {
    border-color: rgba(209, 43, 32, .24);
    box-shadow: 0 16px 38px rgba(16, 20, 24, .07);
    transform: translateY(-1px);
}

.category-link-strip > a > i {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.category-link-strip strong,
.category-link-strip small {
    display: block;
}

.category-link-strip strong {
    overflow: hidden;
    font-size: 13px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-link-strip small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.category-search-block {
    padding-top: 54px;
    padding-bottom: 64px;
}

.brand-marquee {
    padding: 38px 0 18px;
}

.brand-panel {
    overflow: hidden;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 249, 250, .94)),
        linear-gradient(90deg, rgba(209, 43, 32, .08), rgba(39, 49, 58, .06));
    box-shadow: 0 22px 60px rgba(16, 20, 24, .07);
}

.brand-head {
    margin-bottom: 16px;
}

.brand-head .eyebrow {
    margin-bottom: 0;
}

.marquee-viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 13px;
    background: rgba(255, 255, 255, .78);
}

.marquee-viewport::before,
.marquee-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 82px;
    pointer-events: none;
}

.marquee-viewport::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.marquee-viewport::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.marquee-track {
    width: max-content;
    display: flex;
    gap: 10px;
    padding: 12px;
    animation: brandMarquee 28s linear infinite;
}

.marquee-viewport:hover .marquee-track {
    animation-play-state: paused;
}

.brand-logo {
    width: 156px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, filter .18s ease;
}

.brand-logo:hover {
    border-color: rgba(209, 43, 32, .22);
    box-shadow: 0 14px 34px rgba(16, 20, 24, .08);
    filter: saturate(1.08);
    transform: translateY(-1px);
}

.brand-logo img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

@keyframes brandMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 46px;
    padding-bottom: 18px;
}

.section-note {
    max-width: 360px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.featured-product-wrap {
    padding-bottom: 54px;
}

.featured-section-head {
    align-items: center;
    padding-bottom: 16px;
}

.featured-section-head .eyebrow {
    margin-bottom: 0;
}

.featured-head-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.featured-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(209, 43, 32, .20);
    border-radius: 999px;
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 12px 28px rgba(16, 20, 24, .06);
    font-size: 13px;
    font-weight: 900;
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.featured-all-link i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(209, 43, 32, .10);
    font-size: 11px;
}

.featured-all-link:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(209, 43, 32, .20);
    transform: translateY(-1px);
}

.featured-all-link:hover i {
    background: rgba(255, 255, 255, .18);
}

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

.featured-grid .product-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(16, 20, 24, .08);
    border-radius: 14px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.featured-grid .product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .18s ease;
}

.featured-grid .product-card:hover {
    border-color: rgba(209, 43, 32, .22);
    box-shadow: 0 24px 58px rgba(16, 20, 24, .10);
    transform: translateY(-3px);
}

.featured-grid .product-card:hover::before {
    opacity: 1;
}

.featured-grid .product-image {
    margin: 10px 10px 0;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
}

.featured-grid .product-image img {
    padding: 0;
    transition: transform .22s ease;
}

.featured-grid .product-card:hover .product-image img {
    transform: scale(1.035);
}

.featured-grid .product-card-body {
    padding: 16px 16px 18px;
}

.featured-grid .product-meta {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 7px;
}

.featured-grid .product-meta span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    min-height: 27px;
    justify-content: center;
    gap: 7px;
    padding: 0 9px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 7px;
    background: #ffffff;
    color: var(--steel);
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-grid .product-meta span:last-child {
    border-color: rgba(35, 196, 94, .26);
    background: #f3fbf6;
    color: #16803f;
}

.featured-grid .product-meta i {
    font-size: 10px;
}

.featured-grid .product-meta span:first-child i {
    color: var(--muted);
}

.featured-grid .product-card h2 {
    min-height: 48px;
    font-size: 16px;
}

.featured-grid .stock-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 11px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 10px;
    background: #ffffff;
}

.product-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    margin-top: 15px;
    padding: 0 9px 0 14px;
    border: 1px solid rgba(209, 43, 32, .22);
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
    font-size: 13px;
    font-weight: 900;
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-card-link i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 11px;
    transition: transform .18s ease;
}

.product-card-link:hover {
    background: var(--accent-dark);
    box-shadow: 0 18px 36px rgba(209, 43, 32, .24);
    transform: translateY(-1px);
}

.featured-grid .product-card:hover .product-card-link i {
    transform: translateX(3px);
}

.about-section {
    display: grid;
    grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
    gap: clamp(34px, 5vw, 78px);
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
}

.about-visual {
    display: grid;
    gap: 14px;
}

.about-image {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 30px 82px rgba(16, 20, 24, .16);
}

.about-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}

.about-copy {
    max-width: 720px;
}

.about-copy h2 {
    max-width: 700px;
    margin-top: 10px;
    margin-bottom: 18px;
}

.about-copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.about-copy p strong {
    color: var(--ink);
    font-weight: 900;
}

.about-lead {
    max-width: 680px;
    margin-bottom: 20px;
}

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

.about-proof-grid span {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 5px 12px;
    align-items: center;
    min-height: 82px;
    padding: 14px 15px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    box-shadow: 0 16px 38px rgba(16, 20, 24, .07);
}

.about-proof-grid span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--accent);
}

.about-proof-grid i {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
    font-size: 14px;
}

.about-proof-grid strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.05;
}

.about-proof-grid span:first-child strong {
    color: var(--accent);
    font-size: 18px;
}

.about-proof-grid small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    align-self: start;
}

.about-service-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.about-service-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(16, 20, 24, .052);
}

.about-service-list article > i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(209, 43, 32, .10);
    color: var(--accent);
}

.about-service-list strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.about-service-list p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.62;
}

.motor-section {
    padding: 54px 0 66px;
    background: #ffffff;
}

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

.motor-card,
.blog-card-grid article {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f7f9fa);
}

.motor-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-color: rgba(16, 20, 24, .08);
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.motor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .18s ease;
}

.motor-card:hover {
    border-color: rgba(209, 43, 32, .22);
    box-shadow: 0 24px 58px rgba(16, 20, 24, .10);
    transform: translateY(-3px);
}

.motor-card:hover::before {
    opacity: 1;
}

.motor-card-image {
    display: block;
    margin: 10px 10px 0;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
    aspect-ratio: 1;
}

.motor-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.motor-card:hover .motor-card-image img {
    transform: scale(1.035);
}

.blog-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.motor-card .product-meta {
    margin: 14px 16px 0;
}

.motor-card .product-meta span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    min-height: 27px;
    gap: 7px;
    padding: 0 9px;
    border: 1px solid rgba(35, 196, 94, .26);
    border-radius: 7px;
    background: #f3fbf6;
    color: #16803f;
    font-size: 11px;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.motor-card h2,
.motor-card h3,
.blog-card-grid h3 {
    margin: 12px 0;
    font-size: 22px;
    line-height: 1.24;
}

.motor-card h2,
.motor-card h3 {
    min-height: 44px;
    margin-top: 12px;
    margin-bottom: 8px;
    margin-right: 18px;
    margin-left: 18px;
    font-size: 16px;
    line-height: 1.35;
}

.motor-card p,
.blog-card-grid p {
    color: var(--muted);
    line-height: 1.7;
}

.motor-card p {
    min-height: 48px;
    margin-top: 0;
    margin-bottom: 16px;
    margin-right: 18px;
    margin-left: 18px;
    font-size: 14px;
    line-height: 1.55;
}

.motor-card .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: auto;
    margin-right: 18px;
    margin-bottom: 18px;
    margin-left: 18px;
    padding: 0 14px;
    border: 1px solid rgba(209, 43, 32, .22);
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
    font-size: 13px;
    font-weight: 900;
}

.motor-card .text-link:hover {
    background: var(--accent-dark);
}

.blog-preview {
    padding-top: 8px;
    padding-bottom: 70px;
}

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

.blog-card-grid .blog-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-color: rgba(16, 20, 24, .08);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.blog-card-grid .blog-card:hover {
    border-color: rgba(209, 43, 32, .22);
    box-shadow: 0 24px 58px rgba(16, 20, 24, .10);
    transform: translateY(-3px);
}

.blog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--charcoal);
    aspect-ratio: 16 / 9;
}

.blog-card-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(16, 20, 24, .46));
    pointer-events: none;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.035);
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.blog-card-grid .blog-card h3 {
    margin: 10px 0 9px;
    font-size: 19px;
    line-height: 1.3;
}

.blog-card-grid .blog-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.65;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    margin-top: auto;
    padding: 0 16px;
    border: 1px solid rgba(209, 43, 32, .22);
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(209, 43, 32, .18);
    font-size: 13px;
    font-weight: 900;
}

.blog-read-more:hover {
    background: var(--accent-dark);
    color: #ffffff;
}

.blog-page {
    padding-top: 34px;
    padding-bottom: 70px;
}

.blog-result-bar {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 24px;
}

.blog-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
}

.blog-card-meta span,
.blog-card-meta time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    padding: 0 8px;
    border: 1px solid rgba(16, 20, 24, .07);
    border-radius: 999px;
    background: #f8fafb;
}

.blog-card-grid .blog-card h2 {
    margin: 10px 0 9px;
    font-size: 19px;
    line-height: 1.3;
}

.blog-empty-state {
    margin-top: 18px;
}

.blog-filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .8fr) auto auto;
    gap: 10px;
    align-items: end;
    margin: 18px 0 24px;
    padding: 14px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(16, 20, 24, .055);
}

.blog-filter-bar label {
    display: grid;
    gap: 7px;
}

.blog-filter-bar span {
    color: var(--steel);
    font-size: 12px;
    font-weight: 850;
}

.blog-filter-bar input,
.blog-filter-bar select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(16, 20, 24, .10);
    border-radius: 11px;
    background: #f8fafb;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
}

.blog-detail-page {
    padding-top: 34px;
    padding-bottom: 78px;
}

.blog-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    padding: 26px 0 34px;
}

.blog-detail-heading h1 {
    max-width: 850px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.blog-detail-heading > p:not(.eyebrow) {
    max-width: 780px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.blog-detail-meta span,
.blog-detail-meta time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 999px;
    background: #ffffff;
    color: var(--steel);
    font-size: 12px;
    font-weight: 850;
}

.blog-detail-cover {
    overflow: hidden;
    width: 100%;
    margin: 0;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 22px 58px rgba(16, 20, 24, .08);
}

.blog-detail-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #ffffff;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.blog-content {
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(16, 20, 24, .055);
    color: #27313a;
    font-size: 16px;
    line-height: 1.82;
}

.blog-content > *:first-child {
    margin-top: 0;
}

.blog-content > *:last-child {
    margin-bottom: 0;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: var(--ink);
    line-height: 1.2;
}

.blog-content h2 {
    margin: 34px 0 14px;
    font-size: clamp(23px, 2vw, 30px);
}

.blog-content h3 {
    margin: 28px 0 12px;
    font-size: 21px;
}

.blog-content h4 {
    margin: 24px 0 10px;
    font-size: 18px;
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote,
.blog-content table,
.blog-content figure,
.blog-content pre {
    margin: 0 0 18px;
}

.blog-content ul,
.blog-content ol {
    padding-left: 22px;
}

.blog-content li + li {
    margin-top: 7px;
}

.blog-content a {
    color: var(--accent);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.blog-content blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    background: #fff5f4;
    color: var(--steel);
    font-weight: 700;
}

.blog-content figure {
    overflow: hidden;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 14px;
    background: #f8fafb;
}

.blog-content figure img,
.blog-content > img {
    width: 100%;
    height: auto;
}

.blog-content figcaption {
    padding: 10px 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.blog-content table {
    width: 100%;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(16, 20, 24, .10);
    border-radius: 14px;
    background: #ffffff;
    font-size: 14px;
}

.blog-content th,
.blog-content td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(16, 20, 24, .08);
    text-align: left;
    vertical-align: top;
}

.blog-content th {
    background: #f7f9fa;
    color: var(--ink);
    font-weight: 900;
}

.blog-content tr:last-child td {
    border-bottom: 0;
}

.blog-content pre {
    overflow-x: auto;
    padding: 16px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
}

.blog-answer-box {
    margin: 0 0 26px;
    padding: 18px 20px;
    border: 1px solid rgba(209, 43, 32, .18);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7f6, #ffffff);
}

.blog-answer-box strong {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.blog-answer-box p {
    margin: 0;
    color: #27313a;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 650;
}

.blog-faq-section,
.blog-related-links,
.blog-detail-cta {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(16, 20, 24, .08);
}

.blog-related-links > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-related-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(209, 43, 32, .18);
    border-radius: 999px;
    background: #fff7f6;
    color: var(--accent);
    font-size: 13px;
    text-decoration: none;
}

.blog-detail-cta {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(209, 43, 32, .18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(209, 43, 32, .12), transparent 34%),
        linear-gradient(135deg, #ffffff, #fff7f6);
    box-shadow: 0 18px 46px rgba(16, 20, 24, .055);
}

.blog-detail-cta h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.18;
}

.blog-detail-cta p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--steel);
    line-height: 1.7;
}

.blog-detail-cta div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.blog-detail-cta .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    text-align: center;
    text-decoration: none;
}

.blog-detail-cta .button i {
    flex: 0 0 18px;
    width: 18px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
}

.blog-detail-cta .button span {
    min-width: 0;
    line-height: 1.25;
}

.blog-side-panel {
    position: sticky;
    top: 128px;
    display: grid;
    gap: 14px;
}

.blog-side-card {
    padding: 20px;
    border: 1px solid rgba(16, 20, 24, .08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(16, 20, 24, .055);
}

.blog-side-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 12px;
    background: #fff0ef;
    color: var(--accent);
}

.blog-side-card h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.blog-side-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.blog-side-card .button {
    width: 100%;
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3f6f8;
    color: var(--steel);
    font-size: 12px;
    font-weight: 850;
}

.related-blog-section {
    margin-top: 42px;
}

.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    max-width: min(328px, calc(100vw - 32px));
    padding: 8px 8px 8px 18px;
    border: 1px solid rgba(209, 43, 32, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 52px rgba(16, 20, 24, .18);
    color: var(--ink);
    backdrop-filter: blur(14px);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.floating-call:hover {
    border-color: rgba(209, 43, 32, .40);
    box-shadow: 0 24px 62px rgba(16, 20, 24, .22);
    transform: translateY(-2px);
}

.floating-call-text {
    display: block;
    min-width: 0;
    text-align: right;
}

.floating-call-text strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.floating-call-text small {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.floating-call-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(209, 43, 32, .32);
    font-size: 18px;
}

.site-footer {
    display: block;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(209, 43, 32, .10), transparent 34%),
        linear-gradient(180deg, #151a1e 0%, #0f1315 100%);
    color: rgba(255, 255, 255, .72);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(290px, 1.35fr) minmax(130px, .6fr) minmax(150px, .7fr) minmax(260px, 1fr);
    gap: clamp(24px, 4vw, 48px);
    padding: 34px 0 30px;
}

.footer-brand,
.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-logo {
    display: inline-flex;
    width: max-content;
    max-width: 200px;
    padding: 8px 10px;
    border-radius: 12px;
    background: #ffffff;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-brand p {
    max-width: 420px;
    margin: 4px 0 2px;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    line-height: 1.68;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact a,
.footer-contact span {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact i {
    width: 18px;
    margin-top: 3px;
    color: var(--accent);
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .54);
    font-size: 11px;
    line-height: 1.5;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .82);
    font-weight: 900;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 980px) {
    .header-main {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .dealer-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .featured-grid,
    .motor-grid,
    .blog-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(180px, .8fr);
    }

    .trust-band,
    .category-link-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-hero,
    .contact-detail-section,
    .bank-hero,
    .bank-layout {
        grid-template-columns: 1fr;
    }

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

    .product-detail-info-grid,
    .product-faq-list,
    .product-link-groups,
    .motor-spec-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: static;
    }

    .floating-call {
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        grid-template-columns: minmax(0, 1fr) 46px;
        min-height: 54px;
        padding: 7px 7px 7px 14px;
    }

    .floating-call-icon {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }

    .floating-call-text strong {
        font-size: 12px;
    }

    .floating-call-text small {
        font-size: 11px;
    }

    .site-shell,
    .home-slider {
        width: min(100% - 28px, 1280px);
    }

    .catalog-layout {
        gap: 14px;
        padding-top: 22px;
        padding-bottom: 30px;
    }

    .motor-catalog-page {
        padding-top: 22px;
        padding-bottom: 28px;
    }

    .result-bar {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .result-title h1 {
        font-size: 24px;
    }

    .catalog-search {
        width: 100%;
        padding: 6px;
        border-radius: 12px;
    }

    .catalog-search input {
        height: 40px;
        padding: 0 11px;
        font-size: 12px;
    }

    .catalog-search button {
        height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }

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

    .catalog-product-grid .product-card h2 {
        min-height: 46px;
    }

    .catalog-product-grid .product-meta,
    .featured-grid .product-meta {
        grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
        gap: 4px;
    }

    .catalog-product-grid .product-meta span,
    .featured-grid .product-meta span {
        min-height: 26px;
        gap: 4px;
        padding: 0 5px;
        font-size: 9.5px;
    }

    .product-detail {
        padding-top: 22px;
        padding-bottom: 46px;
    }

    .contact-hero {
        padding-top: 22px;
        padding-bottom: 14px;
    }

    .bank-page {
        padding-top: 22px;
        padding-bottom: 48px;
    }

    .bank-hero-copy,
    .bank-logo-panel,
    .bank-account-card,
    .bank-note-card,
    .bank-warning {
        border-radius: 15px;
    }

    .bank-hero-copy,
    .bank-logo-panel,
    .bank-note-card {
        padding: 18px;
    }

    .bank-hero-copy h1 {
        font-size: 27px;
    }

    .bank-hero-copy p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.68;
    }

    .bank-logo-panel {
        min-height: 150px;
    }

    .bank-info-list,
    .bank-copy-row {
        grid-template-columns: 1fr;
    }

    .bank-account-head {
        padding: 18px;
    }

    .bank-account-head strong {
        font-size: 20px;
    }

    .bank-info-list div {
        min-height: auto;
        padding: 13px;
    }

    .bank-info-list .bank-iban-row dd {
        font-size: 18px;
    }

    .bank-copy-row button {
        width: 100%;
    }

    .bank-warning {
        padding: 14px;
    }

    .contact-hero-copy,
    .contact-focus-card,
    .contact-address-card,
    .contact-map-card {
        border-radius: 15px;
    }

    .contact-hero-copy {
        padding: 18px;
    }

    .contact-hero-copy h1 {
        font-size: 27px;
    }

    .contact-hero-copy p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.68;
    }

    .contact-hero-actions,
    .contact-hero-actions .button {
        width: 100%;
    }

    .contact-focus-card {
        min-height: auto;
        padding: 18px;
    }

    .contact-focus-card strong {
        font-size: 26px;
    }

    .contact-action-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 18px;
    }

    .contact-action-card {
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: center;
        min-height: auto;
        gap: 4px 12px;
        padding: 14px;
    }

    .contact-action-card i {
        grid-row: span 3;
    }

    .contact-action-card strong {
        font-size: 15px;
    }

    .contact-action-card-email strong {
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: 14px;
        letter-spacing: 0;
    }

    .contact-detail-section {
        padding-bottom: 18px;
    }

    .working-hours div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .map-visual {
        min-height: 190px;
    }

    .map-visual strong {
        font-size: 20px;
    }

    .breadcrumbs {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .gallery {
        padding: 8px;
        border-radius: 15px;
    }

    .product-image-stage {
        min-height: 280px;
        border-radius: 12px;
    }

    .main-product-image {
        max-height: 360px;
        transform: scale(1.06);
    }

    .motor-main-image {
        transform: none;
    }

    .main-product-image.is-placeholder {
        transform: none;
    }

    .product-summary {
        padding: 18px;
        border-radius: 15px;
    }

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

    .product-summary p {
        font-size: 13px;
        line-height: 1.68;
    }

    .summary-badges {
        gap: 6px;
    }

    .summary-badges span {
        min-height: 27px;
        font-size: 11px;
    }

    .product-info-list > div {
        grid-template-columns: 28px minmax(0, 1fr);
        font-size: 12px;
    }

    .product-info-list i {
        width: 28px;
        height: 28px;
    }

    .cta-panel {
        padding: 15px;
        border-radius: 14px;
    }

    .product-cta-actions,
    .product-cta-actions .button {
        width: 100%;
    }

    .product-detail-info-grid article {
        padding: 16px;
    }

    .product-technical-section,
    .product-faq-section,
    .product-internal-links,
    .motor-spec-section {
        margin-top: 18px;
    }

    .product-technical-copy {
        padding: 18px;
        border-radius: 15px;
    }

    .product-technical-copy h2 {
        font-size: 22px;
    }

    .product-technical-copy p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.68;
    }

    .product-detail-info-grid,
    .product-faq-list,
    .product-link-groups,
    .motor-spec-layout,
    .motor-spec-table {
        grid-template-columns: 1fr;
    }

    .motor-spec-intro {
        padding: 16px;
    }

    .motor-spec-table div {
        min-height: auto;
        padding: 12px;
    }

    .motor-spec-help {
        padding: 18px;
    }

    .product-faq-list summary {
        padding: 14px 15px;
        font-size: 13px;
    }

    .product-link-groups nav {
        padding: 15px;
    }

    .catalog-seo-block {
        padding-top: 4px;
        padding-bottom: 44px;
    }

    .catalog-seo-intro {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 15px;
    }

    .catalog-seo-intro h2 {
        font-size: 22px;
    }

    .catalog-seo-intro p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.68;
    }

    .catalog-seo-grid,
    .catalog-faq-list {
        grid-template-columns: 1fr;
    }

    .catalog-seo-panel {
        padding: 14px;
        border-radius: 14px;
    }

    .catalog-seo-panel span {
        min-height: 46px;
        font-size: 11px;
    }

    .catalog-seo-grid article {
        padding: 16px;
    }

    .catalog-faq {
        margin-top: 26px;
    }

    .catalog-faq .section-head {
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .catalog-faq-list summary {
        padding: 14px 15px;
        font-size: 13px;
    }

    .catalog-faq-list p {
        padding: 0 15px 15px;
    }

    .about-page-hero-inner,
    .about-page-stats,
    .about-answer-section,
    .about-detail-grid,
    .about-brand-section,
    .about-process-section .site-shell,
    .about-local-section,
    .about-faq-section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .about-page-copy h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .about-page-lead,
    .about-answer-section > p,
    .about-rich-text p,
    .about-local-section p {
        font-size: 14px;
        line-height: 1.72;
    }

    .about-page-actions {
        flex-direction: column;
    }

    .about-page-actions .button {
        width: 100%;
    }

    .about-page-stats,
    .about-process-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-page-stats article,
    .about-side-panel,
    .about-process-grid article,
    .about-local-card {
        border-radius: 13px;
        padding: 16px;
    }

    .about-brand-tags {
        gap: 8px;
    }

    .about-brand-tags span {
        min-height: 34px;
        padding: 0 11px;
        font-size: 12px;
    }

    .announce-inner {
        min-height: 44px;
        grid-template-columns: 1fr 1fr;
        gap: 6px 8px;
        padding: 7px 0;
        font-size: 12px;
    }

    .account-link,
    .whatsapp-link {
        justify-self: stretch;
        justify-content: center;
        width: 100%;
    }

    .top-marquee {
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
    }

    .top-marquee div {
        animation-duration: 14s;
    }

    .brand-marquee {
        padding-top: 24px;
    }

    .brand-panel {
        padding: 14px;
        border-radius: 14px;
    }

    .brand-head {
        margin-bottom: 12px;
    }

    .marquee-viewport::before,
    .marquee-viewport::after {
        width: 42px;
    }

    .marquee-track {
        gap: 8px;
        padding: 10px;
        animation-duration: 22s;
    }

    .brand-logo {
        width: 130px;
        height: 68px;
        padding: 12px;
    }

    .brand-logo img {
        max-height: 42px;
    }

    .header-main {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        padding: 14px 0;
    }

    .site-logo img {
        width: 170px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: #ffffff;
        color: var(--ink);
        font-size: 20px;
        cursor: pointer;
    }

    .mobile-menu-toggle b {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .top-search,
    .dealer-actions {
        grid-column: 1 / -1;
    }

    .top-search-form {
        grid-template-columns: minmax(0, 1fr) 74px;
        padding: 6px;
    }

    .top-search-form button {
        min-height: 44px;
    }

    .top-search-form input::placeholder {
        font-size: 13px;
    }

    .live-search-panel {
        left: var(--live-search-left, 21px);
        width: var(--live-search-width, calc(100vw - 42px));
        max-height: min(360px, calc(100vh - 235px));
        overscroll-behavior: contain;
    }

    .dealer-actions a {
        min-height: 38px;
        flex: 1;
    }

    .whatsapp-link {
        white-space: nowrap;
        font-size: 12px;
        letter-spacing: 0;
    }

    .desktop-label {
        display: none;
    }

    .menu-band {
        display: none;
    }

    .menu-band.is-open {
        display: block;
    }

    .site-nav {
        min-height: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        font-size: 14px;
    }

    .site-nav a {
        min-height: 42px;
        padding: 12px;
        border-radius: 10px;
        border-bottom: 1px solid var(--line);
    }

    .site-nav i {
        width: 20px;
        height: 20px;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav a:hover {
        transform: none;
    }

    .slider-track {
        min-height: 440px;
    }

    .slide {
        padding: 34px 22px 58px;
        align-items: flex-start;
    }

    .slide::before {
        background-position: center;
    }

    .slide::after {
        background:
            linear-gradient(180deg, rgba(16, 20, 24, .90) 0%, rgba(16, 20, 24, .74) 52%, rgba(16, 20, 24, .36) 100%);
    }

    .slide h1 {
        font-size: 27px;
    }

    .slide-copy > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.58;
    }

    .slider-status {
        right: 18px;
        bottom: 18px;
        max-width: calc(100% - 120px);
    }

    .slider-status strong {
        display: none;
    }

    .trust-band,
    .category-link-strip {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trust-band article {
        min-height: auto;
        padding: 12px;
    }

    .about-section {
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .about-image img {
        aspect-ratio: 3 / 2;
    }

    .about-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .about-proof-grid span {
        grid-template-columns: 30px minmax(0, 1fr);
        min-height: 70px;
        padding: 10px;
        gap: 4px 9px;
    }

    .about-proof-grid span::before {
        top: 10px;
        bottom: 10px;
    }

    .about-proof-grid i {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        font-size: 11px;
    }

    .about-proof-grid strong {
        font-size: 12px;
    }

    .about-proof-grid span:first-child strong {
        font-size: 14px;
    }

    .about-proof-grid small {
        font-size: 10px;
    }

    .about-service-list article {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .about-service-list article > i {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .about-service-list p {
        font-size: 13px;
        line-height: 1.58;
    }

    .category-link-strip {
        padding-top: 0;
    }

    .category-search-block {
        padding-top: 40px;
        padding-bottom: 48px;
    }

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

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

    .section-head:not(.featured-section-head) {
        align-items: flex-start;
        flex-direction: column;
    }

    .featured-section-head {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        padding-top: 36px;
        padding-bottom: 14px;
    }

    .featured-section-head .eyebrow {
        font-size: 11px;
        gap: 6px;
    }

    .featured-head-actions {
        flex: 0 0 auto;
    }

    .featured-all-link {
        min-height: 34px;
        padding: 0 9px 0 8px;
        gap: 6px;
        font-size: 11px;
        box-shadow: 0 10px 22px rgba(16, 20, 24, .06);
    }

    .featured-all-link i {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .featured-grid .product-card {
        border-radius: 12px;
    }

    .featured-grid .product-image {
        margin: 7px 7px 0;
        border-radius: 9px;
    }

    .featured-grid .product-card-body {
        padding: 10px 10px 12px;
    }

    .featured-grid .product-meta {
        gap: 5px;
        margin-bottom: 8px;
    }

    .featured-grid .product-meta span {
        min-height: 24px;
        gap: 5px;
        padding: 0 7px;
        border-radius: 6px;
        font-size: 10px;
    }

.featured-grid .product-meta i {
    flex: 0 0 auto;
    font-size: 9px;
}

    .featured-grid .product-card h2 {
        min-height: 42px;
        font-size: 12px;
        line-height: 1.28;
    }

    .motor-card h2,
    .motor-card h3 {
        min-height: 42px;
        margin-right: 12px;
        margin-left: 12px;
        font-size: 13px;
        line-height: 1.3;
    }

    .motor-card p {
        min-height: 58px;
        margin-right: 12px;
        margin-bottom: 14px;
        margin-left: 12px;
        font-size: 12px;
        line-height: 1.5;
    }

    .motor-card .product-meta {
        margin-right: 12px;
        margin-left: 12px;
    }

    .motor-card .text-link {
        min-height: 38px;
        margin-right: 12px;
        margin-bottom: 12px;
        margin-left: 12px;
        font-size: 12px;
    }

    .featured-grid .stock-code {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        margin-top: 10px;
        padding: 8px;
        font-size: 11px;
    }

    .product-card-link {
        min-height: 36px;
        margin-top: 10px;
        padding: 0 7px 0 10px;
        border-radius: 9px;
        font-size: 11px;
    }

    .product-card-link i {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 28px 0 24px;
    }

    .footer-logo img {
        width: 170px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-bottom: 18px;
    }
}

@media (max-width: 980px) {
    .services-page-head-grid,
    .services-info-band,
    .service-detail-hero,
    .service-process-grid,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

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

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

    .blog-detail-hero,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-side-panel {
        position: static;
    }

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

@media (max-width: 640px) {
    .services-page {
        padding-top: 22px;
        padding-bottom: 54px;
    }

    .services-page .service-grid {
        grid-template-columns: 1fr;
    }

    .services-page .service-card {
        min-height: 0;
        padding: 0;
    }

    .services-page .service-card h2 {
        min-height: 0;
        font-size: 18px;
    }

    .services-contact-card {
        padding: 18px;
    }

    .services-info-band {
        margin-top: 24px;
        padding: 20px;
    }

    .service-detail-page {
        padding-top: 22px;
        padding-bottom: 54px;
    }

    .service-detail-hero {
        gap: 18px;
        padding-bottom: 22px;
    }

    .service-detail-hero h1 {
        font-size: 30px;
    }

    .service-detail-actions .button {
        width: 100%;
    }

    .service-rich-grid,
    .service-rich-grid.compact {
        grid-template-columns: 1fr;
    }

    .service-rich-section,
    .service-process-grid > div,
    .service-process-grid > aside {
        padding: 18px;
        border-radius: 14px;
    }

    .blog-page,
    .blog-detail-page {
        padding-top: 22px;
        padding-bottom: 54px;
    }

    .blog-list-grid,
    .blog-card-grid {
        grid-template-columns: 1fr;
    }

    .blog-filter-bar {
        grid-template-columns: 1fr;
    }

    .blog-detail-hero {
        gap: 18px;
        padding-bottom: 22px;
    }

    .blog-detail-heading h1 {
        font-size: 30px;
    }

    .blog-detail-heading > p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.68;
    }

    .blog-content {
        padding: 22px 18px;
        border-radius: 14px;
        font-size: 15px;
        line-height: 1.76;
    }

    .blog-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .blog-detail-cta div,
    .blog-detail-cta .button {
        width: 100%;
    }

    .blog-detail-cta div {
        grid-template-columns: 1fr;
    }
}
