:root {
    --store-red: #d71920;
    --store-red-dark: #b90f16;
    --store-ink: #17191d;
    --store-muted: #646b73;
    --store-soft: #f4f5f6;
    --store-line: #dfe2e5;
    --store-green: #16853b;
    --store-container: 1420px;
    --store-shadow: 0 8px 24px rgba(18, 24, 30, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--store-ink);
    font-family: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.drawer-open,
body.nav-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(215, 25, 32, 0.2);
    outline-offset: 2px;
}

.store-container {
    width: min(calc(100% - 64px), var(--store-container));
    margin-inline: auto;
}

.store-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    vertical-align: -0.13em;
}

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 2000;
    padding: 9px 14px;
    border-radius: 4px;
    background: #fff;
    color: var(--store-red);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.utility-bar {
    min-height: 34px;
    border-bottom: 1px solid #e7e9eb;
    background: #fafafa;
    color: #444a50;
    font-size: 12px;
}

.utility-bar__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    gap: 10px;
}

.utility-bar__inner > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.utility-bar__divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a4a9ae;
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--store-line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
}

.store-header__inner {
    display: grid;
    min-height: 78px;
    grid-template-columns: auto auto minmax(260px, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.store-brand {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 10px;
    color: var(--store-ink);
    text-decoration: none;
}

.store-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    background: var(--store-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.03em;
    transform: skewX(-8deg);
}

.store-brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.store-brand strong {
    color: var(--store-red);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.015em;
}

.store-brand small {
    margin-top: 4px;
    color: #25292e;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.store-nav {
    display: flex;
    height: 78px;
    align-items: stretch;
    gap: 25px;
}

.store-nav a {
    position: relative;
    display: flex;
    align-items: center;
    color: #31363c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.store-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--store-red);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.store-nav a:hover,
.store-nav a.active {
    color: var(--store-red);
}

.store-nav a:hover::after,
.store-nav a.active::after {
    transform: scaleX(1);
}

.header-search {
    display: flex;
    height: 44px;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid #cfd4d8;
    border-radius: 5px;
    background: #fff;
    color: #6e757c;
}

.header-search:focus-within {
    border-color: var(--store-red);
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.08);
}

.header-search .store-icon {
    font-size: 18px;
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--store-ink);
    font-size: 13px;
}

.header-search input::placeholder {
    color: #8b9299;
}

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

.login-link,
.cart-toggle,
.mobile-nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #292e33;
    cursor: pointer;
    text-decoration: none;
}

.login-link {
    gap: 7px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
}

.login-link .store-icon,
.cart-toggle .store-icon {
    font-size: 21px;
}

.cart-toggle {
    position: relative;
    width: 45px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    min-width: 19px;
    height: 19px;
    place-items: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 12px;
    background: var(--store-red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.mobile-nav-toggle {
    display: none;
    width: 42px;
    font-size: 22px;
}

.hero-store {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--store-line);
    background:
        linear-gradient(115deg, transparent 0 62%, rgba(215, 25, 32, 0.025) 62% 100%),
        #fff;
}

.hero-store::after {
    position: absolute;
    top: 0;
    right: -120px;
    width: 520px;
    height: 100%;
    background-image:
        linear-gradient(135deg, transparent 47%, rgba(215, 25, 32, 0.08) 48%, transparent 49%),
        linear-gradient(135deg, transparent 57%, rgba(50, 55, 60, 0.05) 58%, transparent 59%);
    background-size: 120px 120px;
    content: "";
    opacity: 0.55;
    pointer-events: none;
}

.hero-store__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 570px;
    grid-template-columns: minmax(430px, 0.82fr) minmax(620px, 1.38fr);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 58px 0 54px;
}

