@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}
:root {
    --site-bg: #ffffff;
    --surface: #ffffff;
    --surface-muted: #ecefea;
    --ink: #171a1f;
    --ink-soft: #5f6670;
    --navy: #162433;
    --navy-soft: #203247;
    --red: #bd251c;
    --red-dark: #991d17;
    --line: #dfe3e6;
    --line-dark: #314153;
    --shadow-soft: 0 18px 42px rgba(23, 26, 31, .08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--site-bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

h1,
h2,
h3,
.navbar-brand span {
    font-family: Manrope, Inter, system-ui, sans-serif;
    letter-spacing: 0;
}

a {
    color: var(--red);
    text-decoration: none;
}

a:hover {
    color: var(--red-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(189, 37, 28, .28);
    outline-offset: 3px;
}

.btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-lg {
    padding: 14px 24px;
    font-size: 16px;
}

.btn-aymar {
    --bs-btn-bg: var(--red);
    --bs-btn-border-color: var(--red);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--red-dark);
    --bs-btn-hover-border-color: var(--red-dark);
    --bs-btn-hover-color: #fff;
}

.btn-surface {
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-color: var(--ink);
    --bs-btn-hover-bg: var(--surface-muted);
    --bs-btn-hover-border-color: var(--surface-muted);
    --bs-btn-hover-color: var(--ink);
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e7e8ea;
    transition: box-shadow .22s ease, background-color .22s ease;
}

.site-header.is-scrolled {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(23, 26, 31, .08);
}

.site-topbar {
    min-height: 31px;
    display: flex;
    align-items: center;
    background: #38516b;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: .01em;
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 31px;
}

.site-topbar-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    white-space: nowrap;
}

.site-topbar a {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    transition: color .18s ease;
}

.site-topbar-links a + a {
    position: relative;
    margin-left: 12px;
}

.site-topbar-links a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    width: 1px;
    height: 14px;
    background: rgb(0 0 0 / 18%);
    transform: translateY(-50%);
}

.site-topbar a:hover {
    color: var(--red);
}

.site-navbar {
    min-height: 84px;
    padding: 0;
    transition: min-height .22s ease;
}

.site-header.is-scrolled .site-navbar {
    min-height: 72px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: var(--ink);
}

.navbar-brand img {
    width: 118px;
    height: auto;
    object-fit: contain;
}

.navbar-brand span {
    font-size: 19px;
    font-weight: 700;
}

.navbar-nav {
    gap: 20px;
}

.navbar-nav .nav-link {
    position: relative;
    color: #252b33;
    font-size: 15.5px;
    font-weight: 600;
    padding: 31px 0;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--red);
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .2s ease, transform .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--red);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search-link {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.header-search-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-lang {
    display: inline-flex;
    gap: 6px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
}

.header-lang a {
    color: var(--ink-soft);
}

.header-lang a.active {
    color: var(--red);
}

.btn-quote {
    padding: 11px 18px;
}

.search-modal .modal-content {
    border: 0;
    border-radius: 12px;
    background: var(--site-bg);
}

.modal-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 12px;
    padding: 0 22px 24px;
}

.hero-shell {
    padding: 28px 0 0;
}

.hero-panel {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    border-radius: 28px;
}

.hero-panel .carousel,
.hero-panel .carousel-inner,
.hero-panel .carousel-item {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .58;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: rgba(22, 36, 51, .54);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
    max-width: 800px;
    padding: 72px;
}

.hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(54px, 4.8vw, 68px);
    font-weight: 700;
    line-height: 1.04;
}

.hero-content p {
    max-width: 600px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-search,
.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 10px;
    max-width: 780px;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
}

.hero-search .form-control,
.search-page-form .form-control {
    height: 58px;
    border: 0;
    border-radius: 999px;
    font-size: 16px;
}

.carousel-indicators {
    right: 36px;
    bottom: 28px;
    left: auto;
    margin: 0;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

.section-pad {
    padding: 92px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-head h2,
.brand-panel-head h2,
.catalog-copy h2,
.about-layout h2,
.quote-panel h2,
.contact-layout h2,
.detail-block h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.12;
}

.section-link {
    color: var(--ink);
    font-weight: 700;
}

.section-link span,
.card-arrow,
.catalog-panel a span {
    display: inline-block;
    color: var(--red);
    transition: transform .22s ease;
}

.section-link:hover span,
.category-card:hover .card-arrow,
.product-card:hover .card-arrow,
.catalog-panel a:hover span {
    transform: translateX(3px);
}

.category-card a {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    height: 100%;
    padding: 28px;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.category-card:hover a {
    transform: translateY(-3px);
    border-color: rgba(189, 37, 28, .32);
    box-shadow: var(--shadow-soft);
}

.category-card-brand-light a,
.category-card-brand-dark a {
    min-height: 300px;
}

.category-card-brand-dark a {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.category-name {
    margin-top: auto;
    max-width: 82%;
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
}

.category-card-brand-light .category-name,
.category-card-brand-dark .category-name {
    font-size: 42px;
}

.category-meta {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 15px;
}

.category-card-brand-dark .category-meta {
    color: rgba(255, 255, 255, .72);
}

.category-media img {
    width: 100%;
    height: 155px;
    object-fit: contain;
}

.card-arrow {
    position: absolute;
    right: 28px;
    bottom: 26px;
    font-size: 26px;
}

.product-card .card-arrow {
    position: static;
    right: auto;
    bottom: auto;
    font-size: 22px;
}

.product-groups {
    background: var(--surface-muted);
}

.category-grid-balanced > [class*="col"] {
    display: flex;
}

.category-card-group-large,
.category-card-group-regular {
    width: 100%;
}

.category-card-group-large a {
    min-height: 260px;
}

.category-card-group-regular a {
    min-height: 220px;
}

.product-grid > [class*="col"] {
    display: block;
}

.product-card {
    position: relative;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(189, 37, 28, .24);
    box-shadow: var(--shadow-soft);
}

.product-card-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--ink);
}

.product-image {
    display: grid;
    place-items: center;
    min-height: 255px;
    background: var(--surface);
}

.product-image img {
    width: 100%;
    height: 255px;
    object-fit: contain;
    padding: 24px;
    transition: transform .22s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid var(--line);
}

.product-title {
    display: -webkit-box;
    min-height: 50px;
    overflow: hidden;
    color: var(--ink);
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-model {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 15px;
}

.product-codes {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 14px;
}

.product-codes span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
}

.product-codes strong {
    color: var(--ink);
}

.product-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 22px;
    font-weight: 700;
    min-height: 28px;
}

