:root {
    --aw-orange: #f26a2e;
    --aw-orange-dark: #df5419;
    --aw-black: #111417;
    --aw-dark: #1f2428;
    --aw-dark-2: #101214;
    --aw-steel: #6f7a81;
    --aw-muted: #6f7a81;
    --aw-border: #d9dee2;
    --aw-border-soft: #e8ecef;
    --aw-bg: #f4f6f7;
    --aw-page-bg: #f4f6f7;
    --aw-card: #ffffff;
    --aw-radius: 18px;
    --aw-radius-sm: 12px;
    --aw-container: 1560px;
    --aw-shadow: 0 18px 45px rgba(17, 20, 23, 0.07);
    --aw-shadow-soft: 0 10px 28px rgba(17, 20, 23, 0.06);
    --aw-font-heading: "Manrope", "Inter", Arial, sans-serif;
    --aw-font-body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--aw-bg);
}

body {
    margin: 0;
    color: var(--aw-black);
    font-family: var(--aw-font-body);
    font-size: 16px;
    line-height: 1.5;
    background: var(--aw-bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.aw-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sc-shell {
    width: min(100% - 48px, var(--aw-container));
    margin: 0 auto;
}

.sc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--aw-border-soft);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

.sc-topbar {
    color: var(--aw-steel);
    font-size: 13px;
    font-weight: 600;
    background: #ffffff;
    border-bottom: 1px solid var(--aw-border-soft);
}

.sc-topbar__inner,
.sc-mainbar__inner,
.sc-topbar__left,
.sc-topbar__right,
.sc-nav {
    display: flex;
    align-items: center;
}

.sc-topbar__inner {
    justify-content: space-between;
    min-height: 42px;
    gap: 20px;
}

.sc-topbar__left,
.sc-topbar__right {
    gap: 20px;
}

.sc-topbar__city,
.sc-topbar__left a,
.sc-topbar__right a {
    color: var(--aw-steel);
    text-decoration: none;
    transition: color 0.18s ease;
}

.sc-topbar__city {
    font-weight: 700;
}

.sc-topbar__city:hover,
.sc-topbar__left a:hover,
.sc-topbar__right a:hover {
    color: var(--aw-orange);
}

.sc-topbar__pill {
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--aw-steel);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    border: 0;
}

.sc-mainbar__inner {
    min-height: 92px;
    gap: 22px;
    padding: 6px 0 8px;
}

.sc-logo {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    min-width: 230px;
    color: inherit;
    text-decoration: none;
}

.sc-logo img {
    display: block;
    width: 210px;
    height: auto;
    object-fit: contain;
}

.sc-logo__slogan {
    color: var(--aw-steel);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    transition: color 0.18s ease;
}

.sc-logo:hover .sc-logo__slogan {
    color: var(--aw-orange);
}