.hero-copy h1 {
    max-width: 650px;
    margin: 0;
    color: #111317;
    font-size: clamp(46px, 4.5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 1.02;
}

.hero-copy h1 span {
    color: var(--store-red);
}

.hero-copy > p {
    max-width: 570px;
    margin: 25px 0 0;
    color: #4f565e;
    font-size: 17px;
    line-height: 1.7;
}

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

.store-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid var(--store-red);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.store-button:hover {
    transform: translateY(-2px);
}

.store-button--primary {
    background: var(--store-red);
    color: #fff;
}

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

.store-button--outline {
    background: #fff;
    color: var(--store-red);
}

.store-button--outline:hover {
    background: #fff5f5;
}

.genuine-note {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
}

.genuine-note__mark {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border-radius: 5px;
    background: var(--store-red);
    color: #fff;
    font-size: 27px;
}

.genuine-note > span:last-child {
    display: flex;
    flex-direction: column;
}

.genuine-note strong {
    font-size: 14px;
}

.genuine-note small {
    margin-top: 2px;
    color: var(--store-muted);
    font-size: 12px;
}

.hero-media {
    align-self: stretch;
    overflow: visible;
}

.hero-media img {
    width: 130%;
    max-width: none;
    height: 100%;
    margin-left: -29%;
    object-fit: cover;
    object-position: center right;
}

.category-rail {
    border-bottom: 1px solid var(--store-line);
    background: #fff;
}

.category-rail__inner {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-item {
    position: relative;
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    border: 0;
    border-right: 1px solid var(--store-line);
    background: #fff;
    color: #31363b;
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
}

.category-item:first-child {
    border-left: 1px solid var(--store-line);
}

.category-item::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--store-red);
    content: "";
    transform: scaleX(0);
    transition: transform 150ms ease;
}

.category-item .store-icon {
    color: #30353a;
    font-size: 23px;
}

.category-item:hover,
.category-item.active {
    color: var(--store-red);
}

.category-item:hover::after,
.category-item.active::after {
    transform: scaleX(1);
}

.category-item.active .store-icon {
    color: var(--store-red);
}

.catalog-section {
    padding: 56px 0 74px;
    background: #fff;
    scroll-margin-top: 90px;
}

.section-heading h2 {
    margin: 0;
    color: #17191d;
    font-size: clamp(27px, 2.2vw, 36px);
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.section-heading h2 span {
    color: var(--store-red);
}

.section-heading p {
    max-width: 620px;
    margin: 10px 0 0;
    color: var(--store-muted);
    font-size: 14px;
    line-height: 1.7;
}

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

.catalog-heading h2 {
    font-size: 30px;
}

.catalog-heading p {
    margin-top: 5px;
    font-size: 12px;
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 9px;
}

.catalog-controls select,
.filter-button {
    height: 42px;
    border: 1px solid #cdd2d7;
    border-radius: 4px;
    background: #fff;
    color: #343a40;
    font-size: 12px;
}

.catalog-controls select {
    min-width: 165px;
    padding: 0 32px 0 12px;
}

.filter-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    cursor: pointer;
}

.filter-button:hover {
    border-color: var(--store-red);
    color: var(--store-red);
}

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

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d9dde1;
    border-radius: 5px;
    background: #fff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
    border-color: #c5cbd0;
    box-shadow: var(--store-shadow);
    transform: translateY(-3px);
}

.product-card[hidden] {
    display: none;
}

.product-media {
    width: 100%;
    aspect-ratio: 1;
    border-bottom: 1px solid #e7e9eb;
    background-image: url("/public/assets/images/parts-products-sprite-v1.png");
    background-repeat: no-repeat;
    background-size: 300% 200%;
    transition: transform 220ms ease;
}

.product-card:hover .product-media {
    transform: scale(1.025);
}

.product-media--oil {
    background-position: 0 0;
}

.product-media--spark {
    background-position: 50% 0;
}

.product-media--filter {
    background-position: 100% 0;
}

.product-media--brake {
    background-position: 0 100%;
}

.product-media--belt {
    background-position: 50% 100%;
}

.product-media--chain {
    background-position: 100% 100%;
}

.product-card__body {
    display: flex;
    min-height: 265px;
    flex: 1;
    flex-direction: column;
    padding: 13px;
}

.product-category {
    margin-bottom: 5px;
    color: var(--store-red);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    color: #21252a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.product-sku {
    margin-top: 5px;
    color: #777f87;
    font-size: 10px;
}

.product-fitment {
    margin-top: 7px;
    color: #4f575f;
    font-size: 10px;
}

.product-price {
    margin-top: auto;
    padding-top: 12px;
    color: var(--store-red);
    font-size: 16px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 3px 0 11px;
    color: var(--store-green);
    font-size: 10px;
}

.add-cart-button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--store-red);
    border-radius: 4px;
    background: #fff;
    color: var(--store-red);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
}

.add-cart-button:hover,
.add-cart-button.is-added {
    background: var(--store-red);
    color: #fff;
}

.catalog-empty {
    display: flex;
    min-height: 260px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px dashed #cfd4d8;
    color: var(--store-muted);
    text-align: center;
}

.catalog-empty[hidden] {
    display: none;
}