.catalog-band {
    color: #fff;
    background: var(--navy);
}

.catalog-layout {
    display: grid;
    grid-template-columns: .9fr 1.3fr;
    gap: 54px;
    align-items: center;
}

.catalog-layout-single {
    grid-template-columns: .85fr 1.15fr;
}

.catalog-layout-single .catalog-panel {
    min-height: 220px;
}

.catalog-copy h2 {
    color: #fff;
}

.catalog-copy p {
    max-width: 420px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.catalog-panels {
    display: grid;
    gap: 18px;
}

.catalog-panel {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
}

.catalog-cover-stack {
    display: grid;
    place-items: center;
    min-height: 170px;
    background: var(--surface-muted);
    border-radius: 12px;
}

.catalog-cover-stack img {
    width: 100%;
    height: 155px;
    object-fit: contain;
}

.catalog-panel h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 26px;
    font-weight: 700;
}

.catalog-panel p {
    color: var(--ink-soft);
}

.about-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.about-layout p,
.contact-layout p {
    color: var(--ink-soft);
    font-size: 18px;
}

.about-lines > div,
.contact-lines > a,
.contact-lines > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.about-lines span,
.contact-lines span {
    color: var(--red);
    font-weight: 700;
}

.about-lines strong,
.contact-lines strong {
    display: block;
    font-size: 18px;
}

.about-lines p {
    margin: 6px 0 0;
    color: var(--ink-soft);
}

.quote-section {
    padding: 36px 0 96px;
}

.quote-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
    gap: 36px;
    align-items: center;
    min-height: 240px;
    padding: 54px;
    color: #fff;
    background: var(--red);
    border-radius: 12px;
}

.quote-panel h2 {
    max-width: 700px;
    color: #fff;
}

.quote-panel p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.quote-phone {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    font-weight: 700;
}

.page-hero {
    color: #fff;
    background: var(--navy);
}

.page-hero-compact {
    min-height: 230px;
    padding: 64px 0;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(42px, 4vw, 58px);
    font-weight: 700;
}

.page-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
}

.contact-page-hero {
    min-height: 280px;
    display: grid;
    align-items: center;
    color: #fff;
    background: var(--navy);
}

.contact-page-hero .container,
.contact-page-section .container {
    max-width: 1400px;
}

.contact-page-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(44px, 4vw, 58px);
    font-weight: 700;
}

.contact-page-hero p:last-child {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.contact-page-section {
    padding: 82px 0 96px;
}

.contact-alert {
    max-width: 1400px;
    margin-bottom: 26px;
    border-radius: 12px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.contact-info-panel {
    padding: 42px;
}

.contact-form-panel {
    padding: 46px;
    box-shadow: var(--shadow-soft);
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-info-panel h2,
.contact-form-panel h2 {
    margin: 0 0 26px;
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 700;
}

.contact-info-lines {
    border-top: 1px solid var(--line);
}

.contact-info-row {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.contact-info-row span {
    display: block;
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
}

.contact-info-row strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.55;
}

.contact-info-row a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
}

.contact-form-panel .form-label {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.contact-form-panel .form-control {
    border-color: var(--line);
    border-radius: 14px;
}

.contact-form-panel .form-control-lg {
    min-height: 56px;
    font-size: 16px;
}

.contact-form-panel textarea.form-control {
    min-height: 168px;
    resize: vertical;
}

.contact-submit {
    min-width: 190px;
    min-height: 52px;
}

.contact-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact-map {
    margin-top: 48px;
    overflow: hidden;
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

.about-page-hero {
    min-height: 310px;
    display: grid;
    align-items: center;
    color: #fff;
    background: var(--navy);
}

.about-page-hero .container,
.about-page-section .container {
    max-width: 1400px;
}

.about-page-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(44px, 4vw, 58px);
    font-weight: 700;
}

.about-page-hero p:last-child {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.7;
}

.about-page-section {
    padding: 84px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(340px, 1fr);
    gap: 76px;
    align-items: start;
}

.about-intro-copy h2,
.about-section-head h2,
.about-quality h2,
.about-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 700;
    line-height: 1.16;
}

.about-intro-copy p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.82;
}

.about-principles {
    border-top: 1px solid var(--line);
}

.about-principles > div {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.about-principles span {
    color: var(--red);
    font-size: 15px;
    font-weight: 800;
}

.about-principles h3 {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 750;
    line-height: 1.35;
}

.about-principles p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    line-height: 1.72;
}

.about-section-head {
    margin-bottom: 34px;
}

.about-brand-panel em {
    color: var(--red);
    font-style: normal;
    transition: transform .18s ease;
}

.about-brand-panel:hover em {
    transform: translateX(4px);
}

.about-page-section.about-brands {
    padding-top: 0;
    padding-bottom: 70px;
}

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

.about-brand-panel {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-radius: 12px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.about-brand-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.about-brand-panel.is-ayfar {
    color: #17202b;
    background: #F5A500;
}

.about-brand-panel.is-marstech {
    color: #fff;
    background: var(--navy);
}

.about-brand-panel span {
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 800;
    line-height: 1;
}

.about-brand-panel p {
    max-width: 520px;
    margin: 18px 0 0;
    color: currentColor;
    opacity: .78;
    line-height: 1.65;
}

.about-brand-panel small {
    margin-top: auto;
    padding-top: 28px;
    color: currentColor;
    opacity: .72;
    font-weight: 800;
}

.about-brand-panel strong {
    margin-top: 12px;
    color: currentColor;
    font-weight: 800;
}

.about-brand-panel.is-ayfar em {
    color: #17202b;
}

.about-brand-panel.is-marstech em {
    color: #fff;
}

.about-quality {
    padding-top: 18px;
}

.about-quality-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 78px;
    align-items: start;
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

.about-quality p {
    max-width: 720px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.82;
}

.about-cta-section {
    padding-top: 10px;
}

.about-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 42px;
    align-items: center;
    padding: 44px;
    color: #fff;
    background: var(--navy);
    border-radius: 12px;
}

.about-cta h2 {
    max-width: 780px;
    color: #fff;
    font-size: clamp(30px, 2.6vw, 42px);
}

.about-cta p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.7;
}

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

.about-cta-actions .btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-page-hero {
    min-height: 310px;
    display: grid;
    align-items: center;
    color: #fff;
    background: var(--navy);
}

.catalog-page-hero .container,
.catalog-page-section .container {
    max-width: 1400px;
}

.catalog-page-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(44px, 4vw, 58px);
    font-weight: 700;
}