.sc-catalog-button,
.sc-request-button,
.aw-button,
.aw-home-button,
.aw-product-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border-radius: 12px;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sc-catalog-button {
    gap: 10px;
    color: var(--aw-black);
    background: #ffffff;
    border: 1px solid var(--aw-border);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.sc-catalog-button:hover {
    border-color: var(--aw-orange);
}

.sc-search {
    position: relative;
    flex: 1 1 380px;
    max-width: 520px;
}

.sc-search input {
    width: 100%;
    min-height: 46px;
    padding: 0 50px 0 18px;
    color: var(--aw-black);
    font: inherit;
    background: #f8fafb;
    border: 1px solid var(--aw-border-soft);
    border-radius: 12px;
    outline: none;
}

.sc-search input:focus {
    background: #ffffff;
    border-color: var(--aw-orange);
    box-shadow: 0 0 0 3px rgba(242, 106, 46, 0.11);
}

.sc-search button {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 34px;
    height: 34px;
    color: var(--aw-steel);
    font-size: 22px;
    background: transparent;
    border: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

.sc-nav {
    gap: 16px;
    margin-left: auto;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.sc-nav a {
    color: var(--aw-dark);
    text-decoration: none;
}

.sc-nav a:hover {
    color: var(--aw-orange);
}

.sc-nav__item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sc-nav__link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sc-nav__chevron {
    color: var(--aw-orange);
    font-size: 11px;
    line-height: 1;
    transform: translateY(1px);
}

.sc-nav__dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 60;
    min-width: 282px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.sc-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
}

.sc-nav__item--has-dropdown:hover .sc-nav__dropdown,
.sc-nav__item--has-dropdown:focus-within .sc-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.sc-nav__dropdown a {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    color: var(--aw-dark);
    border-radius: 12px;
    white-space: normal;
}

.sc-nav__dropdown a:hover,
.sc-nav__dropdown a:focus {
    color: var(--aw-black);
    background: #fff4ef;
}

.sc-nav__dropdown span {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.sc-nav__dropdown small {
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.sc-nav__item--brands .sc-nav__dropdown--brands {
    left: 0;
    right: auto;
    min-width: 560px;
    max-width: min(720px, calc(100vw - 48px));
    padding: 14px;
    transform: translateY(8px);
}

.sc-nav__item--brands:hover .sc-nav__dropdown--brands,
.sc-nav__item--brands:focus-within .sc-nav__dropdown--brands {
    transform: translateY(0);
}

.sc-nav-brands__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(108px, 1fr));
    gap: 10px;
}

.sc-nav-brand {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 10px 12px !important;
    background: #f8fafb;
    border: 1px solid var(--aw-border-soft);
    border-radius: 12px;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sc-nav-brand:hover,
.sc-nav-brand:focus {
    background: #ffffff !important;
    border-color: rgba(242, 106, 46, 0.34);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.sc-nav-brand img {
    display: block;
    max-width: 96px;
    max-height: 38px;
    object-fit: contain;
}

.sc-nav-brands__all {
    display: grid;
    gap: 4px;
    margin-top: 10px;
    padding: 12px 14px;
    color: var(--aw-dark);
    background: #fff4ef;
    border: 1px solid rgba(242, 106, 46, 0.2);
    border-radius: 12px;
    text-decoration: none;
}

.sc-nav-brands__all:hover,
.sc-nav-brands__all:focus {
    color: var(--aw-orange);
    background: #ffffff;
    border-color: rgba(242, 106, 46, 0.34);
}

.sc-nav-brands__all span {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.sc-nav-brands__all small {
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.sc-request-button,
.aw-button-primary,
.aw-home-button-primary,
.aw-product-card-button {
    color: #ffffff;
    background: var(--aw-orange);
    border: 1px solid var(--aw-orange);
}

.sc-request-button {
    box-shadow: 0 14px 30px rgba(242, 106, 46, 0.22);
}

.sc-request-button:hover,
.aw-button-primary:hover,
.aw-home-button-primary:hover,
.aw-product-card-button:hover {
    background: var(--aw-orange-dark);
    border-color: var(--aw-orange-dark);
    transform: translateY(-1px);
}
.aw-button-secondary,
.aw-home-button-secondary {
    color: var(--aw-black);
    background: #ffffff;
    border: 1px solid var(--aw-border);
}

.aw-button-secondary:hover,
.aw-home-button-secondary:hover {
    border-color: var(--aw-orange);
}

h1,
h2,
h3,
.aw-logo,
.sc-logo,
.sc-footer strong {
    font-family: var(--aw-font-heading);
}

.aw-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--aw-muted);
    font-size: 14px;
}

.aw-breadcrumbs a {
    color: var(--aw-muted);
    text-decoration: none;
}

.aw-breadcrumbs a:hover {
    color: var(--aw-orange);
}

.aw-card,
.aw-section-card,
.aw-hero-card,
.aw-product-gallery,
.aw-product-summary {
    background: var(--aw-card);
    border: 1px solid var(--aw-border-soft);
    border-radius: var(--aw-radius);
    box-shadow: var(--aw-shadow-soft);
}

.aw-muted,
.aw-empty-message {
    color: var(--aw-muted);
}

.aw-eyebrow,
.aw-listing-kicker,
.aw-home-kicker {
    color: var(--aw-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sc-footer {
    margin-top: auto;
    padding: 56px 0 42px;
    color: #101828;
    background:
        radial-gradient(circle at 88% 12%, rgba(242, 106, 46, 0.12), transparent 34%),
        linear-gradient(180deg, #f6f8fa 0%, #ffffff 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.sc-footer__panel {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 32px;
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
}

.sc-footer__inner {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.05fr)
        minmax(170px, 0.72fr)
        minmax(180px, 0.78fr)
        minmax(170px, 0.72fr)
        minmax(260px, 0.95fr);
    gap: 42px;
    padding: 56px 56px 42px;
}

.sc-footer__brand {
    padding-right: 46px;
    border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.sc-footer-logo {
    display: inline-flex;
    width: 284px;
    max-width: 100%;
    margin-bottom: 22px;
}

.sc-footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sc-footer__brand p {
    max-width: none;
}

.sc-footer__slogan {
    margin: 0 0 26px;
    color: #101828 !important;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.sc-footer__text {
    margin: 0 0 30px;
    color: #526173;
    font-size: 17px;
    line-height: 1.62;
}

.sc-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sc-footer-social__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #1f2937;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: #f4f5f7;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 13px;
}

.sc-footer__col,
.sc-footer__contacts {
    display: flex;
    flex-direction: column;
    align-content: initial;
    gap: 18px;
}

.sc-footer__contacts {
    padding-left: 36px;
    border-left: 1px solid rgba(15, 23, 42, 0.1);
}

.sc-footer__col strong,
.sc-footer__contacts-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: #101828;
    font-family: var(--aw-font-heading);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: none;
    letter-spacing: -0.02em;
}

.sc-footer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--aw-orange);
    font-family: var(--aw-font-base);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.sc-footer__arrow {
    color: var(--aw-orange);
    font-family: var(--aw-font-base);
    font-size: 24px;
    font-weight: 500;
}

.sc-footer__col a,
.sc-footer__contacts a,
.sc-footer__contacts span {
    color: #475467;
    font-size: 16px;
    line-height: 1.45;
    text-decoration: none;
}

.sc-footer__col a:hover,
.sc-footer__contacts a:hover {
    color: var(--aw-orange);
}

.sc-footer-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sc-footer-contact span {
    flex: 0 0 auto;
    color: var(--aw-orange);
    font-size: 20px;
}

.sc-footer-contact b {
    color: #101828;
    font-size: 22px;
    font-weight: 900;
}

.sc-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    min-height: 44px;
    padding: 0 20px;
    margin-top: 8px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #ff7a2f 0%, #f76628 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(247, 102, 40, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sc-footer__cta:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #ff8540 0%, #f76628 100%);
    box-shadow: 0 14px 28px rgba(247, 102, 40, 0.26);
    transform: translateY(-1px);
}

.sc-footer__cta:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(247, 102, 40, 0.20);
}

.sc-footer__cta span:last-child {
    font-size: 15px;
    line-height: 1;
}
.sc-footer__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 38px 56px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.sc-footer-feature {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 0 36px;
    border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.sc-footer-feature:first-child {
    padding-left: 0;
}

.sc-footer-feature:last-child {
    padding-right: 0;
    border-right: 0;
}

.sc-footer-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--aw-orange);
    font-size: 24px;
    font-weight: 900;
    background: rgba(242, 106, 46, 0.08);
    border: 1px solid rgba(242, 106, 46, 0.18);
    border-radius: 18px;
}

.sc-footer-feature strong {
    display: block;
    margin: 0 0 6px;
    color: #101828;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: none;
    letter-spacing: -0.01em;
}

.sc-footer-feature p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.45;
}

.sc-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 26px 56px;
    color: #475467;
    font-size: 15px;
    line-height: 1.4;
    background: rgba(248, 250, 252, 0.72);
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.sc-footer__bottom > span:last-child {
    text-align: right;
}

.sc-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
    color: #475467;
}
@media (max-width: 1120px) {
    .sc-mainbar__inner {
        gap: 16px;
    }

    .sc-search {
        max-width: 420px;
    }
}

