html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.wellwerk {
    --ww-yellow: #ffc400;
    --ww-yellow-dark: #d69d00;
    --ww-ink: #111820;
    --ww-panel: #0b1015;
    --ww-line: #26313b;
    --ww-soft: #eef2f6;
    --ww-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0;
    background: #f5f6f7;
    color: #111820;
    font-family: "Commissioner", "Noto Sans", sans-serif;
    font-size: 15px;
    line-height: 1.45;
}

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

.wellwerk a:hover,
.wellwerk a:focus {
    color: #ffbf00;
    text-decoration: none;
}

.wellwerk a:focus-visible,
.wellwerk button:focus-visible,
.wellwerk input:focus-visible,
.wellwerk select:focus-visible,
.wellwerk textarea:focus-visible {
    outline: 3px solid rgba(255, 196, 0, 0.72);
    outline-offset: 3px;
}

.ww-shell {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
}

.ww-header {
    background: #fff;
    color: #111820;
    position: relative;
    z-index: 20;
}

.ww-topbar {
    background: linear-gradient(180deg, #1a232c 0%, #111820 100%);
    color: #fff;
}

.ww-topbar-inner,
.ww-commerce-inner,
.ww-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ww-topbar-inner {
    min-height: 34px;
    justify-content: center;
}

.ww-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 260px;
    color: #111820;
}

.ww-logo-img {
    display: block;
    width: 260px;
    max-width: 100%;
    height: auto;
    filter: none;
}

.ww-contact-strip,
.ww-header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #111820;
    font-weight: 600;
    flex: 1 1 auto;
}

.ww-contact-strip i,
.ww-header-contact i,
.ww-mail i,
.ww-service-chips i,
.ww-auth i,
.ww-cart > i,
.ww-favorite i,
.ww-call i {
    color: #ffc400;
    margin-right: 7px;
}

.ww-info-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    color: #fff;
    font-size: 13px;
    flex: 1 1 auto;
}

.ww-info-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
}

.ww-topbar .ww-auth {
    min-height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    font-size: 13px;
    box-shadow: none;
}

.ww-commerce {
    background: #fff;
    border-bottom: 1px solid #e6ebef;
    color: #111820;
}

.ww-commerce-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 260px minmax(150px, auto) minmax(180px, auto) minmax(280px, 1fr) minmax(128px, auto) minmax(118px, auto);
    gap: 24px;
    align-items: center;
}

.ww-search {
    flex: 1 1 auto;
    min-width: 260px;
}

.ww-search .input-append {
    position: relative;
}

.ww-search input[type="text"] {
    width: 100%;
    height: 48px;
    border: 1px solid #dbe3ea;
    border-radius: 8px;
    background: #fff;
    color: #111820;
    font-size: 14px;
    padding: 0 54px 0 18px;
    box-shadow: 0 1px 2px rgba(15, 23, 32, 0.03);
}

.ww-search input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    right: 7px;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 7px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 44%),
        linear-gradient(180deg, #ffd84a 0%, #ffc400 60%, #e2a600 100%);
    color: transparent;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -2px 0 rgba(5, 8, 11, 0.18), 0 10px 18px rgba(255, 196, 0, 0.14);
    transition: background-color 0.18s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-search input[type="submit"]:hover,
.ww-search input[type="submit"]:focus {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0) 44%),
        linear-gradient(180deg, #ffe06a 0%, #ffd03a 60%, #ebb000 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -2px 0 rgba(5, 8, 11, 0.16), 0 12px 22px rgba(255, 196, 0, 0.2);
}

.ww-search input[type="submit"]:active {
    transform: translateY(-50%) scale(0.96);
}

.ww-search .input-append:after {
    content: "\f002";
    font-family: FontAwesome;
    position: absolute;
    right: 20px;
    top: 50%;
    color: #111820;
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.ww-call,
.ww-mail,
.ww-favorite,
.ww-auth,
.ww-cart {
    display: flex;
    align-items: center;
    color: #111820;
    white-space: nowrap;
    transition: color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-call,
.ww-mail {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 10px;
    align-content: center;
    min-height: 48px;
}

.ww-call:hover,
.ww-mail:hover,
.ww-favorite:hover,
.ww-auth:hover,
.ww-cart:hover {
    color: #111820;
    transform: translateY(-1px);
}

.ww-call:active,
.ww-mail:active,
.ww-favorite:active,
.ww-auth:active,
.ww-cart:active {
    transform: translateY(1px) scale(0.99);
}

.ww-call i,
.ww-mail i {
    grid-row: span 2;
    align-self: center;
    justify-self: center;
    color: #111820;
    font-size: 24px;
}

.ww-contact-title {
    display: block;
    color: #111820;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.12;
}

.ww-mail .ww-contact-title {
    font-size: 15px;
}

.ww-contact-caption {
    display: block;
    color: #66727f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.ww-cart {
    min-width: 124px;
    gap: 10px;
    justify-content: center;
}

.wellwerk .ww-cart.header-cart {
    width: auto !important;
    padding-left: 0 !important;
    background: none !important;
}

.wellwerk .ww-cart.header-cart .cart-empty,
.wellwerk .ww-cart.header-cart a {
    height: auto !important;
    min-height: 0;
    padding-left: 0 !important;
    background: none !important;
    color: #111820;
    line-height: 1.2;
}

.ww-cart a,
.ww-cart span {
    display: block;
    color: #111820;
    line-height: 1.2;
}

.ww-cart b {
    color: #111820;
    font-size: 18px;
}

.ww-cart a span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    margin-left: 8px;
    border-radius: 50%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffd84a 0%, #ffc400 58%, #e2a600 100%);
    color: #05080b;
    font-weight: 800;
}

.wellwerk .ww-cart.header-cart a span {
    position: static;
    background-image: none !important;
}

.ww-auth {
    gap: 7px;
}

.ww-auth br {
    display: none;
}

.ww-auth a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
}

.ww-nav-wrap {
    border-top: 1px solid #161f27;
    border-bottom: 1px solid #26313b;
    background: #0b1015;
}

.ww-nav {
    min-height: 58px;
}

.ww-catalog-btn,
.ww-primary-btn,
.ww-select-grid button,
.ww-promo-card b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 7px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffd84a 0%, #ffc400 58%, #e2a600 100%);
    color: #05080b;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 -2px 0 rgba(5, 8, 11, 0.18), 0 10px 20px rgba(255, 196, 0, 0.15);
    transition: background-color 0.18s var(--ww-ease-out), color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out);
}

.ww-catalog-btn:hover,
.ww-primary-btn:hover,
.ww-select-grid button:hover,
.ww-promo-card:hover b,
.wellwerk .btn:hover {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffe06a 0%, #ffd03a 58%, #ebb000 100%);
    color: #05080b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -2px 0 rgba(5, 8, 11, 0.14), 0 13px 24px rgba(255, 196, 0, 0.22);
    transform: translateY(-1px);
}

.ww-catalog-btn:active,
.ww-primary-btn:active,
.ww-secondary-btn:active,
.ww-select-grid button:active,
.ww-promo-card b:active,
.wellwerk .btn:active {
    transform: translateY(1px) scale(0.98);
}

.ww-catalog-btn i {
    margin-right: 10px;
}

.ww-catalog-menu {
    position: relative;
    flex: 0 0 auto;
    padding: 7px 0;
    margin: -7px 0;
}

.ww-catalog-menu .ww-catalog-btn {
    position: relative;
    z-index: 82;
    min-width: 217px;
    white-space: nowrap;
}

.wellwerk .ww-catalog-menu .ww-catalog-btn:hover,
.wellwerk .ww-catalog-menu .ww-catalog-btn:focus,
.wellwerk .ww-catalog-menu:hover .ww-catalog-btn,
.wellwerk .ww-catalog-menu:focus-within .ww-catalog-btn {
    color: #05080b;
}

.ww-catalog-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 81;
    width: min(760px, calc(100vw - 48px));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    border: 1px solid rgba(212, 223, 232, 0.92);
    border-radius: 0 0 12px 12px;
    background: #fff;
    color: #111820;
    padding: 18px;
    box-shadow: 0 24px 54px rgba(5, 8, 11, 0.22);
    transition: opacity 0.18s var(--ww-ease-out), transform 0.18s var(--ww-ease-out), visibility 0.18s var(--ww-ease-out);
}

.ww-catalog-menu:hover .ww-catalog-dropdown,
.ww-catalog-menu:focus-within .ww-catalog-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ww-catalog-dropdown:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 34px;
    width: 16px;
    height: 16px;
    border-top: 1px solid rgba(212, 223, 232, 0.92);
    border-left: 1px solid rgba(212, 223, 232, 0.92);
    background: #fff;
    transform: rotate(45deg);
}

.ww-catalog-dropdown-head {
    display: grid;
    gap: 3px;
    margin-bottom: 14px;
    padding: 2px 4px 14px;
    border-bottom: 1px solid #e1e8ef;
}

.ww-catalog-dropdown-head strong {
    color: #101820;
    font-size: 18px;
    font-weight: 900;
}

.ww-catalog-dropdown-head span {
    color: #65717d;
    font-size: 13px;
    font-weight: 600;
}

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