.catalog-page-hero p:last-child {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.7;
}

.catalog-page-section {
    padding: 76px 0 92px;
    background: var(--surface-muted);
}

.catalog-brand-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 56px;
}

.catalog-brand-tab {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.catalog-brand-tab:hover,
.catalog-brand-tab:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.catalog-brand-tab:focus-visible,
.catalog-card a:focus-visible {
    outline: 3px solid rgba(189, 37, 28, .34);
    outline-offset: 4px;
}

.catalog-brand-tab.active {
    border-color: rgba(189, 37, 28, .54);
    box-shadow: var(--shadow-soft);
}

.catalog-brand-tab.is-ayfar {
    color: #17202b;
    background: #F5A500;
}

.catalog-brand-tab.is-marstech {
    color: #fff;
    background: var(--navy);
}

.catalog-brand-tab span {
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: clamp(32px, 2.8vw, 44px);
    font-weight: 800;
    line-height: 1;
}

.catalog-brand-tab small {
    margin-top: 16px;
    color: currentColor;
    opacity: .76;
    font-weight: 800;
}

.catalog-brand-tab strong {
    margin-top: auto;
    padding-top: 24px;
    color: currentColor;
    font-weight: 800;
}

.catalog-brand-tab em,
.catalog-card__body em {
    font-style: normal;
    transition: transform .2s ease;
}

.catalog-brand-tab:hover em,
.catalog-card:hover .catalog-card__body em,
.catalog-card:focus-within .catalog-card__body em {
    transform: translateX(4px);
}

.catalog-brand-section {
    margin-top: 12px;
}

.catalog-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.catalog-section-header h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 2.8vw, 44px);
    font-weight: 700;
}

.catalog-section-header p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
}

.catalog-section-header > span {
    flex: 0 0 auto;
    color: var(--red);
    font-weight: 800;
}

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

.catalog-card {
    min-width: 0;
    transition: filter .24s ease, opacity .24s ease, transform .24s ease;
}