@media (max-width: 820px) {
    .sc-shell {
        width: min(100% - 32px, var(--aw-container));
    }

    .sc-topbar__inner,
    .sc-topbar__left,
    .sc-topbar__right {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .sc-mainbar__inner {
        min-height: auto;
        padding: 14px 0;
    }

    .sc-logo {
        min-width: auto;
    }

    .sc-logo img {
        width: 176px;
    }

    .sc-nav {
        order: 6;
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .sc-nav__dropdown {
        left: 0;
        transform: translateY(8px);
    }

    .sc-nav__item--has-dropdown:hover .sc-nav__dropdown,
    .sc-nav__item--has-dropdown:focus-within .sc-nav__dropdown {
        transform: translateY(0);
    }

    .sc-nav__item--brands .sc-nav__dropdown--brands {
        min-width: min(560px, calc(100vw - 32px));
    }

    .sc-nav-brands__grid {
        grid-template-columns: repeat(3, minmax(96px, 1fr));
    }

    .sc-request-button {
        margin-left: auto;
    }

    .sc-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .sc-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .sc-logo img {
        width: 150px;
    }

    .sc-catalog-button,
    .sc-request-button {
        flex: 1 1 auto;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }

    .sc-nav__item--brands .sc-nav__dropdown--brands {
        min-width: min(420px, calc(100vw - 32px));
    }

    .sc-nav-brands__grid {
        grid-template-columns: repeat(2, minmax(96px, 1fr));
    }

    .sc-nav-brand {
        min-height: 56px;
    }

    .sc-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sc-footer__bottom {
        flex-direction: column;
    }
}

/* Svarcore white footer final overrides START */
@media (max-width: 1320px) {
    .sc-footer__inner {
        grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(180px, 0.75fr));
    }

    .sc-footer__contacts {
        grid-column: 2 / -1;
        padding-left: 0;
        border-left: 0;
    }

    .sc-footer__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
    }

    .sc-footer-feature:nth-child(2) {
        border-right: 0;
    }

    .sc-footer-feature:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 920px) {
    .sc-footer {
        padding: 36px 0 28px;
    }

    .sc-footer__panel {
        border-radius: 24px;
    }

    .sc-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 36px 28px;
    }

    .sc-footer__brand,
    .sc-footer__contacts {
        padding-right: 0;
        padding-left: 0;
        border-right: 0;
        border-left: 0;
    }

    .sc-footer__features {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 32px 28px;
    }

    .sc-footer-feature,
    .sc-footer-feature:first-child,
    .sc-footer-feature:nth-child(3),
    .sc-footer-feature:last-child {
        padding: 0;
        border-right: 0;
    }

    .sc-footer__bottom {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 28px;
        text-align: left;
    }

    .sc-footer__bottom-links {
        justify-content: flex-start;
        gap: 16px 28px;
    }

    .sc-footer__bottom > span:last-child {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .sc-footer .sc-shell {
        width: min(100% - 28px, var(--aw-container));
    }

    .sc-footer__inner {
        padding: 30px 20px;
    }

    .sc-footer-logo {
        width: 230px;
    }

    .sc-footer__slogan {
        font-size: 16px;
    }

    .sc-footer__text {
        font-size: 15px;
    }

    .sc-footer__col strong,
    .sc-footer__contacts-title {
        font-size: 18px;
    }

    .sc-footer__features {
        padding: 28px 20px;
    }

    .sc-footer-feature {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 16px;
    }

    .sc-footer-feature__icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .sc-footer__bottom {
        padding: 22px 20px;
        font-size: 14px;
    }

    .sc-footer__bottom-links {
        flex-direction: column;
        gap: 8px;
    }
}
/* Svarcore white footer final overrides END */

/* Compact full-width footer */
.sc-footer {
    margin-top: auto;
    color: #101722;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer__wrap {
    width: 100%;
    background:
        radial-gradient(circle at 92% 22%, rgba(242, 106, 46, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.sc-footer__main {
    display: grid;
    grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(150px, 0.8fr)) minmax(240px, 1fr);
    gap: clamp(24px, 3vw, 54px);
    padding: 36px 0 32px;
}

.sc-footer__brand,
.sc-footer__contacts {
    min-width: 0;
}

.sc-footer-logo {
    display: inline-flex;
    width: 235px;
    max-width: 100%;
    margin-bottom: 16px;
}

.sc-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sc-footer__slogan {
    margin: 0 0 16px;
    color: #101722 !important;
    font-weight: 900;
    line-height: 1.25;
}

.sc-footer__lead {
    max-width: 360px;
    margin: 0;
    color: #566171;
    font-size: 15px;
    line-height: 1.65;
}

.sc-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.sc-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    background: #f3f4f6;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
}

.sc-footer__socials a:hover {
    color: #ffffff;
    background: var(--aw-orange);
    border-color: var(--aw-orange);
}

.sc-footer__group,
.sc-footer__contacts {
    display: grid;
    align-content: start;
    gap: 13px;
}

.sc-footer__group strong,
.sc-footer__contacts strong {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #101722;
    font-family: var(--aw-font-heading);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.sc-footer__group strong span,
.sc-footer__contacts strong span {
    color: var(--aw-orange);
    font-size: 18px;
}

.sc-footer a {
    text-decoration: none;
}

.sc-footer__group a,
.sc-footer-contact {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.45;
}

.sc-footer__group a:hover,
.sc-footer-contact:hover {
    color: var(--aw-orange);
}

.sc-footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sc-footer-contact span {
    color: var(--aw-orange);
}

.sc-footer__contacts .sc-footer-contact:first-of-type {
    color: #101722;
    font-size: 20px;
    font-weight: 900;
}

.sc-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    min-height: 44px;
    padding: 0 20px;
    margin-top: 8px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #ff7a2f 0%, #f76628 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(247, 102, 40, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sc-footer__cta:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #ff8540 0%, #f76628 100%);
    box-shadow: 0 14px 28px rgba(247, 102, 40, 0.26);
    transform: translateY(-1px);
}

.sc-footer__cta:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(247, 102, 40, 0.20);
}

.sc-footer__cta span:last-child {
    font-size: 15px;
    line-height: 1;
}
.sc-footer__features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 4px 24px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer-feature:first-child {
    padding-left: 0;
}

.sc-footer-feature:last-child {
    padding-right: 0;
    border-right: 0;
}

.sc-footer-feature > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--aw-orange);
    font-weight: 900;
    background: rgba(242, 106, 46, 0.08);
    border: 1px solid rgba(242, 106, 46, 0.18);
    border-radius: 16px;
}

.sc-footer-feature strong {
    display: block;
    margin: 0 0 4px;
    color: #101722;
    font-size: 16px;
    font-weight: 900;
}

.sc-footer-feature p {
    margin: 0;
    color: #657180;
    font-size: 14px;
    line-height: 1.45;
}