.ww-catalog-dropdown-grid a {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 70px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #f8fafc;
    padding: 12px;
    color: #111820;
    transition: border-color 0.18s var(--ww-ease-out), background 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-catalog-dropdown-grid a:hover,
.ww-catalog-dropdown-grid a:focus {
    border-color: #ffc400;
    background: #fff9df;
    color: #111820;
    transform: translateY(-1px);
}

.ww-catalog-dropdown-grid i {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #101820;
    color: #ffc400;
    font-size: 17px;
}

.ww-catalog-dropdown-grid strong,
.ww-catalog-dropdown-grid small {
    display: block;
}

.ww-catalog-dropdown-grid strong {
    color: #101820;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.ww-catalog-dropdown-grid small {
    margin-top: 2px;
    color: #66717c;
    font-size: 12px;
    font-weight: 600;
}

.ww-catalog-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e1e8ef;
}

.ww-catalog-brands a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid #d9e2ea;
    border-radius: 999px;
    background: #fff;
    color: #101820;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ww-catalog-brands a:hover,
.ww-catalog-brands a:focus {
    border-color: #ffc400;
    background: #ffc400;
    color: #05080b;
}

.ww-main-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    flex: 1 1 auto;
}

.ww-main-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    transition: color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-main-menu a:hover,
.ww-main-menu a:focus {
    color: #ffc400;
    transform: translateY(-1px);
}

.ww-truck-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    margin: -10px 0;
}

.ww-truck-menu-trigger {
    gap: 7px;
    color: #ffc400;
}

.ww-truck-menu-trigger i {
    font-size: 13px;
    transition: transform 0.18s var(--ww-ease-out);
}

.ww-truck-menu:hover .ww-truck-menu-trigger i,
.ww-truck-menu:focus-within .ww-truck-menu-trigger i {
    transform: rotate(180deg);
}

.ww-truck-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: -18px;
    z-index: 83;
    width: min(720px, calc(100vw - 48px));
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    border: 1px solid rgba(212, 223, 232, 0.92);
    border-radius: 0 0 12px 12px;
    background: #fff;
    color: #111820;
    padding: 18px;
    box-shadow: 0 24px 54px rgba(5, 8, 11, 0.22);
    transition: opacity 0.18s var(--ww-ease-out), transform 0.18s var(--ww-ease-out), visibility 0.18s var(--ww-ease-out);
}

.ww-truck-menu:hover .ww-truck-dropdown,
.ww-truck-menu:focus-within .ww-truck-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.ww-truck-dropdown:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 44px;
    width: 16px;
    height: 16px;
    border-top: 1px solid rgba(212, 223, 232, 0.92);
    border-left: 1px solid rgba(212, 223, 232, 0.92);
    background: #fff;
    transform: rotate(45deg);
}

.ww-truck-dropdown-head {
    display: grid;
    gap: 3px;
    margin-bottom: 14px;
    padding: 2px 4px 14px;
    border-bottom: 1px solid #e1e8ef;
    text-transform: none;
}

.ww-truck-dropdown-head strong {
    color: #101820;
    font-size: 18px;
    font-weight: 900;
}

.ww-truck-dropdown-head span {
    color: #65717d;
    font-size: 13px;
    font-weight: 600;
}

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

.ww-truck-brand-grid a {
    display: grid;
    grid-template-rows: 46px auto;
    align-items: center;
    justify-items: center;
    min-height: 96px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #101820;
    padding: 12px 10px;
    text-align: center;
    transition: border-color 0.18s var(--ww-ease-out), background 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out);
}

.ww-truck-brand-grid a:hover,
.ww-truck-brand-grid a:focus {
    border-color: #ffc400;
    background: #fff9df;
    color: #101820;
    box-shadow: 0 10px 22px rgba(16, 24, 32, 0.08);
    transform: translateY(-1px);
}

.ww-truck-brand-grid img {
    display: block;
    max-width: 112px;
    max-height: 42px;
    object-fit: contain;
}

.ww-truck-brand-grid span {
    margin-top: 8px;
    color: #101820;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.ww-truck-all-link {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    border-radius: 8px;
    background: #101820;
    color: #fff !important;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
}

.ww-truck-all-link:hover,
.ww-truck-all-link:focus {
    background: #ffc400;
    color: #05080b !important;
}

.ww-service-chips {
    display: flex;
    gap: 10px;
}

.ww-service-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 7px;
    background: #121820;
    color: #eef2f6;
    font-weight: 700;
}

.ww-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 8, 11, 0.98) 0%, rgba(5, 8, 11, 0.84) 40%, rgba(5, 8, 11, 0.18) 75%, rgba(5, 8, 11, 0.03) 100%),
        url("../images/main_baner.png") center right / cover no-repeat,
        #05080b;
}

.ww-hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(5, 8, 11, 0.92), rgba(5, 8, 11, 0));
}

.ww-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 780px) minmax(280px, 1fr);
    grid-template-rows: auto auto;
    column-gap: 44px;
    row-gap: 18px;
    align-items: center;
    align-content: center;
    min-height: 430px;
}

.ww-hero-copy {
    grid-column: 1;
    max-width: 560px;
}

.ww-kicker {
    margin-bottom: 16px;
    color: #ffc400;
    font-weight: 800;
    text-transform: uppercase;
}

.ww-hero h1 {
    margin: 0;
    font-family: "Russo One", "Commissioner", sans-serif;
    font-size: 46px;
    line-height: 1.08;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ww-hero h1 span {
    color: #ffc400;
}

.ww-hero p {
    margin: 16px 0 26px;
    max-width: 490px;
    color: #f4f6f8;
    font-size: 19px;
}

.ww-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ww-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid #3b4652;
    border-radius: 7px;
    color: #fff;
    padding: 0 22px;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(18, 24, 32, 0.88);
    transition: background-color 0.18s var(--ww-ease-out), border-color 0.18s var(--ww-ease-out), color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-secondary-btn:hover,
.ww-secondary-btn:focus {
    border-color: #ffc400;
    background: rgba(255, 196, 0, 0.12);
    color: #fff;
}

.ww-parts-panel {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(17, 24, 32, 0.88);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.ww-tabs {
    display: flex;
}

.ww-tabs button,
.ww-tabs a {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a222b;
    color: #fff;
    min-height: 58px;
    padding: 0 18px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    line-height: 1.15;
    cursor: pointer;
    transition: background-color 0.18s var(--ww-ease-out), color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-tabs button:hover,
.ww-tabs a:hover,
.ww-tabs button:focus,
.ww-tabs a:focus {
    background: #222d37;
    color: #fff;
}

.ww-tabs i {
    line-height: 1;
    transform: translateY(-1px);
}

.ww-tabs button.active {
    background: #ffc400;
    color: #05080b;
}

.ww-tabs button.active:hover,
.ww-tabs button.active:focus {
    background: #ffd64a;
    color: #05080b;
}

.ww-select-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(170px, 1fr)) minmax(170px, 180px);
    gap: 12px;
    padding: 22px;
}

.ww-select-grid > * {
    min-width: 0;
}

.ww-select-grid button {
    align-self: end;
    min-height: 44px;
    height: 44px;
    line-height: 1.15;
    padding: 0 16px;
}

.ww-select-grid label {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.ww-select-grid select,
.wellwerk input[type="text"],
.wellwerk input[type="password"],
.wellwerk input[type="email"],
.wellwerk input[type="tel"],
.wellwerk textarea,
.wellwerk select {
    width: 100%;
    height: 44px;
    margin-top: 7px;
    border: 1px solid #d8dde3;
    border-radius: 7px;
    background: #fff;
    color: #111820;
    padding: 0 12px;
    box-shadow: none;
}

.wellwerk .ww-search input[type="text"] {
    height: 48px;
    margin-top: 0;
    padding-right: 54px;
}

.ww-vin-note {
    padding: 0 22px 20px;
    color: #d6dde4;
}

.ww-vin-note a {
    color: #ffc400;
    font-weight: 800;
}

.ww-trust {
    margin-top: 0;
    padding-top: 22px;
    position: relative;
    z-index: 3;
    background: #fff;
}

.ww-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ww-trust-grid div,
.ww-bottom-benefits .ww-shell div {
    min-height: 86px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-content: center;
    column-gap: 12px;
    border: 1px solid #e7edf3;
    border-radius: 8px;
    background: #fff;
    color: #111820;
    padding: 18px;
}

.ww-trust-grid i,
.ww-bottom-benefits i {
    grid-row: span 2;
    color: #ffc400;
    font-size: 30px;
}

.ww-trust-grid strong,
.ww-bottom-benefits strong {
    text-transform: uppercase;
    font-weight: 800;
}

.ww-trust-grid span,
.ww-bottom-benefits span {
    color: #66727f;
}

.ww-section {
    padding: 22px 0;
}

.ww-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.ww-section-head h2,
.ww-category-list h2,
.ww-content h1 {
    margin: 0;
    color: #101820;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.ww-section-head a {
    color: #111820;
    font-weight: 800;
}

.ww-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 32, 0.08);
}