.catalog-card a,
.catalog-card__disabled {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(21, 31, 45, .08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.catalog-card a:hover,
.catalog-card:focus-within a {
    transform: translateY(-6px);
    border-color: rgba(189, 37, 28, .28);
    box-shadow: 0 24px 56px rgba(21, 31, 45, .16);
}

.catalog-card__cover {
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f4f6f8;
}

.catalog-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.catalog-card:hover .catalog-card__cover img,
.catalog-card:focus-within .catalog-card__cover img {
    transform: scale(1.025);
}

.catalog-card__cover.has-fallback {
    padding: 28px;
    color: #fff;
    background: var(--navy);
}

.catalog-card__cover.has-fallback span {
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    text-align: center;
}

.catalog-card__cover.has-fallback em {
    margin-top: 12px;
    color: rgba(255, 255, 255, .7);
    font-style: normal;
    font-weight: 800;
}

.catalog-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}

.catalog-card__body small {
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 10px;
    color: var(--red);
    background: rgba(189, 37, 28, .08);
    border-radius: 999px;
    font-weight: 800;
}

.catalog-card__body strong {
    min-height: 54px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 780;
    line-height: 1.45;
}

.catalog-card__body span {
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.catalog-card__body b {
    margin-top: auto;
    padding-top: 18px;
    color: var(--red);
    font-weight: 800;
}

.catalog-card.is-missing-file .catalog-card__disabled {
    opacity: .82;
}

.catalog-card.is-missing-file .catalog-card__body b {
    color: var(--ink-soft);
}

@media (hover: hover) and (pointer: fine) {
    .catalog-grid:has(.catalog-card:hover) .catalog-card:not(:hover),
    .catalog-grid:has(.catalog-card:focus-within) .catalog-card:not(:focus-within) {
        filter: blur(2px);
        opacity: .52;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-brand-tab,
    .catalog-card,
    .catalog-card a,
    .catalog-card__cover img,
    .catalog-brand-tab em,
    .catalog-card__body em {
        transition: none;
    }

    .catalog-brand-tab:hover,
    .catalog-brand-tab:focus-visible,
    .catalog-card a:hover,
    .catalog-card:focus-within a,
    .catalog-card:hover .catalog-card__cover img,
    .catalog-card:focus-within .catalog-card__cover img {
        transform: none;
    }
}

.catalog-help-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 56px;
    padding: 34px;
    color: #fff;
    background: var(--navy);
    border-radius: 12px;
}

.catalog-help-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 700;
}

.catalog-help-cta p {
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

    .catalog-empty {
        padding: 36px;
        color: var(--ink);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 12px;
        font-weight: 700;
    }

@media (max-width: 1399px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.breadcrumb-line {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .68);
    font-weight: 600;
}

.breadcrumb-line a,
.breadcrumb-line span {
    color: inherit;
}

.hero-chips {
    margin-top: 26px;
}

.sub-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sub-category-strip a,
.category-tags a {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
}

.hero-chips a {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.brands-tabs-section {
    background: var(--site-bg);
}

.brand-tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 44px;
}

.brand-tab-link {
    display: flex;
    align-items: end;
    justify-content: space-between;
    min-height: 118px;
    padding: 28px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.brand-tab-link.active {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.brand-tab-link span {
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: 38px;
    font-weight: 700;
}

.brand-tab-link small {
    color: inherit;
    opacity: .72;
}

.brand-panel {
    padding-top: 10px;
}

.brand-tabs.is-enhanced .brand-panel {
    display: none;
}

.brand-tabs.is-enhanced .brand-panel.active {
    display: block;
}

.brand-panel + .brand-panel {
    margin-top: 56px;
}

.brand-tabs.is-enhanced .brand-panel + .brand-panel {
    margin-top: 0;
}

.brand-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.category-link-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    border-top: 1px solid var(--line);
}

.category-link-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    min-height: 88px;
    padding: 20px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.category-link-list span {
    font-weight: 700;
}

.category-link-list small {
    grid-column: 1;
    color: var(--ink-soft);
}

.category-link-list b {
    grid-row: 1 / span 2;
    color: var(--red);
    transition: transform .22s ease;
}

.category-link-list a:hover b {
    transform: translateX(3px);
}

.catalog-list-page {
    padding-top: 72px;
    padding-bottom: 80px;
}

.compact-sidebar {
    position: sticky;
    top: 110px;
    max-height: calc(100vh - 140px);
    overflow: auto;
}

.category-sidebar {
    background: transparent;
}

.category-sidebar a {
    display: block;
    color: var(--ink);
    padding: 9px 0;
    font-weight: 600;
}

.category-sidebar a.active {
    color: var(--red);
}

.sidebar-block {
    padding: 0 0 18px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.sidebar-block > span {
    display: block;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.root-link {
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: 24px;
}

.sidebar-more,
.chip-button {
    padding: 0;
    color: var(--red);
    background: transparent;
    border: 0;
    font-weight: 700;
}

.chip-button {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.product-detail-page .product-detail-container {
    max-width: 1360px;
}

.product-detail-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.detail-breadcrumb {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.product-back-link {
    flex: 0 0 auto;
    color: var(--ink);
    border-bottom: 1px solid var(--red);
    font-size: 14px;
    font-weight: 700;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
    gap: clamp(48px, 4.6vw, 64px);
    align-items: start;
}

.product-gallery-main {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(520px, 43vw, 620px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    padding: clamp(24px, 3vw, 38px);
    transition: opacity .16s ease;
}

.product-gallery-main.is-switching img {
    opacity: .38;
}

.product-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-gallery-thumbnail {
    display: grid;
    place-items: center;
    flex: 0 0 92px;
    width: 92px;
    height: 92px;
    padding: 7px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.product-gallery-thumbnail.active,
.product-gallery-thumbnail:focus-visible {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(189, 37, 28, .12);
    outline: 0;
}

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

.product-summary {
    position: sticky;
    top: 112px;
}

.product-brand-label {
    margin: 0 0 10px;
    color: var(--red);
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
}

.product-summary h1 {
    margin: 0 0 18px;
    overflow-wrap: anywhere;
    font-size: clamp(36px, 3.7vw, 52px);
    font-weight: 700;
    line-height: 1.08;
}

.product-summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.product-summary-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: var(--ink-soft);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.product-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.product-summary-item {
    min-width: 0;
    padding: 16px;
    background: #fff;
}

.product-summary-item dt {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-summary-item dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 700;
}

.product-certificate-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    color: #fff;
    background: var(--red);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-detail-actions .btn {
    padding: 12px 18px;
    font-weight: 800;
}

.detail-phone {
    display: inline-block;
    margin-top: 16px;
    color: var(--ink-soft);
    font-weight: 700;
}

.detail-block,
.product-specifications,
.product-related-section {
    margin-top: 86px;
}

.editorial-block {
    max-width: 860px;
}

.editorial-block p {
    color: var(--ink-soft);
    font-size: 18px;
}

.product-spec-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.product-spec-table {
    width: 100%;
    min-width: 680px;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.product-spec-table th,
.product-spec-table td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    vertical-align: top;
}

.product-spec-table th {
    color: var(--ink-soft);
    background: var(--surface-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-spec-table tbody tr:last-child td {
    border-bottom: 0;
}

.product-spec-table .code-cell {
    overflow-wrap: anywhere;
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-weight: 700;
}

.product-detail-page .product-related-grid > [class*="col"] {
    display: flex;
}

.product-detail-page .product-related-grid .product-card {
    width: 100%;
}

.product-detail-page .product-related-grid .product-image {
    min-height: 230px;
}

.product-detail-page .product-related-grid .product-image img {
    height: 230px;
    object-fit: contain;
}

.document-link {
    display: inline-block;
    margin: 0 12px 12px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--red);
    font-weight: 700;
}

.search-hero-modern {
    padding: 64px 0 42px;
    background: var(--site-bg);
}

.search-hero-modern h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 4vw, 56px);
    font-weight: 700;
}

.search-page-form {
    max-width: 1260px;
    border: 1px solid var(--line);
}

.search-grid .col-lg-3:only-child {
    max-width: 330px;
}

.empty-state {
    padding: 28px 0;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.site-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
}

.site-pagination span {
    color: var(--ink-soft);
    font-weight: 700;
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: var(--navy);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 70px;
    padding: 62px 0 46px;
}

.footer-brand h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.footer-brand p {
    max-width: 520px;
}

.footer-address {
    color: rgba(255, 255, 255, .62);
    max-width: 460px;
    line-height: 1.55;
}

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

.site-footer h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .76);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: rgba(255, 255, 255, .55);
    border-top: 1px solid var(--line-dark);
    font-size: 14px;
}

.footer-bottom a {
    display: inline;
}

.reveal-block {
    opacity: 1;
}

.reveal-block.is-prep {
    opacity: .01;
    transform: translateY(16px);
}

.reveal-block.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s ease;
}

.home-page .container {
    max-width: 1360px;
}

.home-page .home-container,
.site-footer > .container {
    width: min(1400px, calc(100% - 48px));
    max-width: 1400px;
    margin-inline: auto;
}

.home-page .home-section {
    padding: 112px 0;
}

.home-page .home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 42px;
}

.home-page .home-section-head h2,
.home-page .home-catalog-copy h2,
.home-page .home-about-layout h2,
.home-page .home-quote-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.1;
}

.home-page .home-hero-wrap {
    padding: 0 0;
}

.home-page .home-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    border-radius: 0;
}

.home-page .home-hero .carousel,
.home-page .home-hero .carousel-inner,
.home-page .home-hero .carousel-item {
    position: absolute;
    inset: 0;
}

.home-page .home-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .72;
}

.home-page .home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 36, 51, .56);
}

.home-page .home-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 690px;
}

.home-page .home-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 690px;
    max-width: 960px;
    padding: 84px;
}

.home-page .home-hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(56px, 4.8vw, 68px);
    font-weight: 700;
    line-height: 1.04;
    white-space: pre-line;
}

.home-page .home-hero-content p {
    max-width: 610px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.7;
}

.home-page .home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.home-page .home-hero-actions .btn,
.home-page .home-quote-panel .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-page .home-finder {
    width: min(100%, 900px);
    background: #fff;
    border: 1px solid rgba(223, 227, 230, .92);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, .18);
}

.home-page .home-finder-tabs {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 18px;
    padding: 5px;
    background: var(--surface-muted);
    border-radius: 999px;
}

.home-page .home-finder-tabs button {
    min-height: 42px;
    padding: 0 22px;
    color: var(--ink-soft);
    background: transparent;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
}

.home-page .home-finder-tabs button.active {
    color: #fff;
    background: var(--navy);
}

.home-page .home-category-finder,
.home-page .home-code-finder {
    display: none;
}

.home-page .home-category-finder.active,
.home-page .home-code-finder.active {
    display: grid;
}

.home-page .home-category-finder {
    grid-template-columns: 1fr 1.2fr 1.2fr 170px;
    gap: 14px;
    align-items: end;
}