.sc-footer__bottom {
    display: grid;
    grid-template-columns: 1.2fr auto auto 1.2fr;
    gap: 24px;
    align-items: center;
    padding: 18px 0 22px;
    color: #657180;
    font-size: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer__bottom a {
    color: #657180;
}

.sc-footer__bottom a:hover {
    color: var(--aw-orange);
}

.sc-footer__bottom span:last-child {
    justify-self: end;
}

@media (max-width: 1280px) {
    .sc-footer__main {
        grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(160px, 1fr));
    }

    .sc-footer__contacts {
        grid-column: 2 / -1;
    }

    .sc-footer__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    .sc-footer-feature:nth-child(2) {
        border-right: 0;
    }

    .sc-footer-feature:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 820px) {
    .sc-footer__main {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 30px 0 24px;
    }

    .sc-footer__contacts {
        grid-column: auto;
    }

    .sc-footer__features {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }

    .sc-footer-feature,
    .sc-footer-feature:first-child,
    .sc-footer-feature:last-child,
    .sc-footer-feature:nth-child(3) {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .sc-footer-feature:last-child {
        border-bottom: 0;
    }

    .sc-footer__bottom {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sc-footer__bottom span:last-child {
        justify-self: start;
    }
}

/* Svarcore footer compact override */
.sc-footer {
    margin-top: auto;
    padding: 0;
    color: #182230;
    background: #f4f6f8;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer__surface {
    width: 100%;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer__top {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) repeat(3, minmax(150px, 0.7fr)) minmax(230px, 0.9fr);
    gap: 28px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 28px;
}

.sc-footer__brand {
    padding-right: 28px;
    border-right: 1px solid rgba(15, 23, 42, 0.1);
}

.sc-footer-logo {
    display: inline-flex;
    width: 118px !important;
    max-width: 118px !important;
    margin-bottom: 16px;
}

.sc-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 118px;
    object-fit: contain;
}

.sc-footer__brand p {
    max-width: 280px;
    margin: 0 0 12px;
    color: #475467;
    font-size: 14px;
    line-height: 1.55;
}

.sc-footer__slogan {
    color: #0b1220 !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
}

.sc-footer__social,
.sc-footer__socials,
.sc-footer-social,
.sc-footer-socials,
.sc-footer__brand-socials {
    display: none !important;
}

.sc-footer__col,
.sc-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-content: start;
}

.sc-footer strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #0b1220;
    font-family: var(--aw-font-heading);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
}

.sc-footer strong span {
    color: var(--aw-orange);
    font-size: 18px;
    line-height: 1;
}

.sc-footer__col a,
.sc-footer__contacts a,
.sc-footer__contacts span {
    color: #475467;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
}

.sc-footer a:hover {
    color: var(--aw-orange);
}

.sc-footer-contact--phone {
    margin-top: 4px;
    color: #0b1220 !important;
    font-size: 20px !important;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.sc-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    min-height: 44px;
    padding: 0 20px;
    margin-top: 8px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #ff7a2f 0%, #f76628 100%);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(247, 102, 40, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sc-footer__cta:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #ff8540 0%, #f76628 100%);
    box-shadow: 0 14px 28px rgba(247, 102, 40, 0.26);
    transform: translateY(-1px);
}

.sc-footer__cta:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(247, 102, 40, 0.20);
}

.sc-footer__cta span:last-child {
    font-size: 15px;
    line-height: 1;
}
.sc-footer__benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer__benefit {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 0 22px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.sc-footer__benefit:first-child {
    padding-left: 0;
}

.sc-footer__benefit:last-child {
    padding-right: 0;
    border-right: 0;
}

.sc-footer__benefit > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--aw-orange);
    font-size: 16px;
    font-weight: 900;
    background: rgba(255, 90, 31, 0.08);
    border: 1px solid rgba(255, 90, 31, 0.22);
    border-radius: 14px;
}

.sc-footer__benefit strong {
    display: block;
    margin: 0 0 4px;
    color: #0b1220;
    font-size: 15px;
    font-weight: 900;
    text-transform: none;
    letter-spacing: 0;
}

.sc-footer__benefit p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.4;
}

.sc-footer__bottom-row {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 250, 252, 0.74);
}

.sc-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #667085;
    font-size: 13px;
    line-height: 1.35;
    border-top: 0;
}

.sc-footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 1180px) {
    .sc-footer__top {
        grid-template-columns: 1.1fr 1fr 1fr;
    }

    .sc-footer__brand,
    .sc-footer__contacts {
        border-right: 0;
    }

    .sc-footer__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    .sc-footer__benefit:nth-child(2) {
        border-right: 0;
    }

    .sc-footer__benefit:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .sc-footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 26px;
        padding-bottom: 24px;
    }

    .sc-footer__brand {
        padding-right: 0;
        border-right: 0;
    }

    .sc-footer-logo {
        width: 108px !important;
        max-width: 108px !important;
    }

    .sc-footer-logo img {
        max-height: 108px;
    }

    .sc-footer__benefits {
        grid-template-columns: 1fr;
    }

    .sc-footer__benefit,
    .sc-footer__benefit:first-child,
    .sc-footer__benefit:nth-child(3),
    .sc-footer__benefit:last-child {
        padding: 0;
        border-right: 0;
    }

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

    .sc-footer__bottom-links {
        justify-content: flex-start;
        gap: 12px 20px;
    }
}
/* End Svarcore footer compact override */

/* Svarcore footer heading links */
.sc-footer__heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 8px;
    color: #0b1220 !important;
    font-family: var(--aw-font-heading);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}

.sc-footer__heading span {
    color: var(--aw-orange);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.18s ease;
}

.sc-footer__heading:hover {
    color: var(--aw-orange) !important;
}

.sc-footer__heading:hover span {
    transform: translateX(3px);
}
/* End Svarcore footer heading links */

.sc-footer__col-title-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
}

.sc-footer__col-title-link:hover {
    color: var(--aw-orange);
}

.sc-footer__col-head--link {
    color: inherit;
    text-decoration: none;
}

.sc-footer__col-head--link:hover strong,
.sc-footer__col-head--link:hover .sc-footer__col-arrow {
    color: var(--aw-orange);
}