.ww-brand-card {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    color: #1b2731;
    background: #fbfcfd;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.ww-brand-card:hover,
.ww-brand-card:focus {
    color: #101820;
    border-color: #ffc400;
    box-shadow: 0 12px 22px rgba(255, 196, 0, 0.18);
    transform: translateY(-2px);
}

.ww-brand-card img {
    display: block;
    max-width: 112px;
    max-height: 42px;
    object-fit: contain;
}

.ww-brand-card span {
    color: #161f27;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.ww-products-layout {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 16px;
}

.ww-category-list,
.ww-product-hits {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 32, 0.08);
}

.ww-category-list {
    padding: 20px;
}

.ww-category-list a {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #111820;
    font-weight: 800;
}

.ww-category-list a > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: #fff7d1;
    color: #b88700;
    font-size: 14px;
}

.ww-category-list a .ww-category-copy {
    display: block;
    min-width: 0;
    color: #111820;
    line-height: 1.2;
}

.ww-category-list a .ww-category-copy span {
    display: block;
    color: #7a8490;
    font-weight: 500;
    font-size: 13px;
}

.ww-category-list .ww-all-categories {
    display: block;
    padding-left: 34px;
    color: #d69d00;
    border-bottom: 0;
}

.ww-product-hits {
    padding: 20px;
    min-width: 0;
}

.ww-product-component {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.ww-product-component .carousel-list-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.ww-product-component .carousel-item {
    width: auto !important;
    height: auto !important;
    min-height: 314px;
    margin: 0 !important;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
    text-align: left;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.18s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out), transform 0.18s var(--ww-ease-out);
}

.ww-product-component .carousel-item:hover {
    border-color: #ffc400;
    box-shadow: 0 14px 30px rgba(15, 23, 32, 0.12);
    transform: translateY(-2px);
}

.ww-product-component .item-img {
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
    border-radius: 7px;
    border: 1px solid #edf0f3;
    background: linear-gradient(180deg, #fff 0%, #f6f8fa 100%);
    overflow: hidden;
}

.ww-product-component .item-img a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ww-product-component .item-icon {
    display: none;
}

.ww-product-component .item-img img {
    max-width: 100%;
    max-height: 118px;
    width: auto !important;
    height: auto !important;
    display: block;
}

.ww-product-component .item-name {
    display: block;
    height: auto;
    min-height: 54px;
    margin: 0 0 10px;
    color: #111820;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.25;
    overflow: hidden;
}

.ww-product-component .item-prop {
    height: auto;
    min-height: 52px;
    margin: 0 0 12px;
    border-radius: 7px;
    background: #f4f6f8;
    color: #6c7682;
    font-size: 13px;
    line-height: 1.35;
    padding: 9px 10px;
    overflow: hidden;
}

.ww-product-component .item-prop div {
    height: auto;
    margin: 0;
    overflow: hidden;
}

.ww-product-component .item-price {
    margin: auto 0 10px;
    color: #111820;
    font-size: 14px;
}

.ww-product-component .item-price b {
    font-size: 20px;
}

.wellwerk .btn,
.wellwerk .btn-primary,
.wellwerk .btn-success,
.ww-product-component .btn {
    border: 0;
    border-radius: 7px;
    background: #ffc400;
    color: #05080b;
    font-weight: 900;
    text-shadow: none;
    box-shadow: none;
}

.ww-product-component .btn {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out);
}

.ww-product-component .btn:after {
    content: "\f07a";
    font-family: FontAwesome;
    font-weight: normal;
    line-height: 1;
}

.ww-promos {
    padding-top: 8px;
}

.ww-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.ww-promo-card {
    min-height: 154px;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
}

.ww-promo-card strong {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.ww-promo-card span {
    max-width: 360px;
    color: #e2e7ec;
}

.ww-promo-card b {
    min-height: 34px;
    padding: 0 18px;
}

.ww-promo-dark,
.ww-promo-map {
    background:
        linear-gradient(90deg, rgba(5, 8, 11, 0.95), rgba(5, 8, 11, 0.72)),
        url("../images/index_banner_01.jpg") center / cover no-repeat;
}

.ww-promo-yellow {
    background:
        linear-gradient(90deg, rgba(255, 196, 0, 0.96), rgba(255, 196, 0, 0.58)),
        url("../images/main_baner.png") center / cover no-repeat;
}

.ww-promo-yellow strong,
.ww-promo-yellow span {
    color: #05080b;
}

.ww-bottom-benefits {
    padding: 0 0 28px;
}

.ww-bottom-benefits .ww-shell {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: #26313b;
}

.ww-content {
    width: min(1290px, calc(100% - 48px));
    margin: 28px auto 38px;
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 32, 0.08);
}

.wellwerk-home .ww-home-content {
    display: none;
}

.ww-content h1 {
    margin: 12px 0 22px;
    font-size: 30px;
}

.ww-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.ww-content th,
.ww-content td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.ww-content th {
    background: #111820;
    color: #fff;
    font-weight: 800;
}

.ww-content .breadcrumb,
.ww-content .bx-breadcrumb,
.ww-content .bx-breadcrumb-item {
    color: #7a8490;
    font-size: 13px;
}

.ww-content .search-result-blocks .sr-block-inner,
.ww-content .bx_catalog_tile,
.ww-content .bx_catalog_item,
.ww-content .catalog_item,
.ww-content .product-item,
.ww-content .item,
.ww-content .basket_items,
.ww-content .order-checkout,
.ww-content .sale_order_full_table,
.ww-content form {
    border-radius: 8px;
}

.ww-content .search-result-blocks .sr-block-inner {
    border: 1px solid #e5e7eb;
    background: #fbfcfd;
    box-shadow: none;
}

.ww-content .content-breadcrumbs {
    margin: 0 0 14px;
    color: #7a8490;
    font-size: 13px;
}

.ww-content .content-breadcrumbs a {
    color: #36424d;
    font-weight: 700;
}

.ww-content .row {
    margin-left: -8px;
    margin-right: -8px;
}