.home-page .home-category-finder label {
    display: grid;
    gap: 5px;
    margin: 0;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .01em;
}

.home-page .home-category-finder .form-select,
.home-page .home-code-finder .form-control {
    height: 64px;
    border-color: var(--line);
    border-radius: 16px;
    font-size: 16px;
}

.home-page .home-category-finder .btn,
.home-page .home-code-finder .btn {
    min-height: 64px;
    border-radius: 16px;
}

.home-page .home-code-finder {
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 14px;
}

.home-page .carousel-indicators {
    right: 38px;
    bottom: 30px;
    left: auto;
    margin: 0;
    gap: 8px;
}

.home-page .carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    opacity: .62;
}

.home-page .carousel-indicators .active {
    opacity: 1;
}

.home-page .carousel-control-prev,
.home-page .carousel-control-next {
    width: 64px;
}

.home-page .home-trust-strip {
    padding: 34px 0 8px;
}

.home-page .home-trust-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 155px;
    align-items: center;
    background: #f0f1ed;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-page .home-trust-inner div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px 18px;
    min-height: 112px;
    padding: 0 34px;
}

.home-page .home-trust-inner div + div {
    border-left: 1px solid var(--line);
}

.home-page .home-trust-inner span {
    color: var(--red);
    font-weight: 800;
    font-size: 17px;
    line-height: 1.25;
}

.home-page .home-trust-inner strong {
    color: var(--ink);
    font-size: 18.5px;
    line-height: 1.25;
}

.home-page .home-trust-inner p {
    grid-column: 2;
    margin: 0;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.62;
}

.home-page .home-brand-section {
    padding-top: 88px;
}

.home-page .home-brand-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 382px;
    height: 100%;
    padding: 46px;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    border-radius: 12px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.home-page .home-brand-panel.is-ayfar {
    color: #17202b;
    background: #F5A500;
}

.home-page .home-brand-panel.is-marstech,
.home-page .home-brand-panel.is-dark {
    color: #fff;
    background: var(--navy);
}

.home-page .home-brand-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.home-page .home-brand-name {
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: clamp(38px, 3vw, 46px);
    font-weight: 700;
    line-height: 1;
}

.home-page .home-brand-meta {
    margin-top: 18px;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
}

.home-page .home-brand-panel.is-ayfar .home-brand-meta,
.home-page .home-brand-panel.is-ayfar .home-brand-copy {
    color: rgba(23, 32, 43, .78);
}

.home-page .home-brand-panel.is-dark .home-brand-meta,
.home-page .home-brand-panel.is-dark .home-brand-copy,
.home-page .home-brand-panel .home-brand-copy {
    color: rgba(255, 255, 255, .76);
}

.home-page .home-brand-panel.is-ayfar .home-brand-copy {
    color: rgba(23, 32, 43, .78);
}

.home-page .home-brand-copy {
    max-width: 460px;
    margin-top: 18px;
    font-size: 17.5px;
    line-height: 1.7;
}

.home-page .home-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.home-page .home-brand-list em {
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .08);
    opacity: 1;
    padding: 7px 12px;
    font-size: 13.5px;
    font-style: normal;
    font-weight: 700;
}

.home-page .home-brand-panel.is-ayfar .home-brand-list em {
    border-color: rgba(23, 32, 43, .24);
    background: rgba(255, 255, 255);
}

.home-page .home-panel-arrow {
    position: absolute;
    right: 38px;
    bottom: 34px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    transition: transform .22s ease;
}

.home-page .home-brand-panel.is-ayfar .home-panel-arrow {
    color: #17202b;
}

.home-page .home-brand-panel:hover .home-panel-arrow,
.home-page .home-catalog-copy a:hover span {
    transform: translateX(4px);
}

.home-page .home-catalog-section {
    padding: 98px 0;
    color: #fff;
    background: var(--navy);
}

.home-page .home-catalog-panel {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
    gap: 56px;
    align-items: center;
    min-height: 440px;
}

.home-page .home-catalog-copy h2 {
    color: #fff;
}

.home-page .home-catalog-copy p {
    max-width: 500px;
    margin: 20px 0 24px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
}

.home-page .home-catalog-copy .section-link {
    display: inline-block;
    color: #fff;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.home-page .home-catalog-copy strong {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
}

.home-page .home-catalog-showcase {
    text-align: right;
}

.brands-page-hero,
.brand-groups-hero {
    background: var(--navy);
}

.brands-page-section,
.brand-groups-section {
    background: var(--surface-muted);
}

.brands-page-section .container,
.brand-groups-section .container,
.brand-groups-hero .container {
    max-width: 1400px;
}