.sc-footer__contacts .sc-footer__heading {
    width: fit-content;
}
/* FINAL FOOTER CTA OVERRIDE */
.sc-footer .sc-footer__contacts .sc-footer__cta,
.sc-footer .sc-footer__cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    min-width: 210px !important;
    max-width: 240px !important;
    min-height: 46px !important;
    padding: 0 22px !important;
    margin-top: 12px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #ff7a2f 0%, #f76628 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 14px 28px rgba(247, 102, 40, 0.24) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.sc-footer .sc-footer__contacts .sc-footer__cta span,
.sc-footer .sc-footer__cta span {
    color: #ffffff !important;
}

.sc-footer .sc-footer__contacts .sc-footer__cta:hover,
.sc-footer .sc-footer__cta:hover {
    color: #ffffff !important;
    background: linear-gradient(180deg, #ff8540 0%, #f76628 100%) !important;
    box-shadow: 0 18px 34px rgba(247, 102, 40, 0.30) !important;
    transform: translateY(-1px) !important;
}

.sc-footer .sc-footer__contacts .sc-footer__cta:active,
.sc-footer .sc-footer__cta:active {
    transform: translateY(0) !important;
    box-shadow: 0 10px 22px rgba(247, 102, 40, 0.22) !important;
}
/* END FINAL FOOTER CTA OVERRIDE */

/* Privacy consent */
.sc-privacy-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    width: 100%;
    margin: 4px 0 8px;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.45;
}

.sc-privacy-consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--aw-orange);
}

.sc-privacy-consent a {
    color: var(--aw-orange);
    font-weight: 700;
    text-decoration: none;
}

.sc-privacy-consent a:hover {
    text-decoration: underline;
}

.sc-home-request__form .sc-privacy-consent,
.sc-demo-cta .sc-privacy-consent,
.sc-repair-form .sc-privacy-consent,
.sc-contact-form .sc-privacy-consent {
    grid-column: 1 / -1;
}

.sc-home-request__form .sc-privacy-consent,
.sc-repair-form .sc-privacy-consent {
    color: rgba(255, 255, 255, 0.72);
}