.catalog-empty .store-icon {
    margin-bottom: 8px;
    color: #9aa1a7;
    font-size: 34px;
}

.catalog-empty strong {
    color: var(--store-ink);
}

.catalog-empty span {
    font-size: 12px;
}

.authenticity-section {
    overflow: hidden;
    border-top: 1px solid var(--store-line);
    background: #fff;
    scroll-margin-top: 90px;
}

.authenticity-grid {
    display: grid;
    min-height: 490px;
    grid-template-columns: minmax(440px, 0.9fr) minmax(580px, 1.1fr);
    align-items: center;
}

.authenticity-copy {
    position: relative;
    z-index: 2;
    padding: 65px 0;
}

.reason-list {
    display: grid;
    gap: 0;
    margin-top: 34px;
}

.reason-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    padding: 17px 0;
    border-top: 1px solid var(--store-line);
}

.reason-item:last-child {
    border-bottom: 1px solid var(--store-line);
}

.reason-item > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #f0b6b8;
    border-radius: 50%;
    color: var(--store-red);
    font-size: 21px;
}

.reason-item h3 {
    margin: 0;
    font-size: 14px;
}

.reason-item p {
    max-width: 480px;
    margin: 4px 0 0;
    color: var(--store-muted);
    font-size: 12px;
}

.authenticity-media {
    align-self: stretch;
    overflow: hidden;
}

.authenticity-media img {
    width: 128%;
    max-width: none;
    height: 100%;
    margin-left: -20%;
    object-fit: cover;
    object-position: center right;
}

.fitment-section {
    padding: 42px 0;
    background: #171d23;
    color: #fff;
    scroll-margin-top: 90px;
}

.fitment-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(680px, 1.35fr);
    align-items: end;
    gap: 55px;
}

.fitment-grid h2 {
    margin: 0;
    font-size: 25px;
    letter-spacing: -0.025em;
}

.fitment-grid > div > p {
    max-width: 430px;
    margin: 9px 0 0;
    color: #c1c8ce;
    font-size: 13px;
    line-height: 1.7;
}

.fitment-form {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1fr auto;
    align-items: end;
    gap: 12px;
}

.fitment-form label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.fitment-form label > span {
    color: #e3e7ea;
    font-size: 11px;
    font-weight: 650;
}

.fitment-form select,
.fitment-form input,
.fitment-form button {
    height: 45px;
    border-radius: 4px;
    font-size: 12px;
}

.fitment-form select,
.fitment-form input {
    width: 100%;
    border: 1px solid #56616b;
    background: #1e252c;
    color: #fff;
    padding: 0 12px;
}

.fitment-form input::placeholder {
    color: #8e989f;
}

.fitment-form button {
    min-width: 145px;
    padding: 0 20px;
    border: 0;
    background: var(--store-red);
    color: #fff;
    cursor: pointer;
    font-weight: 750;
}

.fitment-form button:hover {
    background: #ef1f27;
}

.fitment-result {
    grid-column: 1 / -1;
    min-height: 18px;
    color: #b8e5c4;
    font-size: 11px;
}

.dealer-strip {
    padding: 23px 0;
    border-bottom: 1px solid var(--store-line);
    background: #fff;
}

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

.dealer-strip article {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 13px;
}

.dealer-strip article > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--store-red);
    font-size: 25px;
}

.dealer-strip article > div {
    min-width: 0;
}

.dealer-strip h3 {
    margin: 0;
    font-size: 13px;
}

.dealer-strip p {
    margin: 3px 0 0;
    color: var(--store-muted);
    font-size: 11px;
}

.dealer-strip article > a {
    margin-left: auto;
    padding: 8px 11px;
    border: 1px solid #b9bfc5;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.dealer-strip article > a:hover {
    border-color: var(--store-red);
    color: var(--store-red);
}

.store-footer {
    padding: 50px 0 17px;
    background: #181e24;
    color: #d4d9dd;
}

.store-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 60px;
}

.store-brand--footer strong,
.store-brand--footer small {
    color: #fff;
}

.footer-brand > p {
    max-width: 330px;
    margin: 18px 0 0;
    color: #aeb7be;
    font-size: 12px;
    line-height: 1.7;
}

.store-footer h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 13px;
}

.store-footer__grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.store-footer__grid a,
.store-footer__grid span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #adb6bd;
    font-size: 11px;
    text-decoration: none;
}

.store-footer__grid a:hover {
    color: #fff;
}