.brand-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.brand-select-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(22, 36, 51, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.brand-select-card:hover {
    transform: translateY(-3px);
    border-color: rgba(189, 37, 28, .26);
    box-shadow: var(--shadow-soft);
}

.brand-select-card.is-ayfar {
    background: #fff9ea;
}

.brand-select-card.is-marstech {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.brand-select-logo {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 178px;
    margin-bottom: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(223, 227, 230, .92);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(22, 36, 51, .06);
}

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

.brand-select-count {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    margin-top: 0;
    padding: 6px 11px;
    color: currentColor;
    background: rgba(255, 255, 255, .52);
    border: 1px solid rgba(23, 26, 31, .1);
    border-radius: 999px;
    opacity: .82;
    font-size: 15px;
    font-weight: 800;
}

.brand-select-card.is-marstech .brand-select-count {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
}

.brand-select-copy {
    max-width: 540px;
    margin-top: 18px;
    color: currentColor;
    opacity: .78;
    font-size: 17px;
    line-height: 1.65;
}

.brand-select-cta {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    margin-top: auto;
    padding: 10px 18px;
    color: #fff;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 999px;
    font-weight: 850;
    transition: background-color .18s ease, border-color .18s ease;
}

.brand-select-card.is-marstech .brand-select-cta {
    color: #fff;
}

.brand-select-card:hover .brand-select-cta {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.brand-groups-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 36px;
    align-items: center;
}

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

.brand-groups-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.brand-groups-logo {
    display: grid;
    place-items: center;
    min-height: 150px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
}

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

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

.brand-group-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    overflow: hidden;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(22, 36, 51, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.brand-group-card:hover {
    transform: translateY(-4px);
    border-color: rgba(189, 37, 28, .24);
    box-shadow: var(--shadow-soft);
}

.brand-group-media {
    display: grid;
    place-items: center;
    height: 276px;
    margin: 18px 18px 0;
    padding: 14px;
    overflow: hidden;
    background: #f2f3ef;
    border-radius: 12px;
}

.brand-group-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .22s ease;
}

.brand-group-card:hover .brand-group-media img {
    transform: scale(1.025);
}

.brand-group-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 24px 24px;
}

.brand-group-title {
    color: var(--navy);
    font-family: Manrope, Inter, system-ui, sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.18;
}

.brand-group-meta {
    display: grid;
    gap: 3px;
    margin-top: 16px;
    color: var(--ink-soft);
    font-size: 14.5px;
    font-weight: 750;
}

.brand-group-cta {
    margin-top: auto;
    padding-top: 24px;
    color: var(--red);
    font-size: 15px;
    font-weight: 850;
}

.home-page .home-catalog-covers {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 330px;
}

.home-page .home-catalog-covers span {
    display: grid;
    place-items: center;
    width: 245px;
    height: 330px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
    transition: transform .22s ease;
}

.home-page .home-catalog-covers span + span {
    margin-left: -52px;
}

.home-page .home-catalog-covers span:nth-child(1) {
    transform: rotate(-2deg);
}

.home-page .home-catalog-covers span:nth-child(2) {
    transform: translateY(-14px);
}

.home-page .home-catalog-covers span:nth-child(3) {
    transform: rotate(2deg);
}

.home-page .home-catalog-covers span:hover {
    transform: translateY(-8px);
}

.home-page .home-catalog-covers img {
    width: 100%;
    height: 298px;
    object-fit: contain;
}

.home-page .home-catalog-showcase p {
    margin: 16px 0 2px;
    color: #fff;
    font-weight: 800;
}

.home-page .home-catalog-showcase small {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.home-page .home-about-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 76px;
    align-items: start;
}

.home-page .home-about-layout h2 {
    white-space: pre-line;
}

.home-page .home-about-layout p {
    max-width: 620px;
    margin-top: 22px;
    color: var(--ink-soft);
    font-size: 17.5px;
    line-height: 1.85;
}

.home-page .home-about-lines > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.home-page .home-about-lines > div:first-child {
    border-top: 1px solid var(--line);
}

.home-page .home-about-lines span {
    color: var(--red);
    font-weight: 800;
}

.home-page .home-about-lines strong {
    display: block;
    font-size: 19px;
    line-height: 1.45;
}

.home-page .home-about-lines p {
    margin: 7px 0 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
}

.home-page .home-quote-section {
    padding: 24px 0 84px;
}

.home-page .home-quote-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: 56px;
    align-items: center;
    min-height: 300px;
    padding: 64px 68px;
    color: #fff;
    background: #c62820;
    border-radius: 12px;
}

.home-page .home-quote-actions {
    display: grid;
    gap: 14px;
    justify-items: stretch;
    align-content: center;
    padding: 26px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
}

.home-page .home-quote-panel h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(40px, 3.15vw, 48px);
    line-height: 1.08;
}

.home-page .home-quote-panel p {
    max-width: 740px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 18.5px;
    line-height: 1.72;
}

.home-page .home-quote-actions .btn {
    width: 100%;
    min-height: 58px;
    padding-inline: 30px;
    font-size: 17px;
}

.home-page .home-quote-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
}

.home-page .home-quote-phone:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .58);
}

.site-footer {
    font-size: 15.5px;
}

.site-footer .footer-bottom a[href="https://isyaka.com/"] {
    color: rgba(255, 255, 255, .7);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .24);
    text-underline-offset: 3px;
}

@media (max-width: 1199px) {
    .home-page .home-catalog-panel,
    .home-page .home-about-layout,
    .about-intro-grid,
    .about-quality-grid,
    .about-cta {
        grid-template-columns: 1fr;
    }

    .home-page .home-catalog-covers {
        justify-content: flex-start;
    }

    .category-grid-balanced,
    .category-link-list,
    .brand-group-card-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-layout,
    .catalog-layout,
    .about-layout,
    .contact-layout,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .product-summary {
        position: static;
    }

    .product-gallery-main {
        min-height: 480px;
    }
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 9px 0;
    }

    .header-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-content {
        padding: 42px;
    }

    .home-page .home-hero-content {
        padding: 48px;
    }

    .home-page .home-trust-inner {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }

    .home-page .home-trust-inner div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .brand-tab-list,
    .brand-card-grid,
    .brand-groups-hero-inner,
    .footer-main,
    .footer-links,
    .about-brand-grid {
        grid-template-columns: 1fr;
    }

    .about-page-section,
    .catalog-page-section {
        padding: 62px 0;
    }

    .about-cta {
        padding: 34px;
    }

    .catalog-section-header,
    .catalog-help-cta {
        grid-template-columns: 1fr;
    }

    .catalog-section-header {
        display: grid;
        align-items: start;
    }

    .catalog-help-cta {
        justify-items: start;
    }
}

@media (max-width: 767.98px) {
    .site-topbar {
        display: none;
    }

    .brand-groups-hero-inner {
        gap: 20px;
    }

    .brand-groups-logo {
        width: min(100%, 240px);
        min-height: 92px;
        padding: 10px 14px;
        border-radius: 14px;
    }
}