.ww-content [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.ww-content .catalog-section-list {
    margin: 20px 0 0;
}

.ww-content .catalog-section-list > ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ww-content .catalog-section-list > ul > li {
    display: block;
    float: none;
    clear: none;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.ww-content .catalog-section-list > ul > li:nth-child(odd) {
    clear: none;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner,
.ww-content .search-result-blocks .sr-block-inner,
.ww-content .bx-auth,
.ww-content .panel,
.ww-content .modal-content,
.ww-content .basket_items {
    border: 1px solid #e4e9ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 32, 0.07);
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner {
    display: flex;
    flex-direction: column;
    height: 100% !important;
    min-height: 205px;
    padding: 16px;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner:hover {
    border-color: #ffc400;
    box-shadow: 0 14px 30px rgba(15, 23, 32, 0.12);
    transform: translateY(-2px);
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > .cat-sect-img {
    float: none;
    width: auto;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 12px;
}

.ww-content .catalog-section-list .cat-sect-img img,
.ww-content .catalog-section-list img {
    max-width: 76px;
    max-height: 58px;
    object-fit: contain;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > .cat-sect-desc {
    float: none;
    width: auto;
}

.ww-content .catalog-section-list .cat-sect-desc-text,
.ww-content .catalog-section-list a.link-ul-none {
    color: #101820;
    font-weight: 800;
    line-height: 1.25;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > .cat-sect-desc > a {
    display: block;
    min-height: 42px;
    margin: 0;
    color: #101820;
    font-size: 16px;
    font-weight: 900;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    clear: none;
    margin: auto 0 0;
    padding: 14px 0 0;
    list-style: none;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul > li {
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul > li .cat-sect-inner {
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul > li .cat-sect-img,
.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul > li .cat-sect-desc-text {
    display: none;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul > li .cat-sect-desc {
    float: none;
    width: auto;
}

.ww-content .catalog-section-list > ul > li > .cat-sect-inner > ul > li .cat-sect-desc > a {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    margin: 0;
    border-radius: 7px;
    background: #eef2f6;
    color: #36424d;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.ww-content .search-result-blocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ww-content .search-result-blocks:before,
.ww-content .search-result-blocks:after {
    display: none;
}

.ww-content .search-result-blocks .sr-block {
    width: auto;
    float: none;
}

.ww-content .search-result-blocks .sr-block-inner {
    height: 100%;
    padding: 16px;
}

.ww-content .catalog-detail-summary-row {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 22px 28px;
    align-items: start;
}

.ww-content .catalog-detail-summary-row:before,
.ww-content .catalog-detail-summary-row:after {
    display: none;
}

.ww-content .catalog-detail-summary-row > [class*="col-"] {
    float: none;
    width: auto;
    min-width: 0;
}

.ww-content .catalog-detail-info-block {
    align-self: stretch;
}

.ww-content .catalog-detail-offers-block {
    grid-column: 1 / -1;
    margin-top: 2px;
}

.ww-content .catalog-detail-offers-block .search-result-blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ww-content .catalog-detail-offers-block .sr-block {
    min-width: 0;
}

.ww-content .catalog-detail-offers-block .sr-block-inner {
    min-height: 205px;
}

.ww-content .catalog-detail-offers-block .link_all_anchor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 12px;
    margin-bottom: 18px;
    border: 1px solid #d8e0e7;
    border-radius: 7px;
    background: #fff;
    color: #111820;
    padding: 0 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.ww-content .catalog-detail-text-block .link_all_anchor {
    padding-bottom: 0 !important;
    font-size: 18px;
    color: #111820;
}

.ww-content .catalog-detail-text-block .link_all_anchor:after,
.ww-content .catalog-detail-offers-block .link_all_anchor:after {
    content: none !important;
    display: none !important;
}

.ww-content .sr-block-name,
.ww-content .item-name {
    color: #101820;
    font-weight: 800;
}

.ww-content .catalog-section-item .item-name,
.ww-content .item-name {
    height: auto;
    min-height: 68px;
    overflow: visible;
    line-height: 1.25;
    text-wrap: pretty;
}

.ww-content .part-name-xs.text-overflow {
    height: auto;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    line-height: 1.25;
}

.ww-content .sr-block-price,
.ww-content .price {
    color: #05080b;
    font-size: 20px;
    font-weight: 900;
}

.ww-content .search-result-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 18px 0;
    list-style: none;
}

.ww-content .search-result-tabs li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ww-content .search-result-tabs li::before,
.ww-content .search-result-tabs li::after {
    display: none !important;
    content: none !important;
}

.ww-content .search-result-tabs label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.ww-content .bx-auth-reg .search-result-tabs {
    align-items: center;
    gap: 10px;
}

.ww-content .bx-auth-reg .search-result-tabs .type-user {
    display: inline-flex !important;
    width: auto;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.ww-content .bx-auth-reg .search-result-tabs .type-user label {
    display: inline-flex !important;
    align-items: center;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.ww-content .bx-auth-reg .search-result-tabs .type-user label::before,
.ww-content .bx-auth-reg .search-result-tabs .type-user label::after {
    display: none !important;
    content: none !important;
}

.ww-content .bx-auth-reg .search-result-tabs .type-user input[type="radio"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none;
}

.ww-content .bx-auth-reg .search-result-tabs .type-user span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid #d8e0e7;
    border-radius: 7px;
    background: #fff;
    padding: 0 12px;
    color: #111820;
    font-weight: 900;
    line-height: 1.1;
}

.ww-content .bx-auth-reg .search-result-tabs .type-user.tu-active span {
    border-color: #ffc400;
    background: #ffc400;
}

.ww-content .search-result-tabs a,
.ww-content .search-result-tabs li {
    border-radius: 8px;
}

.ww-content .search-result-tabs a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px;
    background: #eef2f6;
    color: #111820;
    font-weight: 800;
}

.ww-content .lm-auto-main-search-form {
    margin: 24px 0 18px;
}

.ww-content .lm_search_block {
    width: 100%;
}

.ww-content .lm_search_block > .lm-auto-partial-search-block:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.ww-content #lm-auto-main-search-query-id {
    width: 100%;
    height: 50px;
    margin: 0;
    border: 1px solid #d8e0e7;
    border-radius: 8px;
    background: #fff;
    color: #111820;
    font-size: 16px;
    padding: 0 15px;
    box-shadow: inset 0 1px 0 rgba(15, 23, 32, 0.03);
}

.ww-content .lm-auto-submit {
    min-width: 172px;
    height: 50px;
    border: 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffd84a 0%, #ffc400 58%, #e2a600 100%);
    color: #05080b;
    padding: 0 20px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 -2px 0 rgba(5, 8, 11, 0.16), 0 12px 22px rgba(255, 196, 0, 0.18);
    transition: background-color 0.18s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out);
}

.ww-content .lm-auto-submit:hover,
.ww-content .lm-auto-submit:focus {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffe06a 0%, #ffd03a 58%, #ebb000 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -2px 0 rgba(5, 8, 11, 0.14), 0 14px 26px rgba(255, 196, 0, 0.24);
    transform: translateY(-1px);
}

.ww-content .lm-auto-submit:active {
    transform: translateY(1px) scale(0.98);
}

.ww-content .lm-auto-partial-search-block-wrap {
    margin-top: 9px;
}

.ww-content .lm-auto-partial-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    color: #36424d;
    font-weight: 800;
}

.ww-content .lm-auto-partial-search input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #ffc400;
}

.ww-content .search-result-filter-block {
    display: block;
    clear: both;
    margin: 18px 0 22px !important;
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 0 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    z-index: 1 !important;
}

.ww-content .lm-auto-search-parts-place.srf-fixed-table {
    margin-top: 0 !important;
}

.ww-content .lm-auto-search-parts-place {
    max-width: 100%;
}

.ww-content .search-result-filter {
    display: block !important;
    height: auto !important;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: #eaf2f7;
    padding: 18px 28px 16px;
    box-shadow: none;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
    z-index: 1 !important;
}

.ww-content .search-result-filter > h4 {
    margin: 0 0 14px;
    color: #101820;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.ww-content .search-result-filter .srf-inner,
.ww-content .search-result-filter .srf-pad {
    width: 100%;
    min-width: 0;
}

.ww-content .search-result-filter .srf-inner {
    padding: 0;
}

.ww-content .search-result-filter .srf-pad > .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
    margin: 0;
}

.ww-content .search-result-filter .srf-pad > .row:before,
.ww-content .search-result-filter .srf-pad > .row:after {
    display: none;
}

.ww-content .search-result-filter .srf-pad > .row > [class*="col-"] {
    float: none;
    width: auto;
    min-width: 0;
    padding: 0;
}

.ww-content .search-result-filter-name {
    margin: 0 0 12px;
    color: #0f1720;
    font-size: 15px;
    font-weight: 600;
}

.ww-content .search-result-filter .form-control {
    height: 42px;
    min-height: 42px;
    border: 1px solid #d3dde6;
    border-radius: 6px;
    background: #fff;
    color: #101820;
    box-shadow: none;
}

.ww-content .search-result-filter > .text-center {
    width: 100%;
    min-width: 0;
    margin-top: 14px;
    text-align: center;
}

.ww-content .srf-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid #ccd7e0;
    border-radius: 6px;
    background: #f4f8fb;
    color: #202a34;
    padding: 8px 14px;
    font-size: 0;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
    transition: background-color 0.18s var(--ww-ease-out), border-color 0.18s var(--ww-ease-out), color 0.18s var(--ww-ease-out);
}

.ww-content .srf-link:hover,
.ww-content .srf-link:focus {
    border-color: #ffc400;
    background: #fff7d1;
    color: #111820;
}

.ww-content .srf-link:after {
    content: "Показать фильтр";
    font-size: 13px;
    line-height: 1.1;
}

.ww-content .srf-link.btn-close:after {
    content: "Свернуть фильтр";
}

.ww-content #searchResultsFilterBlock.is-collapsed {
    margin-bottom: 14px !important;
}

.ww-content #searchResultsFilterBlock.is-collapsed .search-result-filter {
    display: flex !important;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
}

.ww-content #searchResultsFilterBlock.is-collapsed .search-result-filter > h4 {
    margin: 0;
}

.ww-content #searchResultsFilterBlock.is-collapsed .search-result-filter > .text-center {
    width: auto;
    margin: 0;
    text-align: right;
}

.ww-content #searchResultsFilterBlock.is-collapsed .srf-inner {
    display: none;
    height: 0 !important;
    overflow: hidden;
}

.ww-content input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 7px 0 0;
    vertical-align: middle;
    accent-color: #ffc400;
}

.ww-content .checkbox label,
.ww-content label.isagreement {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 24px;
    padding-left: 0 !important;
    margin: 0;
    line-height: 1.35;
    color: #101820;
    font-weight: 900;
}

.ww-content .checkbox input[type="checkbox"],
.ww-content label.isagreement input[type="checkbox"] {
    position: static !important;
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

.ww-content .bx-auth,
.ww-content .panel,
.ww-content .sale_order_full_table,
.ww-content .order-checkout {
    padding: 20px;
}

.ww-content .bx-auth-title,
.ww-content .panel-title {
    margin-bottom: 14px;
    color: #101820;
    font-size: 20px;
    font-weight: 900;
}

.ww-content label,
.ww-content .bx-auth-label {
    color: #36424d;
    font-weight: 800;
}

.ww-content .btn-danger {
    background: #202a34;
    color: #fff;
}

.ww-content .wrap_w247_wssync_appliance .panel {
    margin: 0 0 20px;
    border: 1px solid #e4e9ee;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 32, 0.06);
}

.ww-content .wrap_w247_wssync_appliance .panel-heading {
    border-bottom: 1px solid #e4e9ee;
    background: #111820;
    color: #fff;
}

.ww-content .ww-company-info {
    max-width: 980px;
    color: #101820;
}

.ww-content .ww-company-lead {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.6;
}

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

.ww-content .ww-company-grid section,
.ww-content .ww-company-note {
    border: 1px solid #e1e7ed;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
}

.ww-content .ww-company-info h3 {
    margin: 0 0 12px;
    color: #101820;
    font-size: 18px;
    font-weight: 900;
}

.ww-content .ww-company-info p {
    margin: 0 0 9px;
    color: #263340;
    line-height: 1.5;
}

.ww-content .ww-company-info p:last-child {
    margin-bottom: 0;
}

.ww-content .ww-company-info a {
    color: #101820;
    font-weight: 800;
    text-decoration: none;
}

.ww-content .ww-company-info a:hover,
.ww-content .ww-company-info a:focus {
    color: #d29a00;
}

.ww-content .ww-warranty {
    color: #101820;
}

.ww-content .ww-warranty-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 24px;
    align-items: stretch;
    margin: 0 0 18px;
    border: 1px solid #e1e7ed;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 196, 0, 0.13), rgba(255, 255, 255, 0) 56%),
        #f8fafc;
    padding: 24px;
}

.ww-content .ww-warranty-kicker {
    margin: 0 0 8px;
    color: #8a6a00;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ww-content .ww-warranty-hero h2 {
    margin: 0 0 12px;
    color: #101820;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.15;
}

.ww-content .ww-warranty-hero p {
    max-width: 720px;
    margin: 0;
    color: #36424d;
    font-size: 17px;
    line-height: 1.58;
}

.ww-content .ww-warranty-term {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    background: #101820;
    color: #fff;
    padding: 22px;
}

.ww-content .ww-warranty-term strong {
    margin-bottom: 6px;
    color: #ffc400;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.ww-content .ww-warranty-term span {
    color: #dbe4ec;
    font-weight: 700;
    line-height: 1.35;
}

.ww-content .ww-warranty-note,
.ww-content .ww-warranty-grid section,
.ww-content .ww-warranty-claims {
    border: 1px solid #e1e7ed;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}

.ww-content .ww-warranty-note {
    margin: 0 0 18px;
    background: #fffaf0;
}

.ww-content .ww-warranty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 18px;
}

.ww-content .ww-warranty h3 {
    margin: 0 0 12px;
    color: #101820;
    font-size: 19px;
    font-weight: 900;
}

.ww-content .ww-warranty p {
    margin: 0 0 12px;
    color: #36424d;
    line-height: 1.58;
}

.ww-content .ww-warranty p:last-child {
    margin-bottom: 0;
}

.ww-content .ww-warranty ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ww-content .ww-warranty li {
    position: relative;
    margin: 0 0 11px;
    padding-left: 24px;
    color: #263340;
    line-height: 1.5;
}

.ww-content .ww-warranty li:last-child {
    margin-bottom: 0;
}

.ww-content .ww-warranty li:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc400;
    box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.18);
}