.store-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #333b43;
    color: #8e989f;
    font-size: 10px;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(13, 17, 21, 0.55);
    opacity: 0;
    transition: opacity 200ms ease;
}

.cart-overlay[hidden] {
    display: none;
}

.drawer-open .cart-overlay {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 310;
    display: grid;
    width: min(440px, 100%);
    grid-template-rows: auto 1fr auto;
    background: #fff;
    box-shadow: -16px 0 45px rgba(9, 14, 18, 0.18);
    transform: translateX(105%);
    transition: transform 220ms ease;
}

.drawer-open .cart-drawer {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--store-line);
}

.cart-drawer__header h2 {
    margin: 0;
    font-size: 21px;
}

.cart-drawer__header span {
    color: var(--store-muted);
    font-size: 11px;
}

.cart-drawer__header button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 4px;
    background: #f2f4f5;
    color: #333940;
    cursor: pointer;
    font-size: 20px;
}

.cart-items {
    padding: 8px 20px;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--store-line);
}

.cart-item__media {
    width: 76px;
    height: 76px;
    border: 1px solid #e0e4e7;
    background-image: url("/public/assets/images/parts-products-sprite-v1.png");
    background-repeat: no-repeat;
    background-size: 300% 200%;
}

.cart-item__copy {
    min-width: 0;
}

.cart-item__copy h3 {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
}

.cart-item__copy > span {
    display: block;
    margin-top: 4px;
    color: var(--store-red);
    font-size: 12px;
    font-weight: 750;
}

.quantity-control {
    display: inline-grid;
    grid-template-columns: 27px 32px 27px;
    margin-top: 9px;
    overflow: hidden;
    border: 1px solid #d6dadd;
    border-radius: 3px;
}

.quantity-control button,
.quantity-control span {
    display: grid;
    height: 27px;
    place-items: center;
    border: 0;
    background: #fff;
    font-size: 11px;
}

.quantity-control button {
    color: #4c545b;
    cursor: pointer;
}

.quantity-control button:hover {
    background: #f2f4f5;
}

.cart-item__remove {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #8a9299;
    cursor: pointer;
}

.cart-item__remove:hover {
    color: var(--store-red);
}

.cart-empty {
    display: flex;
    grid-row: 2;
    align-self: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 30px;
    color: var(--store-muted);
    text-align: center;
}

.cart-empty[hidden] {
    display: none;
}

.cart-empty .store-icon {
    margin-bottom: 10px;
    color: #a0a7ad;
    font-size: 42px;
}

.cart-empty strong {
    color: var(--store-ink);
}

.cart-empty span {
    font-size: 12px;
}

.cart-drawer__footer {
    padding: 17px 20px 20px;
    border-top: 1px solid var(--store-line);
    background: #fff;
}

.cart-drawer__footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cart-drawer__footer > div span {
    color: var(--store-muted);
    font-size: 12px;
}

.cart-drawer__footer > div strong {
    font-size: 20px;
}

.cart-checkout {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 4px;
    background: var(--store-red);
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.cart-checkout.disabled {
    background: #c5c9cd;
    pointer-events: none;
}

.cart-drawer__footer small {
    display: block;
    margin-top: 9px;
    color: #818990;
    font-size: 9px;
    text-align: center;
}

.store-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 400;
    max-width: min(360px, calc(100vw - 32px));
    padding: 11px 15px;
    border-radius: 4px;
    background: #20262c;
    color: #fff;
    box-shadow: 0 10px 30px rgba(10, 15, 20, 0.22);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 170ms ease, transform 170ms ease;
}