@media (max-width: 575px) {
    .product-detail-topbar {
        flex-direction: column;
        gap: 12px;
    }

    .product-detail-layout {
        gap: 30px;
    }

    .product-gallery-main {
        min-height: 340px;
        border-radius: 12px;
    }

    .product-gallery-thumbnail {
        flex-basis: 78px;
        width: 78px;
        min-height: 66px;
    }

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

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .product-specifications,
    .product-related-section,
    .detail-block {
        margin-top: 58px;
    }

    .home-page .home-hero-search,
    .home-page .home-quote-panel,
    .home-page .home-about-lines > div,
    .home-page .home-about-lines > div,
    .brand-group-card-grid,
    .about-principles > div,
    .about-cta-actions,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-brand-selector {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-brand-tab,
    .catalog-help-cta {
        padding: 28px;
    }

    .brand-select-card {
        min-height: 380px;
        padding: 24px;
    }

    .brand-select-logo {
        min-height: 138px;
        padding: 18px;
    }

    .brand-select-logo img {
        max-height: 96px;
    }

    .home-page .home-hero,
    .home-page .home-hero-inner,
    .home-page .home-hero-content {
        min-height: 600px;
    }

    .home-page .home-hero-content,
    .home-page .home-brand-panel,
    .home-page .home-quote-panel {
        padding: 34px;
    }

    .home-page .home-catalog-covers span {
        width: 170px;
        height: 240px;
    }

    .home-page .home-catalog-covers span + span {
        margin-left: -70px;
    }

    .home-page .home-catalog-covers img {
        height: 208px;
    }

    .hero-search,
    .search-page-form,
    .modal-search-form,
    .quote-panel,
    .catalog-panel,
    .product-summary-grid {
       
    }

    .hero-panel,
    .hero-content {
        min-height: 560px;
    }

    .section-head,
    .brand-panel-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 991.98px) {
    .site-header .offcanvas-header {
        padding: 18px 22px 10px;
    }

    .site-header .offcanvas-body {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 8px 22px 22px;
    }

    .site-header .navbar-nav {
        width: 100%;
        gap: 2px;
        margin-bottom: 0 !important;
    }

    .site-header .navbar-nav .nav-link {
        display: inline-flex;
        width: auto;
        min-height: 42px;
        align-items: center;
        padding: 8px 0;
        font-size: 16px;
        line-height: 1.25;
    }

    .site-header .navbar-nav .nav-link::after {
        bottom: 5px;
    }

    .site-header .header-actions {
        width: 100%;
        gap: 10px;
        align-items: flex-start;
    }

    .site-header .header-search-link {
        width: 40px;
        height: 40px;
    }

    .site-header .header-lang {
        min-height: 32px;
        align-items: center;
    }

    .site-header .btn-quote {
        min-height: 42px;
        padding: 9px 17px;
    }
}

@media (max-width: 767.98px) {
    .home-page .home-container,
    .site-footer > .container {
        width: min(100% - 32px, 1400px);
    }

    .home-page .home-section {
        padding: 64px 0;
    }

    .home-page .home-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }

    .home-page .home-section-head h2,
    .home-page .home-catalog-copy h2,
    .home-page .home-about-layout h2,
    .home-page .home-quote-panel h2 {
        font-size: clamp(30px, 8vw, 36px);
        line-height: 1.14;
    }

    .home-page .home-hero-wrap {
        padding-top: 0px;
    }

    .home-page .home-hero {
        min-height: auto;
        border-radius: 0;
    }

    .home-page .home-hero-inner {
        min-height: auto;
    }

    .home-page .home-hero-content {
        min-height: auto;
        max-width: none;
        padding: 34px 20px 42px;
    }

    .home-page .home-hero-content h1 {
        margin-bottom: 14px;
        font-size: clamp(34px, 9.2vw, 42px);
        line-height: 1.08;
        white-space: normal;
    }

    .home-page .home-hero-content p {
        max-width: none;
        margin-bottom: 20px;
        font-size: 15.5px;
        line-height: 1.58;
    }

    .home-page .home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .home-page .home-hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 11px 16px;
        font-size: 15px;
    }

    .home-page .home-finder {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
    }

    .home-page .home-finder-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .home-page .home-finder-tabs button {
        min-height: 42px;
        padding: 0 10px;
        border-radius: 13px;
        font-size: 13.5px;
        line-height: 1.2;
    }

    .home-page .home-category-finder,
    .home-page .home-code-finder {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-page .home-category-finder label {
        gap: 6px;
        min-width: 0;
        font-size: 13px;
    }

    .home-page .home-category-finder .form-select,
    .home-page .home-code-finder .form-control {
        width: 100%;
        height: 52px;
        min-height: 52px;
        border-radius: 14px;
        font-size: 15px;
    }

    .home-page .home-category-finder .btn,
    .home-page .home-code-finder .btn {
        width: 100%;
        min-height: 52px;
        border-radius: 14px;
    }

    .home-page .carousel-indicators {
        right: 20px;
        bottom: 14px;
    }

    .home-page .carousel-control-prev,
    .home-page .carousel-control-next {
        display: none;
    }

    .home-page .home-trust-strip {
        padding: 22px 0 0;
    }

    .home-page .home-trust-inner {
        min-height: 0;
        padding: 10px;
    }

    .home-page .home-trust-inner div {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 0;
        gap: 5px 14px;
        padding: 20px 0;
    }

    .home-page .home-trust-inner strong {
        font-size: 16.5px;
    }

    .home-page .home-trust-inner p {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .home-page .home-brand-section {
        padding-top: 56px;
    }

    .home-page .home-brand-panel {
        min-height: 300px;
        padding: 28px;
        border-radius: 12px;
    }

    .home-page .home-brand-name {
        font-size: clamp(32px, 9vw, 38px);
    }

    .home-page .home-brand-copy {
        margin-top: 14px;
        font-size: 15.5px;
        line-height: 1.6;
    }

    .home-page .home-brand-list {
        gap: 7px;
        margin-top: 16px;
    }

    .home-page .home-brand-list em {
        padding: 6px 10px;
        font-size: 12.5px;
        line-height: 1.25;
    }

    .home-page .home-panel-arrow {
        right: 28px;
        bottom: 24px;
    }

    .home-page .home-catalog-section {
        padding: 62px 0;
    }

    .home-page .home-catalog-panel {
        gap: 26px;
        min-height: 0;
    }

    .home-page .home-catalog-copy p {
        margin: 14px 0 18px;
        font-size: 15.5px;
        line-height: 1.62;
    }

    .home-page .home-catalog-showcase {
        text-align: left;
    }

    .home-page .home-catalog-covers {
        justify-content: flex-start;
        min-height: 220px;
        max-width: 100%;
        overflow: hidden;
    }

    .home-page .home-catalog-covers span {
        width: min(43vw, 158px);
        height: 220px;
        padding: 10px;
        border-radius: 14px;
    }

    .home-page .home-catalog-covers span + span {
        margin-left: -54px;
    }

    .home-page .home-catalog-covers img {
        height: 198px;
    }

    .home-page .home-about-layout {
        gap: 30px;
    }

    .home-page .home-about-layout p {
        max-width: none;
        margin-top: 16px;
        font-size: 15.5px;
        line-height: 1.7;
    }

    .home-page .home-about-lines > div {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 20px 0;
    }

    .home-page .home-about-lines strong {
        font-size: 16.5px;
        line-height: 1.35;
    }

    .home-page .home-about-lines p {
        font-size: 14.5px;
        line-height: 1.55;
    }

    .home-page .home-quote-section {
        padding: 4px 0 64px;
    }

    .home-page .home-quote-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 0;
        padding: 28px;
        border-radius: 12px;
    }

    .home-page .home-quote-panel p {
        margin-top: 14px;
        font-size: 15.5px;
        line-height: 1.62;
    }

    .home-page .home-quote-actions {
        padding: 16px;
        border-radius: 12px;
    }

    .home-page .home-quote-actions .btn,
    .home-page .home-quote-phone {
        min-height: 50px;
        font-size: 15px;
    }

    .home-page .home-quote-phone {
        padding: 11px 14px;
        border-radius: 16px;
        line-height: 1.35;
    }

    .site-footer {
        font-size: 15px;
    }

    .footer-main {
        gap: 28px;
        padding: 42px 0 28px;
    }

    .footer-brand h2 {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 1.15;
    }

    .footer-brand p,
    .footer-address {
        max-width: none;
        font-size: 15px;
        line-height: 1.65;
    }

    .footer-links {
        gap: 24px;
    }

    .site-footer h3 {
        margin-bottom: 10px;
        font-size: 15.5px;
    }

    .site-footer a {
        margin-bottom: 8px;
        line-height: 1.45;
    }

    .footer-bottom {
        gap: 8px;
        padding: 18px 0;
        font-size: 13.5px;
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
    }

    .product-ajax-spinner {
        animation: none;
    }

    .reveal-block.is-prep {
        opacity: 1;
        transform: none;
    }
}