.ww-content .ww-warranty-docs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.ww-content .ww-warranty-docs div {
    border-radius: 8px;
    background: #f3f7fa;
    padding: 16px;
}

.ww-content .ww-warranty-docs strong,
.ww-content .ww-warranty-docs span {
    display: block;
}

.ww-content .ww-warranty-docs strong {
    margin-bottom: 7px;
    color: #101820;
    font-weight: 900;
}

.ww-content .ww-warranty-docs span {
    color: #36424d;
    line-height: 1.5;
}

.ww-content .ww-warranty a {
    color: #101820;
    font-weight: 900;
    text-decoration: none;
}

.ww-content .ww-warranty a:hover,
.ww-content .ww-warranty a:focus {
    color: #d29a00;
}

.ww-content #w247_wssync_appliance .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    margin: 0;
}

.ww-content #w247_wssync_appliance .row:before,
.ww-content #w247_wssync_appliance .row:after,
.ww-content #ws_catalog_section > .row:before,
.ww-content #ws_catalog_section > .row:after {
    content: none;
    display: none;
}

.ww-content #w247_wssync_appliance .form-group {
    float: none;
    width: auto;
    max-width: none;
    padding: 0 !important;
}

.ww-content #w247_wssync_appliance .form-group.col-md-2.col-sm-3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-self: end;
}

.ww-content #w247_wssync_appliance .title_saelect_auto {
    margin: 0 0 9px;
    color: #111820;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.ww-content #w247_wssync_appliance .btn {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    transition: background-color 0.18s var(--ww-ease-out), border-color 0.18s var(--ww-ease-out), color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out);
}

.ww-content #w247_wssync_appliance .btn + .btn {
    margin-top: 0;
}

.ww-content #w247_wssync_appliance .appliance_apply:after,
.ww-content #w247_wssync_appliance .appliance_reset:after {
    margin-left: 7px;
    font-weight: 900;
}

.ww-content #w247_wssync_appliance .appliance_apply:after {
    content: "Выбрать";
}

.ww-content #w247_wssync_appliance .appliance_reset:after {
    content: "Сбросить";
}

.ww-content #w247_wssync_appliance .appliance_apply:not(:disabled) {
    border-color: #ffc400;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffd84a 0%, #ffc400 58%, #e2a600 100%);
    color: #05080b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 -2px 0 rgba(5, 8, 11, 0.16), 0 10px 18px rgba(255, 196, 0, 0.15);
}

.ww-content #w247_wssync_appliance .appliance_reset:not(:disabled) {
    border-color: #202a34;
    background: #202a34;
    color: #fff;
}

.ww-content #w247_wssync_appliance .btn:disabled,
.ww-content #w247_wssync_appliance .btn[disabled] {
    border-color: #d8e0e7;
    background: #f1f4f6;
    color: #7a8490;
    cursor: not-allowed;
    opacity: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.ww-content #ws_catalog_section > .row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.ww-content #ws_catalog_section .model_auto {
    float: none;
    width: auto;
    min-width: 0;
    padding: 0;
}

.ww-content #ws_catalog_section .thumbnail_container,
.ww-content #ws_catalog_section .thumbnail {
    height: 100%;
}

.ww-content #ws_catalog_section .thumbnail {
    margin: 0;
    border: 1px solid #e4e9ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 32, 0.06);
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.ww-content #ws_catalog_section .thumbnail:hover {
    border-color: #ffc400;
    box-shadow: 0 14px 30px rgba(15, 23, 32, 0.12);
    transform: translateY(-2px);
}

.ww-content #ws_catalog_section .thumbnail a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 132px;
    padding: 12px;
}

.ww-content #ws_catalog_section .thumbnail img {
    width: auto;
    max-width: 100%;
    max-height: 78px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.ww-content #ws_catalog_section .caption strong {
    color: #101820;
    font-size: 14px;
    font-weight: 900;
}

.ww-content .bx-auth form,
.ww-content form.form-inline {
    max-width: 100%;
}

.ww-content [id*="map"],
.ww-content ymaps,
.ww-content .ymaps-map {
    max-width: 100% !important;
}

.ww-content .form-control,
.ww-content input[type="text"],
.ww-content input[type="password"],
.ww-content input[type="email"],
.ww-content textarea,
.ww-content select {
    min-height: 42px;
    border: 1px solid #d8e0e7;
    border-radius: 7px;
    box-shadow: none;
}

.ww-content .sr-block-button,
.ww-content .buyPart,
.ww-content input[type="submit"].btn,
.ww-content button.btn,
.ww-content a.btn {
    min-height: 44px;
    border-radius: 7px;
    line-height: 1.15;
    transition: background-color 0.18s var(--ww-ease-out), border-color 0.18s var(--ww-ease-out), color 0.18s var(--ww-ease-out), transform 0.16s var(--ww-ease-out), box-shadow 0.18s var(--ww-ease-out);
}

.ww-content .sr-block-button,
.ww-content .buyPart {
    box-shadow: inset 0 -2px 0 rgba(5, 8, 11, 0.16), 0 10px 18px rgba(255, 196, 0, 0.16);
}

.ww-content .sr-block-button:hover,
.ww-content .buyPart:hover {
    box-shadow: inset 0 -2px 0 rgba(5, 8, 11, 0.14), 0 12px 22px rgba(255, 196, 0, 0.22);
}

.ww-content .bootstrap-touchspin .btn,
.ww-content .bootstrap-touchspin-down,
.ww-content .bootstrap-touchspin-up,
.ww-content .input-group-btn > .btn {
    min-width: 40px;
}

.ww-content .td-count,
.ww-content .count {
    text-align: center;
    vertical-align: middle !important;
    white-space: nowrap;
}

.ww-content .td-count .bootstrap-touchspin.input-group,
.ww-content .count .bootstrap-touchspin.input-group,
.ww-content .bootstrap-touchspin.input-group {
    display: inline-flex !important;
    align-items: stretch !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    border-collapse: separate;
    vertical-align: middle;
}

.ww-content .bootstrap-touchspin .input-group-btn {
    display: flex !important;
    width: auto !important;
    vertical-align: middle;
}

.ww-content .bootstrap-touchspin .form-control,
.ww-content .td-count .quantity-inp,
.ww-content .count input[rel="quantity"] {
    flex: 0 0 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    line-height: 40px !important;
    font-size: 15px;
    font-weight: 800;
}

.ww-content table.lm-auto-search-parts .td-count,
.ww-content table.lm-auto-search-parts .count,
.ww-content table.lm-auto-search-parts td:last-child,
.ww-content table.lm-auto-search-parts th:last-child {
    min-width: 140px;
}