.store-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .hero-store__inner {
        grid-template-columns: minmax(390px, 0.8fr) minmax(530px, 1.2fr);
    }

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

    .product-card__body {
        min-height: 230px;
    }

    .fitment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 1100px) {
    .store-container {
        width: min(calc(100% - 36px), var(--store-container));
    }

    .store-header__inner {
        min-height: 68px;
        grid-template-columns: auto 1fr auto;
    }

    .store-brand strong {
        font-size: 17px;
    }

    .store-brand small {
        font-size: 8px;
    }

    .header-search {
        justify-self: stretch;
    }

    .login-link span {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .store-nav {
        position: fixed;
        inset: 102px 0 auto;
        z-index: 120;
        display: flex;
        height: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px 18px 20px;
        border-bottom: 1px solid var(--store-line);
        background: #fff;
        box-shadow: 0 16px 30px rgba(18, 24, 30, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-open .store-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .store-nav a {
        min-height: 46px;
    }

    .store-nav a::after {
        display: none;
    }

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

    .hero-copy {
        padding: 55px 0 20px;
    }

    .hero-copy h1 {
        max-width: 720px;
        font-size: clamp(44px, 7vw, 64px);
    }

    .hero-media {
        height: 390px;
    }

    .hero-media img {
        width: 118%;
        margin-left: -18%;
    }

    .category-rail__inner {
        grid-auto-columns: minmax(170px, 1fr);
        grid-template-columns: none;
        grid-auto-flow: column;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .category-item {
        min-height: 70px;
    }

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

    .authenticity-copy {
        padding-bottom: 25px;
    }

    .authenticity-media {
        height: 350px;
    }

    .dealer-strip__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 680px) {
    .store-container {
        width: min(calc(100% - 28px), var(--store-container));
    }

    .utility-bar__inner {
        justify-content: center;
    }

    .utility-bar__inner > span:last-child,
    .utility-bar__divider {
        display: none;
    }

    .store-header__inner {
        display: flex;
        min-height: 66px;
        gap: 10px;
    }

    .store-brand {
        margin-right: auto;
    }

    .store-brand__mark {
        width: 36px;
        height: 36px;
    }

    .store-brand strong {
        font-size: 15px;
    }

    .store-brand small {
        font-size: 7px;
    }

    .header-search {
        position: absolute;
        top: 66px;
        right: 14px;
        left: 14px;
        height: 42px;
        background: #fff;
    }

    .store-header {
        padding-bottom: 52px;
    }

    .store-nav {
        inset-block-start: 152px;
    }

    .login-link {
        display: none;
    }

    .hero-copy {
        padding-top: 42px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-copy > p {
        font-size: 15px;
    }

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

    .store-button {
        width: 100%;
    }

    .genuine-note {
        align-items: flex-start;
    }

    .hero-media {
        height: 285px;
    }

    .hero-media img {
        width: 136%;
        margin-left: -36%;
    }

    .catalog-section {
        padding: 42px 0 55px;
    }

    .catalog-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .catalog-controls {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .catalog-controls select {
        min-width: 0;
    }

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

    .product-card__body {
        min-height: 260px;
        padding: 11px;
    }

    .product-card h3 {
        font-size: 12px;
    }

    .add-cart-button {
        min-height: 40px;
        padding-inline: 8px;
        font-size: 10px;
    }

    .authenticity-copy {
        padding-top: 52px;
    }

    .authenticity-media {
        height: 240px;
    }

    .authenticity-media img {
        width: 150%;
        margin-left: -42%;
    }

    .fitment-section {
        padding: 38px 0;
    }

    .fitment-form {
        grid-template-columns: 1fr;
    }

    .fitment-form button {
        width: 100%;
    }

    .fitment-result {
        grid-column: auto;
    }

    .dealer-strip article {
        align-items: flex-start;
    }

    .dealer-strip article > a {
        display: none;
    }

    .store-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .store-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .product-card {
        display: grid;
        grid-template-columns: 42% 58%;
    }

    .product-media {
        height: 100%;
        aspect-ratio: auto;
        border-right: 1px solid #e7e9eb;
        border-bottom: 0;
    }

    .product-card__body {
        min-height: 245px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.store-eyebrow {
    margin: 0 0 10px;
    color: var(--store-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.entry-modal-open {
    overflow: hidden;
}

.entry-modal {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: grid;
    min-width: 320px;
    place-items: center;
    padding: 24px;
}

.entry-modal[hidden] {
    display: none;
}

.entry-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 22, 0.68);
    backdrop-filter: blur(8px);
}

.entry-modal__panel {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(12, 16, 22, 0.28);
}

.entry-modal__panel > h2 {
    margin: 0;
    color: var(--store-ink);
    font-size: 34px;
    line-height: 1.08;
}

.entry-modal__panel > p:not(.store-eyebrow) {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--store-muted);
}

.entry-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--store-line);
    border-radius: 50%;
    background: #fff;
    color: var(--store-ink);
    cursor: pointer;
}

.entry-choice-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 18px;
    margin-top: 28px;
}

.entry-choice {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #fff;
    color: var(--store-ink);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.entry-choice:hover {
    border-color: rgba(215, 25, 32, 0.45);
    box-shadow: var(--store-shadow);
    transform: translateY(-2px);
}

.entry-choice--motor {
    background: linear-gradient(135deg, #fff 0%, #f5f8fb 100%);
}

.entry-choice--sparepart {
    background: linear-gradient(135deg, #fff 0%, #fff7f7 100%);
}

.entry-choice__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 8px;
    background: var(--store-red);
    color: #fff;
    font-size: 28px;
}

.entry-choice h3 {
    margin: 0;
    color: var(--store-ink);
    font-size: 28px;
    line-height: 1.05;
}

.entry-choice p {
    margin: 8px 0 0;
    color: var(--store-muted);
}

.entry-choice__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.entry-choice__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--store-red);
    font-weight: 800;
}

.motor-page {
    background: #f6f7f9;
}

.motor-header__inner {
    grid-template-columns: auto 1fr auto;
}

.motor-nav {
    justify-content: center;
}

.motor-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.motor-whatsapp {
    min-height: 42px;
    padding-inline: 16px;
}

.motor-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 56px;
    background: #fff;
}

.motor-hero::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(215, 25, 32, 0.08);
    border-radius: 50%;
    content: "";
}

.motor-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 56px;
    align-items: center;
}

.motor-hero__copy h1 {
    max-width: 720px;
    margin: 0;
    color: var(--store-ink);
    font-size: 64px;
    line-height: 0.98;
}

.motor-hero__copy h1 span {
    color: var(--store-red);
}

.motor-hero__copy > p:not(.store-eyebrow) {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--store-muted);
    font-size: 18px;
}