.product-browser-hero {
    min-height: 285px;
    display: grid;
    align-items: center;
}

.product-browser-hero .container,
.product-browser-page .container {
    max-width: 1400px;
}

.product-browser-hero h1 {
    font-size: clamp(38px, 3.4vw, 54px);
}

.product-browser-hero .hero-chips {
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.product-browser-hero .hero-chips a,
.product-browser-hero .hero-chips .chip-button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
}

.product-browser-page {
    background: var(--site-bg);
}

.product-browser-layout {
    display: grid;
    grid-template-columns: minmax(300px, 320px) minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

.product-filter-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 116px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-color: rgba(95, 102, 112, .38) transparent;
    scrollbar-width: thin;
}

.product-filter-sidebar::-webkit-scrollbar {
    width: 8px;
}

.product-filter-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.product-filter-sidebar::-webkit-scrollbar-thumb {
    background: rgba(95, 102, 112, .34);
    border-radius: 999px;
}

.product-filter-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(22, 36, 51, .07);
    padding: 23px;
}

.product-filter-heading {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.product-filter-heading h2 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
}

.product-filter-heading p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.product-filter-context {
    display: grid;
    gap: 10px;
    margin: 16px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.product-filter-context div,
.product-filter-fixed {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.product-filter-context span,
.product-filter-field label {
    color: var(--ink-soft);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-filter-context strong,
.product-filter-fixed {
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.product-filter-form {
    display: grid;
    gap: 15px;
}

.product-filter-field {
    display: grid;
    gap: 7px;
}

.product-filter-field .form-control,
.product-filter-field .form-select {
    min-height: 51px;
    height: 51px;
    border-color: var(--line);
    border-radius: 14px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 650;
    padding: 11px 13px;
    text-overflow: ellipsis;
}

.product-filter-field .form-control::placeholder {
    color: #7a828b;
    font-size: 13.5px;
    opacity: 1;
}

.product-filter-field .form-control:focus,
.product-filter-field .form-select:focus,
.product-filter-check input:focus-visible {
    border-color: rgba(189, 37, 28, .48);
    box-shadow: 0 0 0 .22rem rgba(189, 37, 28, .12);
}

.product-filter-fixed {
    min-height: 51px;
    align-content: center;
    padding: 12px 14px;
    background: #f7f8f8;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.product-filter-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--navy);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.45;
}

.product-filter-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--red);
}

.product-filter-actions {
    display: grid;
    gap: 11px;
    padding-top: 6px;
}

.product-filter-actions .btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-results {
    min-width: 0;
}

.product-results-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    min-height: 76px;
    margin-bottom: 22px;
    padding: 15px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.product-results-header h2 {
    margin: 0 0 2px;
    color: var(--navy);
    font-size: 24px;
    font-weight: 850;
}

.product-results-header p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 750;
}

.product-active-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
    max-width: 620px;
}

.product-active-filter,
.product-active-filters a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 800;
}

.product-active-filter {
    color: var(--navy);
    background: #f7f8f8;
    border: 1px solid var(--line);
}

.product-active-filters a {
    color: var(--red);
    background: #fff;
    border: 1px solid rgba(189, 37, 28, .24);
}

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

.product-browser-page .product-card {
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(22, 36, 51, .06);
    overflow: hidden;
}

.product-browser-page .product-card:hover {
    transform: translateY(-4px);
}

.product-browser-page .product-image {
    
    background: #f7f8f8;
}

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

.product-browser-page .product-card-body {
    min-height: 218px;
    padding: 20px;
}

.product-browser-page .product-title {
    min-height: 48px;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 850;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-browser-page .product-model {
    margin-top: 2px;
    color: #48515b;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.product-browser-page .product-codes span {
    color: #2f3843;
    font-size: 12.5px;
    line-height: 1.45;
}

.product-browser-page .product-codes strong {
    color: #69727c;
    font-size: 11.5px;
    letter-spacing: .03em;
}

.product-browser-page .product-codes {
    gap: 8px;
}

.product-browser-page .product-card-foot {
    padding-top: 15px;
    font-size: 14px;
}

.product-empty-state {
    grid-column: 1 / -1;
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
}

.product-empty-state h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 23px;
    font-weight: 850;
}

.product-empty-state p {
    max-width: 600px;
    margin: 0 auto 18px;
    color: var(--ink-soft);
}

.product-browser-page .site-pagination {
    margin-top: 42px;
}

.product-ajax-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 16, 24, .54);
}

.product-ajax-dialog {
    display: grid;
    justify-items: center;
    width: min(320px, 100%);
    padding: 26px 24px;
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(223, 227, 230, .95);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(10, 16, 24, .22);
    text-align: center;
}

.product-ajax-spinner {
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
    border: 3px solid rgba(189, 37, 28, .16);
    border-top-color: var(--red);
    border-radius: 999px;
    animation: productAjaxSpin .82s linear infinite;
}

.product-ajax-dialog strong {
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
}

.product-ajax-dialog small {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
}

@keyframes productAjaxSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199.98px) {
    .product-browser-layout {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 28px;
    }

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

@media (max-width: 991.98px) {
    .product-browser-layout {
        grid-template-columns: 1fr;
    }

    .product-filter-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        scrollbar-gutter: auto;
    }

    .product-results-header {
        flex-direction: column;
    }

    .product-active-filters {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .product-results-grid {
        grid-template-columns: 1fr;
    }

    .product-filter-panel,
    .product-results-header,
    .product-empty-state {
        border-radius: 12px;
        padding: 20px;
    }
}