@media (min-width: 1025px) {
    .ww-content .searchResultsTable {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .ww-content .searchResultsTable table.lm-auto-search-parts,
    .ww-content .lm-auto-search-parts-place table.lm-auto-search-parts {
        width: 100% !important;
        max-width: 100%;
        table-layout: fixed;
    }

    .ww-content table.lm-auto-search-parts th,
    .ww-content table.lm-auto-search-parts td {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-brand,
    .ww-content table.lm-auto-search-parts td.brand {
        width: 11%;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-article,
    .ww-content table.lm-auto-search-parts td.sku {
        width: 8%;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-title,
    .ww-content table.lm-auto-search-parts td.fn {
        width: 28.5%;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-quantity,
    .ww-content table.lm-auto-search-parts td.quantity {
        width: 8.5%;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-supplier,
    .ww-content table.lm-auto-search-parts td.supplier {
        width: 9%;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-delivery-time,
    .ww-content table.lm-auto-search-parts td.delivery_time {
        width: 8%;
    }

    .ww-content table.lm-auto-search-parts .lm-auto-search-parts-price,
    .ww-content table.lm-auto-search-parts td.price {
        width: 11%;
    }

    .ww-content table.lm-auto-search-parts td.count {
        width: 104px;
        min-width: 104px;
    }

    .ww-content table.lm-auto-search-parts td.basket {
        width: 70px;
        min-width: 70px;
    }

    .ww-content table.lm-auto-search-parts th.lm-auto-search-parts-basket[colspan="2"] {
        width: 174px;
        min-width: 174px;
    }
}

.ww-content .bootstrap-touchspin .btn,
.ww-content .bootstrap-touchspin-down,
.ww-content .bootstrap-touchspin-up {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    background: #ffc400 !important;
    color: #05080b !important;
    font-size: 18px;
    font-weight: 900;
    line-height: 1 !important;
}

.ww-content .bootstrap-touchspin-down {
    border-radius: 8px 0 0 8px !important;
}

.ww-content .bootstrap-touchspin-up {
    border-radius: 0 8px 8px 0 !important;
}

.ww-content .td-basket,
.ww-content .basket {
    text-align: center;
    vertical-align: middle !important;
}

.ww-content .td-basket .buy-btn,
.ww-content .basket .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: #ffc400;
    padding: 0;
}

.ww-content .td-basket .buy-btn img,
.ww-content .basket .btn img {
    width: 18px;
    height: 18px;
    margin: 0;
    object-fit: contain;
}

.ww-content .td-basket .buy-btn span,
.ww-content .basket .btn span {
    display: none;
}

.ww-content a.btn.btn-primary[href^="javascript"][onclick*="add2cart"]:empty {
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ww-content a.btn.btn-primary[href^="javascript"][onclick*="add2cart"]:empty:before {
    content: "\f07a";
    font-family: FontAwesome;
    font-weight: normal;
    line-height: 1;
}

.ww-footer {
    background: #05080b;
    color: #fff;
}

.ww-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 42px;
    padding: 42px 0;
}

.ww-footer-brand p {
    max-width: 380px;
    margin: 18px 0 0;
    color: #c4cbd2;
}

.ww-footer-col h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.ww-footer-col a,
.ww-footer-col span {
    display: block;
    margin: 9px 0;
    color: #c4cbd2;
}

.ww-footer-col a {
    min-height: 28px;
}

.wellwerk jdiv#jcont {
    pointer-events: none !important;
}

.wellwerk jdiv#jcont jdiv,
.wellwerk jdiv#jcont iframe,
.wellwerk jdiv#jcont a,
.wellwerk jdiv#jcont button {
    pointer-events: auto !important;
}

.ww-footer-contact strong {
    display: block;
    margin-bottom: 9px;
    color: #fff;
    font-size: 20px;
}

.ww-footer-bottom {
    border-top: 1px solid #26313b;
    color: #8d98a5;
}

.ww-footer-bottom .ww-shell {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1280px) {
    .ww-contact-strip,
    .ww-info-links {
        gap: 14px;
    }

    .ww-commerce-inner {
        grid-template-columns: 240px minmax(134px, auto) minmax(158px, auto) minmax(250px, 1fr) minmax(114px, auto) minmax(104px, auto);
        gap: 16px;
    }

    .ww-logo-img {
        width: 240px;
    }

    .ww-contact-title {
        font-size: 15px;
    }

    .ww-mail .ww-contact-title {
        font-size: 13px;
    }

    .ww-info-links {
        font-size: 13px;
    }

    .ww-hero-grid {
        grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
        gap: 28px;
    }

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

    .ww-select-grid button {
        grid-column: 1 / -1;
    }

    .ww-product-component,
    .ww-product-component .carousel-list-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .ww-topbar-inner,
    .ww-commerce-inner,
    .ww-nav {
        padding: 12px 0;
    }

    .ww-topbar-inner {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        min-height: 0;
        padding: 0;
    }

    .ww-logo {
        min-width: 0;
    }

    .ww-logo-img {
        width: 260px;
    }

    .ww-info-links {
        justify-content: flex-start;
        width: auto;
        gap: 24px;
        font-size: 12px;
    }

    .ww-commerce-inner {
        display: grid;
        grid-template-columns: 260px minmax(0, 1fr) minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
    }

    .ww-search {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .ww-call,
    .ww-mail,
    .ww-favorite,
    .ww-cart {
        min-width: 0;
        min-height: 48px;
        font-size: 13px;
    }

    .ww-nav {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
    }

    .ww-catalog-dropdown {
        width: min(720px, calc(100vw - 48px));
    }

    .ww-truck-dropdown {
        left: 0;
        width: min(680px, calc(100vw - 48px));
    }

    .ww-main-menu {
        width: auto;
        flex-wrap: wrap;
        gap: 8px 16px;
        font-size: 12px;
    }

    .ww-service-chips {
        display: none;
    }

    .ww-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 42px 0 74px;
    }

    .ww-parts-panel {
        margin-bottom: 0;
    }

    .ww-trust-grid,
    .ww-bottom-benefits .ww-shell {
        grid-template-columns: repeat(2, 1fr);
    }

    .ww-trust-grid div:last-child {
        grid-column: 1 / -1;
    }

    .ww-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ww-products-layout,
    .ww-promo-grid,
    .ww-footer-grid {
        grid-template-columns: 1fr;
    }

    .ww-product-component,
    .ww-product-component .carousel-list-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ww-content .catalog-section-list,
    .ww-content .search-result-blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ww-content .search-result-filter {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ww-content .search-result-filter > .text-center {
        text-align: left;
    }

    .ww-content .catalog-detail-summary-row {
        grid-template-columns: 1fr;
    }

    .ww-content .catalog-detail-offers-block .search-result-blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ww-content .catalog-section-list > ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ww-content .ww-warranty-hero,
    .ww-content .ww-warranty-grid,
    .ww-content .ww-warranty-docs {
        grid-template-columns: 1fr;
    }

    .ww-content #ws_catalog_section > .row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 761px) and (max-width: 900px) {
    .ww-commerce-inner {
        grid-template-columns: 240px minmax(0, 1fr) minmax(0, 1fr);
    }

    .ww-search {
        grid-column: 1 / -1;
        width: 100%;
    }

    .ww-call,
    .ww-mail,
    .ww-favorite,
    .ww-cart {
        justify-content: center;
        min-width: 0;
        width: auto;
    }

    .ww-content #w247_wssync_appliance .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        align-items: end;
    }

    .ww-content #w247_wssync_appliance .form-group.col-md-2.col-sm-3 {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

@media (max-width: 760px) {
    .ww-shell,
    .ww-content {
        width: min(100% - 24px, 100%);
    }

    .ww-topbar-inner {
        display: flex;
        justify-content: center;
        min-height: 38px;
        gap: 0;
        padding: 0;
    }

    .ww-logo {
        grid-column: 1 / -1;
        justify-content: center;
        min-width: 0;
    }

    .ww-logo-img {
        width: min(270px, 82vw);
    }

    .ww-contact-strip {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 4px;
        font-size: 13px;
        text-align: center;
    }

    .ww-contact-strip a[href^="mailto"],
    .ww-info-links {
        display: none;
    }

    .ww-topbar .ww-auth {
        min-height: 38px;
        justify-content: center;
        font-size: 12px;
    }

    .ww-commerce-inner {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        padding: 10px 0 12px;
    }

    .ww-call {
        grid-column: 1 / 3;
    }

    .ww-mail {
        grid-column: 3 / 5;
    }

    .ww-search {
        grid-column: 1 / -1;
        width: 100%;
    }

    .ww-catalog-menu,
    .ww-catalog-menu .ww-catalog-btn {
        width: 100%;
    }

    .ww-catalog-menu .ww-catalog-btn {
        min-width: 0;
    }

    .ww-catalog-dropdown {
        width: calc(100vw - 24px);
        max-width: none;
    }

    .ww-catalog-dropdown-grid {
        grid-template-columns: 1fr;
    }

    .ww-search input[type="text"] {
        height: 46px;
        font-size: 14px;
        padding-left: 13px;
    }

    .wellwerk .ww-search input[type="text"] {
        height: 46px;
    }

    .ww-search input[type="submit"] {
        top: 50%;
        right: 5px;
        width: 36px;
        height: 36px;
    }

    .ww-search .input-append:after {
        top: 50%;
        right: 17px;
    }

    .ww-call,
    .ww-mail,
    .ww-favorite,
    .ww-cart {
        display: flex;
        justify-content: center;
        min-width: 0;
        min-height: 42px;
        width: auto;
        border: 1px solid #e7edf3;
        border-radius: 8px;
        background: #fff;
        padding: 0 8px;
        font-size: 0;
    }

    .ww-cart {
        grid-column: 1 / 3;
    }

    .ww-favorite {
        grid-column: 3 / 5;
    }

    .ww-call span,
    .ww-mail span,
    .ww-favorite,
    .ww-cart > span,
    .ww-cart .cart-empty,
    .ww-cart a,
    .ww-cart b {
        font-size: 0;
    }

    .ww-call {
        gap: 6px;
    }

    .ww-call .ww-contact-title {
        display: inline-block;
        max-width: 128px;
        overflow: hidden;
        font-size: 12px;
        font-weight: 900;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ww-call .ww-contact-caption {
        display: none;
    }

    .wellwerk .ww-cart.header-cart .cart-empty {
        display: none !important;
    }

    .ww-call i,
    .ww-mail i,
    .ww-favorite i,
    .ww-cart > i {
        margin: 0;
        font-size: 18px;
    }

    .ww-cart a span {
        min-width: 18px;
        height: 18px;
        margin-left: 5px;
        font-size: 11px;
    }

    .ww-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 0;
    }

    .ww-catalog-btn {
        min-height: 42px;
    }

    .ww-main-menu {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        position: relative;
        overflow: visible;
        padding-bottom: 0;
        font-size: 10px;
    }

    .ww-main-menu a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        border: 1px solid #26313b;
        border-radius: 7px;
        background: #111820;
        padding: 0 10px;
        white-space: normal;
        text-align: center;
    }

    .ww-truck-menu {
        display: flex;
        width: 100%;
        min-width: 0;
        position: static;
        padding: 0;
        margin: 0;
    }

    .ww-truck-menu-trigger {
        width: 100%;
    }

    .ww-truck-dropdown {
        left: 0;
        top: calc(100% + 1px);
        width: calc(100vw - 24px);
        max-width: none;
    }

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

    .ww-truck-brand-grid a {
        display: grid;
        grid-template-rows: 38px auto;
        min-height: 84px;
        border-color: #e1e8ef;
        background: #f8fafc;
        padding: 10px 8px;
        color: #101820;
    }

    .ww-truck-brand-grid img {
        max-width: 96px;
        max-height: 34px;
    }

    .ww-truck-all-link {
        width: 100%;
        justify-content: center;
    }

    .ww-hero {
        min-height: 0;
        background:
            linear-gradient(180deg, rgba(5, 8, 11, 0.98) 0%, rgba(5, 8, 11, 0.82) 100%),
            url("../images/main_baner.png") center / cover no-repeat,
            #05080b;
    }

    .ww-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 18px;
        padding: 26px 0 36px;
    }

    .ww-hero-copy,
    .ww-parts-panel {
        grid-column: 1;
        grid-row: auto;
    }

    .ww-kicker {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .ww-hero h1 {
        font-size: 29px;
    }

    .ww-hero p {
        margin: 12px 0 18px;
        font-size: 15px;
    }

    .ww-hero-actions a {
        flex: 1 1 160px;
        padding: 0 14px;
    }

    .ww-tabs button,
    .ww-tabs a {
        min-height: 46px;
        padding: 0 8px;
        font-size: 11px;
        line-height: 1.2;
    }

    .ww-select-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    .ww-select-grid button {
        width: 100%;
    }

    .ww-vin-note {
        padding: 0 14px 14px;
        font-size: 13px;
    }

    .ww-trust-grid,
    .ww-bottom-benefits .ww-shell,
    .ww-content .catalog-section-list,
    .ww-content .search-result-blocks {
        grid-template-columns: 1fr;
    }

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

    .ww-product-component .carousel-item {
        min-height: 290px;
        padding: 10px;
    }

    .ww-product-component .item-img {
        height: 112px;
    }

    .ww-product-component .item-name {
        min-height: 48px;
        font-size: 13px;
    }

    .ww-product-component .item-prop {
        min-height: 46px;
        font-size: 12px;
        padding: 8px;
    }

    .ww-trust-grid,
    .ww-bottom-benefits .ww-shell,
    .ww-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ww-trust-grid div,
    .ww-bottom-benefits .ww-shell div {
        min-height: 88px;
        grid-template-columns: 24px minmax(0, 1fr);
        column-gap: 7px;
        padding: 12px 8px;
    }

    .ww-trust-grid i,
    .ww-bottom-benefits i {
        font-size: 22px;
    }

    .ww-trust-grid strong,
    .ww-bottom-benefits strong {
        font-size: 10.5px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .ww-trust-grid span,
    .ww-bottom-benefits span {
        font-size: 11px;
    }

    .ww-brand-grid {
        gap: 8px;
        padding: 10px;
    }

    .ww-brand-card {
        min-height: 74px;
    }

    .ww-brand-card img {
        max-width: 120px;
        max-height: 38px;
    }

    .ww-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .ww-content {
        padding: 18px;
        margin: 18px auto 28px;
    }

    .ww-content h1 {
        font-size: 23px;
    }

    .ww-content .ww-warranty-hero,
    .ww-content .ww-warranty-note,
    .ww-content .ww-warranty-grid section,
    .ww-content .ww-warranty-claims {
        padding: 16px;
    }

    .ww-content .ww-warranty-hero h2 {
        font-size: 23px;
    }

    .ww-content .ww-warranty-term strong {
        font-size: 25px;
    }

    .ww-content table {
        display: block;
        overflow-x: auto;
    }

    .ww-content .lm-auto-search-parts-place {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .ww-content .lm-auto-search-parts-place table.lm-auto-search-parts,
    .ww-content table.lm-auto-search-parts {
        display: table;
        width: max-content;
        min-width: 760px;
        max-width: none;
    }

    .ww-content table.lm-auto-search-parts th,
    .ww-content table.lm-auto-search-parts td {
        white-space: normal;
    }

    .ww-content table.lm-auto-search-parts td:last-child,
    .ww-content table.lm-auto-search-parts th:last-child {
        min-width: 156px;
    }

    .ww-content .lm-auto-search-parts-place table.lm-auto-search-parts,
    .ww-content table.lm-auto-search-parts,
    .ww-content table.lm-auto-search-parts tbody,
    .ww-content table.lm-auto-search-parts tr,
    .ww-content table.lm-auto-search-parts td {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .ww-content .lm-auto-search-parts-place {
        overflow-x: visible;
    }

    .ww-content table.lm-auto-search-parts {
        border: 0;
        background: transparent;
    }

    .ww-content table.lm-auto-search-parts thead,
    .ww-content table.lm-auto-search-parts colgroup {
        display: none;
    }

    .ww-content table.lm-auto-search-parts tr {
        margin: 0 0 12px;
        border: 1px solid #cbd8e8;
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
    }

    .ww-content table.lm-auto-search-parts td {
        min-height: 0;
        border: 0;
        border-bottom: 1px solid #d9e4ef;
        padding: 10px 12px !important;
        text-align: left !important;
        white-space: normal;
    }

    .ww-content table.lm-auto-search-parts td:last-child {
        border-bottom: 0;
    }

    .ww-content table.lm-auto-search-parts td::before {
        display: block;
        margin-bottom: 4px;
        color: #647281;
        font-size: 11px;
        font-weight: 900;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .ww-content table.lm-auto-search-parts td:nth-child(1)::before {
        content: "Бренд";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(2)::before {
        content: "Номер";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(3)::before {
        content: "Запчасть";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(4)::before {
        content: "Наличие";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(5)::before {
        content: "Поставка";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(6)::before {
        content: "Доставка";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(7)::before {
        content: "Цена";
    }

    .ww-content table.lm-auto-search-parts td:nth-child(8)::before {
        content: "Купить";
    }

    .ww-content table.lm-auto-search-parts td[colspan]::before,
    .ww-content table.lm-auto-search-parts .part-name-xs::before {
        content: none;
        display: none;
    }

    .ww-content table.lm-auto-search-parts td[colspan] {
        background: #f8fbfd;
        color: #111820;
        font-weight: 800;
    }

    .ww-content table.lm-auto-search-parts .bootstrap-touchspin.input-group {
        justify-content: flex-start;
        margin: 0 !important;
    }

    .ww-content table.lm-auto-search-parts .buyPart,
    .ww-content table.lm-auto-search-parts .sr-block-button {
        width: auto;
        min-width: 44px;
    }

    .ww-content .show_more_goods,
    .ww-content .hide_all_goods {
        display: flex !important;
        width: 100%;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        text-align: center;
        white-space: normal;
    }

    .ww-content .show_more_goods.hidden,
    .ww-content .hide_all_goods.hidden {
        display: none !important;
    }

    .ww-content table.form-table,
    .ww-content table.form-table tbody,
    .ww-content table.form-table tr,
    .ww-content table.form-table td {
        display: block;
        width: 100% !important;
    }

    .ww-content table.form-table {
        border: 0;
        overflow: visible;
    }

    .ww-content table.form-table tr {
        margin-bottom: 10px;
        border: 1px solid #e4e9ee;
        border-radius: 8px;
        background: #fbfcfd;
        padding: 10px;
    }

    .ww-content table.form-table td {
        border: 0;
        padding: 4px 0;
    }

    .ww-content table.form-table input[type="text"],
    .ww-content table.form-table input[type="email"],
    .ww-content table.form-table input[type="tel"],
    .ww-content table.form-table textarea,
    .ww-content table.form-table select {
        width: 100% !important;
        max-width: 100%;
    }

    .ww-content .catalog-section-list > ul {
        grid-template-columns: 1fr;
    }

    .ww-content .catalog-section-list > ul > li > .cat-sect-inner {
        min-height: 0;
    }

    .ww-content #w247_wssync_appliance .row,
    .ww-content #ws_catalog_section > .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ww-content .catalog-detail-offers-block .search-result-blocks {
        grid-template-columns: 1fr;
    }

    .ww-content .lm_search_block > .lm-auto-partial-search-block:first-child {
        grid-template-columns: 1fr;
    }

    .ww-content .search-result-filter .srf-pad > .row {
        grid-template-columns: 1fr;
    }

    .ww-content .lm-auto-submit {
        width: 100%;
        min-width: 0;
    }

    .ww-content #w247_wssync_appliance .row {
        grid-template-columns: 1fr;
    }

    .ww-content #w247_wssync_appliance .form-group.col-md-2.col-sm-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ww-footer-col a {
        min-height: 36px;
    }

    .wellwerk {
        padding-bottom: 72px;
    }

    .ww-footer-bottom .ww-shell {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }
}

.ww-static-section {
    max-width: 960px;
    color: #26313b;
    font-size: 16px;
    line-height: 1.65;
}

.ww-static-section p {
    margin: 0 0 16px;
}

.ww-static-section h2 {
    margin: 26px 0 12px;
    color: #101820;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.ww-static-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.ww-static-grid > div {
    min-height: 118px;
    border: 1px solid #dce5ee;
    border-radius: 8px;
    background: #fbfcfd;
    padding: 18px;
}

.ww-static-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #101820;
    font-size: 17px;
    font-weight: 900;
}

.ww-static-grid span {
    color: #536171;
}

.ww-static-actions,
.ww-empty-search-actions,
.ww-empty-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.ww-action-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: #ffc400;
    color: #05080b !important;
    padding: 0 18px;
    font-weight: 900;
    text-decoration: none !important;
}

.ww-action-btn:hover,
.ww-action-btn:focus {
    background: #ffd84a;
}

.ww-action-btn-secondary {
    border: 1px solid #d8e0e7;
    background: #fff;
    color: #111820 !important;
}

.ww-empty-search {
    max-width: 760px;
    border: 1px solid #dce5ee;
    border-radius: 8px;
    background: #fbfcfd;
    padding: 24px;
}

.ww-empty-search h2 {
    margin: 0 0 10px;
    color: #101820;
    font-size: 24px;
    font-weight: 900;
}

.ww-empty-search p {
    margin: 0;
    color: #536171;
}

.ww-empty-search-form {
    margin-top: 18px;
}

.ww-empty-search-line {
    display: flex;
    align-items: stretch;
    gap: 10px;
    max-width: 680px;
}

.ww-empty-search-line input[type="text"] {
    flex: 1 1 auto;
    min-width: 0;
    height: 48px;
    border: 1px solid #ccd8e2;
    border-radius: 8px;
    background: #fff;
    color: #101820;
    padding: 0 16px;
    font-family: "Commissioner", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(16, 24, 32, 0.03);
}

.ww-empty-search-line input[type="text"]::placeholder {
    color: #8a96a3;
    font-weight: 500;
}

.ww-empty-search-line input[type="text"]:focus {
    border-color: #ffc400;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.22);
}

.ww-empty-search-line button {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 122px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    background: #ffc400;
    color: #05080b;
    padding: 0 20px;
    font-family: "Commissioner", Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(255, 196, 0, 0.22);
}

.ww-empty-search-line button:hover,
.ww-empty-search-line button:focus {
    background: #ffd84a;
    outline: 0;
}

.ww-map-panel {
    overflow: hidden;
}

.ww-map-fallback {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        linear-gradient(135deg, rgba(255, 196, 0, 0.16), rgba(255, 196, 0, 0) 42%),
        #eaf2f7;
}

.ww-map-fallback h3,
.ww-contact-form-panel h3 {
    margin-top: 0;
    color: #101820;
    font-weight: 900;
}

.ww-map-fallback p {
    margin: 0;
    color: #36424d;
    font-weight: 700;
}

.ww-contact-form-panel {
    border: 1px solid #dce5ee;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
}

.ww-cart {
    position: relative;
}

.ww-cart-mobile-link {
    display: none;
}

.ww-auth a,
.ww-profile-link {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
}

.ww-account-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ww-account-trigger {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 30px;
    max-width: 210px;
    border: 1px solid rgba(255, 196, 0, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    padding: 0 10px;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.ww-account-trigger::-webkit-details-marker {
    display: none;
}

.ww-account-trigger::marker {
    content: "";
}

.ww-account-trigger:hover,
.ww-account-trigger:focus {
    background: rgba(255, 196, 0, 0.12);
    border-color: rgba(255, 196, 0, 0.55);
    color: #fff;
    outline: none;
}

.ww-account-name {
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ww-account-trigger i {
    color: #ffc400;
    margin: 0;
    transition: transform .18s ease;
}

.ww-account-menu[open] .ww-account-trigger {
    background: rgba(255, 196, 0, 0.16);
    border-color: rgba(255, 196, 0, 0.72);
}

.ww-account-menu[open] .ww-account-trigger i {
    transform: rotate(180deg);
}

.ww-account-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 1100;
    width: 228px;
    padding: 8px;
    border: 1px solid #dbe4ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(5, 12, 20, 0.22);
}

.ww-account-dropdown:before {
    content: "";
    position: absolute;
    top: -6px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #dbe4ec;
    border-left: 1px solid #dbe4ec;
    background: #fff;
    transform: rotate(45deg);
}

.ww-account-dropdown a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    border-radius: 6px;
    color: #101820 !important;
    font-size: 14px;
    font-weight: 800;
    padding: 0 12px;
    text-decoration: none;
}

.ww-account-dropdown a:hover,
.ww-account-dropdown a:focus {
    background: #f2f6fa;
    color: #101820 !important;
    text-decoration: none;
}

.ww-account-dropdown i {
    width: 16px;
    color: #ffc400;
    margin: 0;
    text-align: center;
}

.ww-account-dropdown .ww-account-logout {
    margin-top: 6px;
    border-top: 1px solid #edf2f6;
    color: #bf351f !important;
}

.ww-account-dropdown .ww-account-logout i {
    color: #bf351f;
}

.ww-content a.btn.btn-primary.is-loading {
    opacity: 0.64;
    pointer-events: none;
}

.ww-content .search-result-filter-block.srf-fixed,
.ww-content #searchResultsFilterBlock.srf-fixed {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    z-index: 1 !important;
}

.ww-content .lm-auto-search-parts-place.srf-fixed-table {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ww-content .searchResultsTable {
    max-width: 100%;
}

.ww-content .show_more_goods,
.ww-content .hide_all_goods,
.ww-content .link_all_anchor {
    background-image: none !important;
}

.ww-content .show_more_goods:before,
.ww-content .show_more_goods:after,
.ww-content .hide_all_goods:before,
.ww-content .hide_all_goods:after,
.ww-content .link_all_anchor:before,
.ww-content .link_all_anchor:after {
    content: none !important;
    display: none !important;
}

.ww-content .lm-mobile-part-main {
    display: block;
    white-space: normal;
}

.ww-content .lm-mobile-part-brand,
.ww-content .lm-mobile-part-article,
.ww-content .lm-mobile-part-title {
    display: block;
}

.ww-content .lm-mobile-part-brand {
    color: #101820;
    font-weight: 900;
}

.ww-content .lm-mobile-part-article {
    margin-top: 4px;
    color: #536171;
    font-weight: 800;
}

.ww-content .lm-mobile-part-title {
    margin-top: 6px;
    color: #26313b;
    font-weight: 600;
    line-height: 1.35;
}

@media (min-width: 761px) and (max-width: 1024px) {
    .ww-content .searchResultsTable,
    .ww-content .lm-auto-search-parts-place {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .ww-content .searchResultsTable table.lm-auto-search-parts,
    .ww-content .lm-auto-search-parts-place table.lm-auto-search-parts {
        width: 1120px;
        min-width: 1120px;
        max-width: none;
    }
}

@media (max-width: 760px) {
    .ww-static-grid,
    .ww-map-fallback {
        grid-template-columns: 1fr;
    }

    .ww-static-grid {
        display: grid;
    }

    .ww-map-fallback {
        display: grid;
        align-items: start;
    }

    .ww-action-btn,
    .ww-action-btn-secondary {
        width: 100%;
    }

    .ww-empty-search {
        padding: 20px;
    }

    .ww-empty-search-line {
        flex-direction: column;
    }

    .ww-empty-search-line button {
        width: 100%;
    }

    .ww-cart-mobile-link {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 3;
    }

    .ww-auth a,
    .ww-profile-link,
    .ww-account-trigger {
        min-height: 38px;
    }

    .ww-account-name {
        max-width: 120px;
    }

    .ww-search input[type="submit"] {
        width: 42px;
        height: 42px;
        right: 4px;
    }

    .ww-search .input-append:after {
        right: 18px;
    }
}

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