.sc-home-request__form .sc-privacy-consent a,
.sc-repair-form .sc-privacy-consent a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Legal page */
.sc-legal-page {
    padding: 64px 0 88px;
    background:
        radial-gradient(circle at 14% 12%, rgba(255, 94, 41, 0.08), transparent 28%),
        linear-gradient(180deg, #f6f8fa 0%, #eef2f5 100%);
}

.sc-legal-container {
    width: min(100% - 48px, var(--aw-container, 1560px));
    margin: 0 auto;
}

.sc-legal-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 44px;
    color: #172231;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.sc-legal-eyebrow {
    margin: 0 0 12px;
    color: var(--aw-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sc-legal-card h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.sc-legal-card h2 {
    margin: 32px 0 10px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.sc-legal-card p,
.sc-legal-card li {
    color: #4b5969;
    font-size: 16px;
    line-height: 1.75;
}

.sc-legal-card ul {
    margin: 0;
    padding-left: 22px;
}

.sc-legal-card a {
    color: var(--aw-orange);
    font-weight: 800;
    text-decoration: none;
}

.sc-legal-card a:hover {
    text-decoration: underline;
}

.sc-legal-note {
    margin-top: 34px;
    padding: 18px 20px;
    background: #fff6f1;
    border: 1px solid rgba(255, 94, 41, 0.18);
    border-radius: 18px;
}

.sc-footer__bottom a,
.sc-footer__bottom-links a {
    color: inherit;
    text-decoration: none;
}

.sc-footer__bottom a:hover,
.sc-footer__bottom-links a:hover {
    color: var(--aw-orange);
}

@media (max-width: 760px) {
    .sc-legal-page {
        padding: 40px 0 56px;
    }

    .sc-legal-container {
        width: min(100% - 28px, var(--aw-container, 1560px));
    }

    .sc-legal-card {
        padding: 28px 22px;
        border-radius: 22px;
    }
}

/* Svarcore legal consent UI */
.sc-form-consent {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 18px 0 22px !important;
    color: #334155 !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.sc-form-consent input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    position: relative !important;
    flex: 0 0 20px !important;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    height: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 91, 35, 0.55) !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06) !important;
    cursor: pointer !important;
}

.sc-form-consent input[type="checkbox"]:checked {
    border-color: var(--aw-orange, #ff5b23) !important;
    background: var(--aw-orange, #ff5b23) !important;
}

.sc-form-consent input[type="checkbox"]:checked::after {
    content: "" !important;
    position: absolute !important;
    left: 6px !important;
    top: 3px !important;
    width: 5px !important;
    height: 10px !important;
    border: solid #ffffff !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

.sc-form-consent span {
    display: block !important;
    margin: 0 !important;
}

.sc-form-consent a {
    color: var(--aw-orange, #ff5b23) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 91, 35, 0.35) !important;
}

.sc-form-consent a:hover {
    border-bottom-color: var(--aw-orange, #ff5b23) !important;
}
/* End Svarcore legal consent UI */
/* Storefront search page */
.sc-search-page {
    padding: 42px 0 72px;
    background:
        radial-gradient(circle at 88% 4%, rgba(255, 92, 35, 0.08), transparent 28%),
        linear-gradient(180deg, #f5f7f9 0%, #ffffff 38%, #f5f7f9 100%);
}

.sc-search-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 32px;
    align-items: end;
    padding: 42px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.sc-search-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--aw-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sc-search-hero h1 {
    max-width: 780px;
    margin: 0 0 14px;
    color: #07111f;
    font-family: var(--aw-font-heading);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.sc-search-hero p {
    max-width: 680px;
    margin: 0;
    color: #526173;
    font-size: 17px;
    line-height: 1.55;
}

.sc-search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    background: #f6f8fa;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 18px;
}

.sc-search-page-form input {
    min-height: 54px;
    padding: 0 18px;
    color: #07111f;
    font-size: 15px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    outline: none;
}

.sc-search-page-form input:focus {
    border-color: rgba(255, 92, 35, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 92, 35, 0.1);
}

.sc-search-page-form button,
.sc-search-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    color: #ffffff;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg, #ff7438 0%, #ff4d1f 100%);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(255, 92, 35, 0.22);
    cursor: pointer;
}

.sc-search-results {
    margin-top: 24px;
}

.sc-search-summary,
.sc-search-empty {
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.sc-search-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sc-search-summary span {
    color: var(--aw-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sc-search-summary strong {
    color: #07111f;
    font-size: 22px;
    font-weight: 900;
}

.sc-search-summary small {
    margin-left: auto;
    color: #66758a;
    font-size: 14px;
    font-weight: 700;
}

.sc-search-empty {
    min-height: 240px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 12px;
}

.sc-search-empty h2 {
    margin: 0;
    color: #07111f;
    font-family: var(--aw-font-heading);
    font-size: 32px;
}

.sc-search-empty p {
    max-width: 620px;
    margin: 0;
    color: #526173;
    font-size: 16px;
    line-height: 1.55;
}

.sc-search-section {
    margin-top: 24px;
}

.sc-search-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.sc-search-section__head h2 {
    margin: 0;
    color: #07111f;
    font-family: var(--aw-font-heading);
    font-size: 28px;
    letter-spacing: -0.04em;
}

.sc-search-section__head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 10px;
    color: var(--aw-orange);
    font-weight: 900;
    background: #fff1ec;
    border: 1px solid rgba(255, 92, 35, 0.2);
    border-radius: 999px;
}

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

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

.sc-search-card {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 20px;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.sc-search-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 92, 35, 0.34);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.sc-search-card__type {
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 9px;
    color: var(--aw-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #fff1ec;
    border-radius: 999px;
}

.sc-search-card strong {
    color: #07111f;
    font-size: 17px;
    line-height: 1.25;
}

.sc-search-card p {
    margin: 10px 0 14px;
    color: #526173;
    font-size: 14px;
    line-height: 1.5;
}

.sc-search-card small {
    margin-top: auto;
    color: #7a8798;
    font-size: 13px;
    font-weight: 700;
}

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

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

    .sc-search-summary small {
        margin-left: 0;
    }
}

@media (max-width: 680px) {
    .sc-search-page {
        padding: 24px 0 48px;
    }

    .sc-search-hero {
        padding: 24px;
        border-radius: 22px;
    }

    .sc-search-page-form {
        grid-template-columns: 1fr;
    }

    .sc-search-grid,
    .sc-search-grid--products {
        grid-template-columns: 1fr;
    }
}
/* End storefront search page */


/* Header cart icon */
.sc-mainbar .sc-search {
    flex: 0 1 360px;
    max-width: 360px;
}

.sc-header-cart {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    border: 1px solid rgba(12, 24, 36, 0.14);
    border-radius: 13px;
    background: #ffffff;
    color: #101820;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.sc-header-cart:hover {
    border-color: rgba(255, 62, 18, 0.42);
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
    transform: translateY(-1px);
}

.sc-header-cart__icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
}

.sc-header-cart__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sc-header-cart__count {
    position: absolute;
    right: -7px;
    top: -7px;
    min-width: 21px;
    height: 21px;
    display: inline-grid;
    place-items: center;
    padding: 0 6px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: #ff3e12;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.sc-header-cart__count[hidden] {
    display: none;
}

@media (max-width: 1180px) {
    .sc-mainbar .sc-search {
        flex-basis: 300px;
        max-width: 300px;
    }
}
/* Cookie consent */
.sc-cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    max-width: 520px;
    width: calc(100% - 48px);
}

.sc-cookie-consent[hidden] {
    display: none;
}

.sc-cookie-consent__inner {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(18, 18, 18, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    color: #fff;
}

.sc-cookie-consent__inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.sc-cookie-consent__inner a {
    color: #f76628;
    text-decoration: none;
}

.sc-cookie-consent__inner a:hover {
    text-decoration: underline;
}

.sc-cookie-consent__inner button {
    justify-self: start;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    background: #f76628;
    color: #171717;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 640px) {
    .sc-cookie-consent {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .sc-cookie-consent__inner {
        border-radius: 16px;
        padding: 14px;
    }
}

/* Footer logo size */
.sc-footer-logo img {
    width: 290px;
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .sc-footer-logo img {
        width: 220px;
    }
}

/* Footer logo force size */
.sc-footer .sc-footer__brand .sc-footer-logo {
    display: inline-flex;
    align-items: center;
    max-width: 360px;
}

.sc-footer .sc-footer__brand .sc-footer-logo img {
    width: 360px !important;
    height: auto !important;
    max-width: 100% !important;
    display: block;
}

@media (max-width: 768px) {
    .sc-footer .sc-footer__brand .sc-footer-logo {
        max-width: 260px;
    }

    .sc-footer .sc-footer__brand .sc-footer-logo img {
        width: 260px !important;
    }
}

/* Footer logo targeted fix */
.sc-footer .sc-footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    width: 360px !important;
    max-width: 360px !important;
}

.sc-footer .sc-footer-logo__image {
    display: block !important;
    width: 360px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .sc-footer .sc-footer-logo {
        width: 260px !important;
        max-width: 260px !important;
    }

    .sc-footer .sc-footer-logo__image {
        width: 260px !important;
    }
}

/* Footer logo final size */
.sc-footer .sc-footer-logo {
    width: 280px !important;
    max-width: 280px !important;
}

.sc-footer .sc-footer-logo__image {
    width: 280px !important;
    height: auto !important;
    max-width: none !important;
}

@media (max-width: 768px) {
    .sc-footer .sc-footer-logo {
        width: 220px !important;
        max-width: 220px !important;
    }

    .sc-footer .sc-footer-logo__image {
        width: 220px !important;
    }
}

/* Mobile header overflow fix */
@media (max-width: 720px) {
    .sc-mainbar__inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "logo cart"
            "catalog catalog" !important;
        gap: 10px 12px !important;
        align-items: center !important;
    }

    .sc-logo {
        grid-area: logo !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .sc-logo img {
        width: 156px !important;
        height: auto !important;
        max-width: 156px !important;
    }

    .sc-logo__slogan {
        max-width: 156px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .sc-catalog-button {
        grid-area: catalog !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        justify-content: center !important;
    }

    .sc-cart-button {
        grid-area: cart !important;
        justify-self: end !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
    }

    .sc-search,
    .sc-nav,
    .sc-request-button {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .sc-logo img {
        width: 142px !important;
        max-width: 142px !important;
    }

    .sc-logo__slogan {
        max-width: 142px !important;
    }
}

/* Mobile header split actions + full slogan + brand rail overflow fix */
.sc-mobile-brands-button {
    display: none;
}

@media (max-width: 720px) {
    .sc-mainbar__inner {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        grid-template-areas:
            "logo logo"
            "catalog brands" !important;
        gap: 10px 10px !important;
        align-items: center !important;
    }

    .sc-logo {
        grid-area: logo !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 56px !important;
    }

    .sc-logo img {
        width: 156px !important;
        height: auto !important;
        max-width: 156px !important;
    }

    .sc-logo__slogan {
        display: block !important;
        max-width: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }

    .sc-catalog-button {
        grid-area: catalog !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        justify-content: center !important;
    }

    .sc-mobile-brands-button {
        grid-area: brands !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
        width: 100% !important;
        min-height: 44px !important;
        padding: 10px 12px !important;
        border: 1px solid var(--aw-border, #d8dee3) !important;
        border-radius: 14px !important;
        background: #fff !important;
        color: var(--aw-ink, #111827) !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .sc-cart-button {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
        justify-self: end !important;
    }

    .sc-search,
    .sc-nav,
    .sc-request-button {
        display: none !important;
    }

    .sc-home-brand-rail {
        grid-template-columns: 1fr !important;
        overflow: hidden !important;
    }

    .sc-home-brand-rail__title,
    .sc-home-brand-rail__all,
    .sc-home-brand-rail__items {
        grid-column: 1 / -1 !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .sc-home-brand-rail__all {
        justify-self: start !important;
        white-space: normal !important;
        text-align: left !important;
    }

    .sc-home-brand-rail__items {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 360px) {
    .sc-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    .sc-mobile-brands-button,
    .sc-catalog-button {
        font-size: 14px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Mobile header final actions layout */
@media (max-width: 720px) {
    .sc-mainbar__inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 52px !important;
        grid-template-areas:
            "logo cart"
            "catalog brands" !important;
        gap: 12px 10px !important;
        align-items: center !important;
    }

    .sc-logo {
        grid-area: logo !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }

    .sc-logo img {
        width: 156px !important;
        max-width: 156px !important;
        height: auto !important;
    }

    .sc-logo__slogan {
        display: block !important;
        max-width: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }

    .sc-cart-button {
        grid-area: cart !important;
        position: static !important;
        justify-self: end !important;
        align-self: center !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
    }

    .sc-catalog-button {
        grid-area: catalog !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 48px !important;
        justify-content: center !important;
    }

    .sc-mobile-brands-button {
        grid-area: brands !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 48px !important;
        padding: 10px 12px !important;
        border: 1px solid var(--aw-border, #d8dee3) !important;
        border-radius: 14px !important;
        background: #fff !important;
        color: var(--aw-ink, #111827) !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .sc-search,
    .sc-nav,
    .sc-request-button {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .sc-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    .sc-catalog-button,
    .sc-mobile-brands-button {
        font-size: 14px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Mobile header final grid override */
.sc-mobile-brands-button {
    display: none;
}

@media (max-width: 720px) {
    .sc-mainbar__inner {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        grid-template-areas:
            "logo logo"
            "catalog brands" !important;
        gap: 12px 10px !important;
        align-items: center !important;
    }

    .sc-logo {
        grid-area: logo !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 56px !important;
    }

    .sc-logo img {
        width: 156px !important;
        max-width: 156px !important;
        height: auto !important;
    }

    .sc-logo__slogan {
        display: block !important;
        max-width: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }

    .sc-cart-button {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        grid-area: none !important;
        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;
    }

    .sc-catalog-button {
        grid-area: catalog !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 48px !important;
        justify-content: center !important;
    }

    .sc-mobile-brands-button {
        grid-area: brands !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 48px !important;
        padding: 10px 12px !important;
        border: 1px solid var(--aw-border, #d8dee3) !important;
        border-radius: 14px !important;
        background: #fff !important;
        color: var(--aw-ink, #111827) !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .sc-search,
    .sc-nav,
    .sc-request-button {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .sc-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    .sc-catalog-button,
    .sc-mobile-brands-button {
        font-size: 14px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Mobile cart top alignment fix */
@media (max-width: 720px) {
    .sc-mainbar__inner {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        grid-template-areas:
            "logo logo"
            "catalog brands" !important;
        gap: 12px 10px !important;
        align-items: center !important;
    }

    .sc-mainbar__inner .sc-logo {
        grid-area: logo !important;
        padding-right: 58px !important;
    }

    .sc-mainbar__inner .sc-cart-button,
    .sc-mainbar__inner a[href*="/korzina"] {
        position: absolute !important;
        top: 8px !important;
        right: 0 !important;
        z-index: 5 !important;
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        margin: 0 !important;
    }

    .sc-mainbar__inner .sc-catalog-button {
        grid-area: catalog !important;
    }

    .sc-mainbar__inner .sc-mobile-brands-button {
        grid-area: brands !important;
    }
}


/* Tablet canonical header/footer layout */
@media (min-width: 721px) and (max-width: 1180px) {
    html,
    body,
    .aw-page {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Full-width header/footer background */
    .sc-header,
    .sc-footer {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        transform: none !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .sc-topbar,
    .sc-mainbar,
    .sc-footer__surface,
    .sc-footer__bottom-row {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .sc-topbar,
    .sc-mainbar {
        background: #fff !important;
    }

    .sc-topbar__inner,
    .sc-mainbar__inner,
    .sc-footer .sc-shell {
        width: min(100% - 40px, var(--aw-container, 1560px)) !important;
        max-width: var(--aw-container, 1560px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* Header: logo + cart, then catalog + manufacturers */
    .sc-mainbar__inner {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        grid-template-areas:
            "logo logo"
            "catalog brands" !important;
        gap: 12px 14px !important;
        align-items: center !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .sc-logo {
        grid-area: logo !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 64px !important;
    }

    .sc-logo img {
        width: clamp(170px, 23vw, 220px) !important;
        max-width: clamp(170px, 23vw, 220px) !important;
        height: auto !important;
    }

    .sc-logo__slogan {
        display: block !important;
        max-width: 260px !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }

    .sc-cart-button {
        position: absolute !important;
        top: 14px !important;
        right: 0 !important;
        z-index: 5 !important;
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
        margin: 0 !important;
    }

    .sc-catalog-button {
        grid-area: catalog !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 48px !important;
        justify-content: center !important;
    }

    .sc-mobile-brands-button {
        grid-area: brands !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 48px !important;
        padding: 10px 14px !important;
        border: 1px solid var(--aw-border, #d8dee3) !important;
        border-radius: 14px !important;
        background: #fff !important;
        color: var(--aw-ink, #111827) !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .sc-search,
    .sc-nav,
    .sc-request-button {
        display: none !important;
    }

    /* Footer */
    .sc-footer__surface {
        background: linear-gradient(110deg, #ffffff 0%, #ffffff 68%, #fff0e8 100%) !important;
    }

    .sc-footer__top {
        display: grid !important;
        gap: 28px 36px !important;
        align-items: start !important;
    }

    .sc-footer-logo,
    .sc-footer .sc-footer-logo {
        width: 240px !important;
        max-width: 240px !important;
    }

    .sc-footer-logo__image,
    .sc-footer-logo img,
    .sc-footer .sc-footer-logo img {
        width: 240px !important;
        max-width: 240px !important;
        height: auto !important;
    }

    .sc-footer__brand,
    .sc-footer__col,
    .sc-footer__contacts,
    .sc-footer__benefit {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .sc-footer__contacts {
        border-left: 0 !important;
        padding-left: 0 !important;
    }

    .sc-footer__benefits {
        display: grid !important;
        gap: 18px 24px !important;
    }

    .sc-footer__bottom {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px 18px !important;
        justify-content: space-between !important;
    }

    .sc-footer__bottom-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px 18px !important;
    }
}

@media (min-width: 721px) and (max-width: 899px) {
    .sc-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .sc-footer__brand {
        grid-column: 1 / -1 !important;
    }

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

@media (min-width: 900px) and (max-width: 1180px) {
    .sc-footer__top {
        grid-template-columns:
            minmax(220px, 1.2fr)
            minmax(130px, 0.8fr)
            minmax(130px, 0.8fr)
            minmax(130px, 0.8fr)
            minmax(170px, 1fr) !important;
    }

    .sc-footer__benefits {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* Tablet cart position fix */
@media (min-width: 721px) and (max-width: 1180px) {
    .sc-mainbar__inner {
        position: relative !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        grid-template-areas:
            "logo logo"
            "catalog brands" !important;
    }

    .sc-mainbar__inner .sc-logo {
        grid-area: logo !important;
        padding-right: 64px !important;
    }

    .sc-mainbar__inner .sc-cart-button,
    .sc-mainbar__inner a[href*="/korzina"] {
        position: absolute !important;
        top: 18px !important;
        right: 0 !important;
        z-index: 10 !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;

        margin: 0 !important;
        grid-area: unset !important;
        justify-self: auto !important;
        align-self: auto !important;
    }

    .sc-mainbar__inner .sc-catalog-button {
        grid-area: catalog !important;
    }

    .sc-mainbar__inner .sc-mobile-brands-button {
        grid-area: brands !important;
    }
}

/* Mobile canonical header/footer layout */
@media (max-width: 720px) {
    html,
    body,
    .aw-page {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .aw-page > .sc-header,
    .aw-page > .sc-footer {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        transform: none !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .sc-topbar,
    .sc-mainbar,
    .sc-footer__surface,
    .sc-footer__bottom-row {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .sc-topbar,
    .sc-mainbar {
        background: #ffffff !important;
    }

    .sc-topbar__inner,
    .sc-mainbar__inner,
    .sc-footer .sc-shell {
        width: min(100% - 28px, var(--aw-container, 1560px)) !important;
        max-width: var(--aw-container, 1560px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    .sc-topbar__inner {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 14px !important;
    }

    .sc-topbar__left,
    .sc-topbar__right {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px 14px !important;
        min-width: 0 !important;
    }

    .sc-mainbar__inner {
        position: relative !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        grid-template-areas:
            "logo logo"
            "catalog brands" !important;
        gap: 12px 10px !important;
        align-items: center !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .sc-logo {
        grid-area: logo !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding-right: 58px !important;
    }

    .sc-logo img {
        width: 156px !important;
        max-width: 156px !important;
        height: auto !important;
    }

    .sc-logo__slogan {
        display: block !important;
        max-width: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }

    .sc-header-cart,
    .sc-mainbar__inner a[href*="/korzina"] {
        position: absolute !important;
        top: 14px !important;
        right: 0 !important;
        z-index: 10 !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;

        margin: 0 !important;
        grid-area: unset !important;
        justify-self: auto !important;
        align-self: auto !important;
    }

    .sc-catalog-button {
        grid-area: catalog !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 48px !important;
        justify-content: center !important;
    }

    .sc-mobile-brands-button {
        grid-area: brands !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 48px !important;
        padding: 10px 12px !important;
        border: 1px solid var(--aw-border, #d8dee3) !important;
        border-radius: 14px !important;
        background: #fff !important;
        color: var(--aw-ink, #111827) !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .sc-search,
    .sc-nav,
    .sc-request-button {
        display: none !important;
    }

    .sc-footer__surface {
        background: linear-gradient(110deg, #ffffff 0%, #ffffff 68%, #fff0e8 100%) !important;
    }

    .sc-footer__top {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        align-items: start !important;
    }

    .sc-footer-logo,
    .sc-footer .sc-footer-logo {
        width: 220px !important;
        max-width: 220px !important;
    }

    .sc-footer-logo__image,
    .sc-footer-logo img,
    .sc-footer .sc-footer-logo img {
        width: 220px !important;
        max-width: 220px !important;
        height: auto !important;
    }

    .sc-footer__brand,
    .sc-footer__col,
    .sc-footer__contacts,
    .sc-footer__benefit {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .sc-footer__contacts {
        border-left: 0 !important;
        padding-left: 0 !important;
    }

    .sc-footer__benefits {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .sc-footer__bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .sc-footer__bottom-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px 16px !important;
    }
}

@media (max-width: 360px) {
    .sc-logo img {
        width: 145px !important;
        max-width: 145px !important;
    }

    .sc-catalog-button,
    .sc-mobile-brands-button {
        font-size: 14px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Product description auto-linked SKU references */
.aw-content .aw-description-sku-link {
    color: #f76628;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(247, 102, 40, 0.35);
    transition: color 0.16s ease, border-color 0.16s ease;
}

.aw-content .aw-description-sku-link:hover,
.aw-content .aw-description-sku-link:focus-visible {
    color: #d94f18;
    border-bottom-color: currentColor;
}