.motor-visual {
    position: relative;
    display: grid;
    min-height: 420px;
    place-items: center;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: linear-gradient(145deg, #15191f, #2d333d);
    color: #fff;
    box-shadow: var(--store-shadow);
    overflow: hidden;
}

.motor-visual::before {
    position: absolute;
    inset: 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    content: "";
}

.motor-visual__plate {
    position: relative;
    display: grid;
    width: 220px;
    height: 220px;
    place-items: center;
    border-radius: 50%;
    background: var(--store-red);
    font-size: 112px;
}

.motor-visual__label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.motor-visual__label strong {
    font-size: 22px;
}

.motor-visual__label span {
    color: rgba(255, 255, 255, 0.72);
}

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

.motor-stat {
    padding: 22px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #fff;
}

.motor-stat span {
    display: block;
    color: var(--store-muted);
    font-size: 13px;
}

.motor-stat strong {
    display: block;
    margin-top: 6px;
    color: var(--store-ink);
    font-size: 22px;
}

.motor-catalog {
    padding: 54px 0;
}

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

.motor-unit-card {
    overflow: hidden;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--store-shadow);
}

.motor-unit-card__media {
    display: grid;
    height: 170px;
    place-items: center;
    background: linear-gradient(135deg, #20252d, #444c57);
    color: #fff;
    font-size: 82px;
}

.motor-unit-card__body {
    padding: 22px;
}

.motor-unit-card__body > span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--store-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.motor-unit-card h3 {
    margin: 0;
    color: var(--store-ink);
    font-size: 22px;
}

.motor-unit-card p {
    min-height: 48px;
    margin: 10px 0 18px;
    color: var(--store-muted);
}

.motor-unit-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--store-red);
    font-weight: 800;
    text-decoration: none;
}

.motor-service-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
    padding: 28px;
    border-radius: 8px;
    background: #17191d;
    color: #fff;
}

.motor-service-band h2,
.motor-service-band p {
    margin: 0;
}

.motor-service-band p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
    .entry-choice-grid,
    .motor-hero__inner,
    .motor-unit-grid {
        grid-template-columns: 1fr;
    }

    .motor-header__inner {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 14px;
        padding-block: 14px;
    }

    .motor-nav {
        height: auto;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

@media (max-width: 680px) {
    .entry-modal {
        padding: 14px;
    }

    .entry-modal__panel {
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        padding: 24px 18px;
    }

    .entry-modal__panel > h2 {
        padding-right: 38px;
        font-size: 28px;
    }

    .entry-choice {
        min-height: 0;
    }

    .entry-choice__actions,
    .motor-header-actions,
    .motor-service-band {
        align-items: stretch;
        flex-direction: column;
    }

    .entry-choice__actions .store-button,
    .motor-header-actions .store-button,
    .motor-service-band .store-button {
        width: 100%;
        justify-content: center;
    }

    .motor-hero {
        padding: 48px 0 34px;
    }

    .motor-hero__copy h1 {
        font-size: 40px;
    }

    .motor-visual {
        min-height: 300px;
    }

    .motor-visual__plate {
        width: 160px;
        height: 160px;
        font-size: 82px;
    }
}