.aw-listing-page {
    max-width: var(--aw-container);
    margin: 0 auto;
    padding: 24px;
}

.aw-listing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.aw-listing-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.aw-listing-hero p {
    max-width: 720px;
    margin: 0;
    color: #444444;
    line-height: 1.6;
}

.aw-listing-hero img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 1px solid var(--aw-border);
    border-radius: 18px;
    background: #fafafa;
}

.aw-listing-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--aw-orange);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aw-hero-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--aw-orange);
    font-weight: 800;
    text-decoration: none;
}

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

.aw-section-head h2 {
    margin: 0;
}

.aw-section-head span {
    color: var(--aw-muted);
    font-weight: 700;
}

.aw-category-grid,
.aw-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.aw-category-card,
.aw-brand-list-card {
    display: grid;
    gap: 10px;
    min-height: 130px;
    padding: 18px;
    color: var(--aw-black);
    text-decoration: none;
    background: #fafafa;
    border: 1px solid var(--aw-border);
    border-radius: 16px;
}

.aw-brand-list-card {
    grid-template-rows: 82px auto auto;
    align-items: start;
    background: #ffffff;
}

.aw-category-card:hover,
.aw-brand-list-card:hover {
    border-color: var(--aw-orange);
}

.aw-category-card img,
.aw-brand-list-card img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.aw-brand-list-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 82px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 12px;
}

.aw-brand-list-card__logo img {
    width: auto;
    max-width: 132px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.aw-brand-list-card__logo strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: var(--aw-orange);
    background: rgba(242, 106, 46, 0.08);
    font-family: var(--aw-font-heading);
    font-size: 24px;
    font-weight: 900;
}

.aw-category-card span,
.aw-brand-list-card span {
    font-weight: 800;
}

.aw-category-card small,
.aw-brand-list-card small {
    color: var(--aw-muted);
}

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

.aw-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: 18px;
}

.aw-product-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 18px;
    color: var(--aw-muted);
    text-decoration: none;
    background: #fafafa;
    border-bottom: 1px solid var(--aw-border);
}

.aw-product-card-image img {
    display: block;
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.aw-product-card-placeholder-image {
    width: min(170px, 82%);
    opacity: 0.9;
}

.aw-product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.aw-product-card-brand {
    margin-bottom: 8px;
    color: var(--aw-orange);
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
}

.aw-product-card h3 {
    margin: 0 0 14px;
    font-size: 19px;
    line-height: 1.25;
}

.aw-product-card h3 a {
    color: var(--aw-black);
    text-decoration: none;
}

.aw-product-card h3 a:hover {
    color: var(--aw-orange);
}

.aw-product-card dl {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
}

.aw-product-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--aw-border);
}

.aw-product-card dt {
    color: var(--aw-muted);
    font-size: 13px;
}

.aw-product-card dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
    overflow-wrap: anywhere;
}

.aw-product-card-bottom {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.aw-product-card-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
    min-width: 0;
}

.aw-product-card-price {
    min-width: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.aw-product-card-sku-group {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.aw-product-card-sku {
    min-width: 0;
    overflow: hidden;
    color: var(--aw-muted);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aw-product-card-sku-copy {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    color: var(--aw-muted);
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: 7px;
    cursor: pointer;
}

.aw-product-card-sku-copy__done {
    display: none;
}

.aw-product-card-sku-copy.is-copied .aw-product-card-sku-copy__icon {
    display: none;
}

.aw-product-card-sku-copy.is-copied .aw-product-card-sku-copy__done {
    display: inline;
}

.aw-product-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.aw-product-card-link,
.aw-product-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 40px;
    padding: 0 14px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.aw-product-card-link {
    color: var(--aw-black);
    background: #ffffff;
    border: 1px solid var(--aw-border);
}

.aw-product-card-button {
    color: #ffffff;
    font-family: inherit;
    background: var(--aw-orange);
    border: 1px solid var(--aw-orange);
    cursor: pointer;
}

.aw-pagination {
    margin-top: 22px;
}

.aw-pagination nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.aw-seo-text {
    color: #333333;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .aw-category-grid,
    .aw-brand-grid,
    .aw-product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aw-listing-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .aw-category-grid,
    .aw-brand-grid,
    .aw-product-list-grid {
        grid-template-columns: 1fr;
    }

    .aw-listing-hero {
        padding: 24px;
    }

    .aw-product-card-price-row {
        grid-template-columns: 1fr;
    }
}

.aw-listing-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.aw-listing-sidebar,
.aw-listing-content {
    min-width: 0;
}

.aw-filter-panel {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: 22px;
}

.aw-filter-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--aw-border);
}

.aw-filter-panel__title {
    margin: 4px 0 0;
    font-size: 22px;
    line-height: 1.15;
}

.aw-filter-panel__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    background: var(--aw-orange);
    border-radius: 999px;
}

.aw-filter-panel__body {
    display: grid;
    gap: 18px;
    padding: 18px 20px;
}

.aw-filter-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.aw-filter-group__title {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0 0 10px;
    font-weight: 800;
    font-size: 15px;
}

.aw-filter-group__unit {
    color: var(--aw-muted);
    font-weight: 600;
    font-size: 13px;
}

.aw-filter-group__options {
    display: grid;
    gap: 8px;
}

.aw-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid var(--aw-border);
    border-radius: 12px;
    cursor: pointer;
}

.aw-filter-option:hover {
    background: #fff7f2;
    border-color: var(--aw-orange);
}

.aw-filter-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--aw-orange);
}

.aw-filter-panel__actions {
    display: flex;
    gap: 10px;
    padding: 16px 20px 20px;
    border-top: 1px solid var(--aw-border);
}

.aw-filter-panel__submit,
.aw-filter-panel__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
}

.aw-filter-panel__submit {
    color: #ffffff;
    background: var(--aw-orange);
    border: 0;
    cursor: pointer;
}

.aw-filter-panel__reset {
    color: var(--aw-black);
    background: #ffffff;
    border: 1px solid var(--aw-border);
}

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

@media (max-width: 980px) {
    .aw-listing-layout {
        grid-template-columns: 1fr;
    }

    .aw-listing-sidebar {
        order: -1;
    }
}

@media (max-width: 640px) {
    .aw-filter-panel__head,
    .aw-filter-panel__body,
    .aw-filter-panel__actions {
        padding-right: 16px;
        padding-left: 16px;
    }

    .aw-filter-panel__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Stage 9.2.1 — catalog index matched to Svarcore reference */
.sc-catalog-page {
    padding: 28px 0 0;
    background: var(--aw-page-bg);
}

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

.sc-catalog-breadcrumbs {
    margin-bottom: 22px;
}

.sc-catalog-head {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(560px, 1fr);
    gap: 34px;
    align-items: stretch;
    margin-bottom: 28px;
}

.sc-catalog-head__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 245px;
}

.sc-catalog-head h1 {
    margin: 0;
    font-family: var(--aw-font-heading);
    font-size: clamp(56px, 5.4vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.sc-catalog-head p {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--aw-steel);
    font-size: 18px;
    line-height: 1.65;
}

.sc-catalog-head__banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-content: center;
    min-height: 245px;
    overflow: hidden;
    padding: 34px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(16, 18, 20, 0.95), rgba(16, 18, 20, 0.72) 48%, rgba(16, 18, 20, 0.34) 70%, rgba(16, 18, 20, 0.86)),
        radial-gradient(circle at 72% 58%, rgba(78, 165, 255, 0.82), rgba(78, 165, 255, 0) 8%),
        radial-gradient(circle at 72% 58%, rgba(242, 106, 46, 0.7), rgba(242, 106, 46, 0) 5%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 52px),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 44px),
        linear-gradient(135deg, #111417 0%, #303b42 44%, #7d8b93 100%);
    border-radius: 16px;
}

.sc-catalog-head__banner > div,
.sc-catalog-head__banner dl {
    position: relative;
    z-index: 3;
}

.sc-catalog-head__banner strong {
    display: block;
    max-width: 360px;
    font-family: var(--aw-font-heading);
    font-size: 34px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.sc-catalog-head__banner dl {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 42px;
    align-self: end;
    margin: 36px 0 0;
}

.sc-catalog-head__banner dt {
    font-family: var(--aw-font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.sc-catalog-head__banner dd {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.35;
}

.sc-catalog-head__spark {
    display: none;
}

.sc-catalog-head__robot {
    position: absolute;
    right: 34px;
    top: 0;
    width: 260px;
    height: 245px;
    background:
        linear-gradient(180deg, #1f2428, #6f7a81 48%, #1b2024);
    clip-path: polygon(48% 0, 100% 0, 100% 18%, 78% 18%, 72% 34%, 58% 49%, 61% 65%, 44% 70%, 40% 48%, 30% 32%, 36% 18%, 48% 18%);
    opacity: 0.74;
    filter: drop-shadow(0 22px 26px rgba(17, 20, 23, 0.3));
}

.sc-catalog-main-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.sc-catalog-main-card {
    display: grid;
    grid-template-rows: minmax(138px, 1fr) auto;
    min-height: 238px;
    overflow: hidden;
    color: var(--aw-black);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(17, 20, 23, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sc-catalog-main-card:hover {
    border-color: var(--aw-orange);
    box-shadow: 0 18px 34px rgba(17, 20, 23, 0.08);
    transform: translateY(-2px);
}

.sc-catalog-main-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px 4px;
    background:
        radial-gradient(circle at 54% 45%, rgba(31, 36, 40, 0.06), rgba(31, 36, 40, 0) 28%),
        #ffffff;
}

.sc-catalog-main-card__image img {
    display: block;
    max-width: 92%;
    max-height: 142px;
    object-fit: contain;
}

.sc-catalog-main-card__image span {
    width: 116px;
    height: 104px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, transparent 0 44%, var(--aw-orange) 44% 52%, transparent 52% 100%),
        rgba(242, 106, 46, 0.08);
}

.sc-catalog-main-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px 16px;
}

.sc-catalog-main-card strong {
    max-width: 180px;
    font-family: var(--aw-font-heading);
    font-size: 18px;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.sc-catalog-main-card em {
    color: var(--aw-orange);
    font-style: normal;
    font-size: 24px;
    line-height: 1;
}

.sc-catalog-strip {
    margin-bottom: 28px;
}

.sc-catalog-strip__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.sc-catalog-strip__head h2 {
    margin: 0;
    font-family: var(--aw-font-heading);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.sc-catalog-strip__head a,
.sc-catalog-strip__head span {
    color: var(--aw-steel);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.sc-catalog-strip__head a span {
    color: var(--aw-orange);
    font-size: 22px;
    vertical-align: -2px;
}

.sc-catalog-pills {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 12px;
}

.sc-catalog-pill {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 70px;
    padding: 10px 12px;
    color: var(--aw-black);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 10px;
}

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

.sc-catalog-pill__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 9px;
    background: #f8f8f8;
}

.sc-catalog-pill__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sc-catalog-pill__media i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, transparent 0 40%, var(--aw-orange) 40% 55%, transparent 55% 100%),
        rgba(242, 106, 46, 0.08);
}

.sc-catalog-pill strong {
    font-size: 13px;
    line-height: 1.2;
}

.sc-catalog-brand-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.sc-catalog-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 12px 14px;
    color: var(--aw-dark);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 10px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sc-catalog-brand-card:hover {
    border-color: var(--aw-orange);
    box-shadow: 0 14px 28px rgba(17, 20, 23, 0.06);
    transform: translateY(-1px);
}

.sc-catalog-brand-card img {
    display: block;
    max-width: 120px;
    max-height: 46px;
    object-fit: contain;
}

.sc-catalog-brand-card span {
    font-family: var(--aw-font-heading);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.sc-catalog-help {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.8fr) minmax(420px, 0.92fr);
    gap: 28px;
    align-items: center;
    min-height: 205px;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 28px 34px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: var(--aw-shadow-soft);
}

.sc-catalog-help__text {
    position: relative;
    z-index: 2;
}

.sc-catalog-help h2 {
    margin: 0;
    font-family: var(--aw-font-heading);
    font-size: clamp(30px, 2.5vw, 44px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.sc-catalog-help p {
    max-width: 380px;
    margin: 10px 0 0;
    color: var(--aw-steel);
    line-height: 1.55;
}

.sc-catalog-help__text a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 28px;
    color: var(--aw-black);
    font-weight: 900;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: 8px;
}

.sc-catalog-help__list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sc-catalog-help__list li {
    position: relative;
    padding-left: 26px;
    color: var(--aw-dark);
    line-height: 1.45;
}

.sc-catalog-help__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--aw-orange);
    font-weight: 900;
}

.sc-catalog-help__visual {
    position: absolute;
    inset: 0 0 0 auto;
    width: 42%;
    background:
        linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.72) 20%, rgba(255,255,255,0) 46%),
        radial-gradient(circle at 66% 62%, rgba(78, 165, 255, 0.88), rgba(78, 165, 255, 0) 10%),
        radial-gradient(circle at 66% 62%, rgba(242,106,46,0.72), rgba(242,106,46,0) 5%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 52px),
        repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 44px),
        linear-gradient(135deg, #222a30, #8a98a0);
}

.sc-catalog-help__visual span {
    position: absolute;
    right: 34px;
    bottom: 22px;
    width: 210px;
    height: 130px;
    border-radius: 96px 96px 18px 18px;
    background:
        radial-gradient(circle, rgba(255,255,255,0.1) 0 2px, transparent 3px) 0 0 / 20px 20px,
        linear-gradient(180deg, #303941, #111417);
}

.aw-hero-card__media--brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 32px;
    background: #ffffff;
}

.aw-hero-card__media--brand-logo img {
    width: auto;
    max-width: 320px;
    height: auto;
    max-height: 130px;
    object-fit: contain;
}


@media (max-width: 1480px) {
    .sc-catalog-main-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1320px) {
    .sc-catalog-head {
        grid-template-columns: 1fr;
    }

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

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

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

    .sc-catalog-help__visual {
        display: none;
    }
}

@media (max-width: 860px) {
    .sc-catalog-page {
        padding-top: 18px;
    }

    .sc-catalog-shell {
        width: min(100% - 24px, var(--aw-container));
    }

    .sc-catalog-head__banner {
        display: none;
    }

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

    .sc-catalog-main-card {
        grid-template-rows: 132px auto;
        min-height: 220px;
    }

    .sc-catalog-main-card strong {
        font-size: 17px;
    }

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

    .sc-catalog-help {
        padding: 14px 16px 16px;
    }
}

@media (max-width: 560px) {
    .sc-catalog-main-grid,
    .sc-catalog-pills,
    .sc-catalog-brand-grid {
        grid-template-columns: 1fr;
    }
}

/* Stage 9.3 — category page */
.sc-category-page {
    padding: 26px 0 0;
    background: var(--aw-page-bg, var(--aw-bg));
}

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

.sc-category-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--aw-steel);
    font-size: 13px;
    font-weight: 600;
}

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

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

.sc-category-hero {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    height: 320px;
    min-height: 320px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    box-shadow: 0 16px 34px rgba(17, 20, 23, 0.04);
}

.sc-category-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    height: 100%;
    padding: 30px 34px 34px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.98) 72%, rgba(255,255,255,0.72) 100%);
}

.sc-category-hero__kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sc-category-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--aw-font-heading);
    font-size: clamp(38px, 4.1vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.sc-category-hero p {
    display: -webkit-box;
    max-width: 780px;
    margin: 18px 0 0;
    overflow: hidden;
    color: var(--aw-steel);
    font-size: 17px;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.sc-category-hero__visual {
    position: relative;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #dfe5e8 0%, #707f87 42%, #20262b 100%);
}

.sc-category-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--sc-category-hero-image, none);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.sc-category-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 17%, rgba(255,255,255,0.28) 34%, rgba(255,255,255,0) 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(17,20,23,0.14));
}

.sc-category-hero__spark {
    display: none;
}

.sc-category-subcategories {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    padding-top: 0;
    transform: none;
}

.sc-category-subcategory {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr auto;
    min-height: 88px;
    overflow: hidden;
    padding: 16px 14px 14px;
    color: var(--aw-black);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(17, 20, 23, 0.035);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sc-category-subcategory:hover {
    border-color: var(--aw-orange);
    box-shadow: 0 16px 28px rgba(17, 20, 23, 0.07);
    transform: translateY(-1px);
}

.sc-category-subcategory span {
    position: relative;
    z-index: 2;
    max-width: 146px;
    font-family: var(--aw-font-heading);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.sc-category-subcategory em {
    position: relative;
    z-index: 3;
    align-self: end;
    color: var(--aw-orange);
    font-style: normal;
    font-size: 20px;
    line-height: 1;
}

.sc-category-subcategory img {
    position: absolute;
    right: 10px;
    bottom: 8px;
    max-width: 72px;
    max-height: 62px;
    object-fit: contain;
    opacity: 0.92;
}

.sc-category-subcategory i {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 46px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, transparent 0 42%, rgba(242,106,46,0.8) 42% 51%, transparent 51% 100%),
        rgba(242,106,46,0.09);
}

.sc-category-subcategories.is-scrollable {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 106, 46, 0.72) rgba(17, 20, 23, 0.08);
}

.sc-category-subcategories.is-scrollable::-webkit-scrollbar {
    height: 8px;
}

.sc-category-subcategories.is-scrollable::-webkit-scrollbar-track {
    background: rgba(17, 20, 23, 0.06);
    border-radius: 999px;
}

.sc-category-subcategories.is-scrollable::-webkit-scrollbar-thumb {
    background: rgba(242, 106, 46, 0.72);
    border-radius: 999px;
}

.sc-category-subcategories.is-scrollable .sc-category-subcategory {
    flex: 0 0 calc((100% - 70px) / 6);
    min-width: 210px;
    scroll-snap-align: start;
}

.sc-category-layout {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.sc-category-sidebar,
.sc-category-products {
    min-width: 0;
}

.sc-category-filter {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(17, 20, 23, 0.04);
}

.sc-category-filter__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--aw-border-soft);
}

.sc-category-filter__head strong {
    font-family: var(--aw-font-heading);
    font-size: 18px;
    line-height: 1;
}

.sc-category-filter__head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: var(--aw-orange);
    border-radius: 999px;
}

.sc-category-filter__group {
    margin: 0;
    padding: 18px;
    border: 0;
    border-bottom: 1px solid var(--aw-border-soft);
}

.sc-category-filter__group legend {
    display: flex;
    align-items: baseline;
    gap: 6px;
    width: 100%;
    margin: 0 0 12px;
    padding: 0;
    color: var(--aw-black);
    font-size: 15px;
    font-weight: 800;
}

.sc-category-filter__group legend span {
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 700;
}

.sc-category-filter__options {
    display: grid;
    gap: 9px;
}

.sc-category-filter__options.is-scrollable {
    max-height: 236px;
    margin-right: -6px;
    padding-right: 6px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 106, 46, 0.62) rgba(17, 20, 23, 0.08);
}

.sc-category-filter__options.is-scrollable::-webkit-scrollbar {
    width: 6px;
}

.sc-category-filter__options.is-scrollable::-webkit-scrollbar-track {
    background: rgba(17, 20, 23, 0.08);
    border-radius: 999px;
}

.sc-category-filter__options.is-scrollable::-webkit-scrollbar-thumb {
    background: rgba(242, 106, 46, 0.62);
    border-radius: 999px;
}

.sc-category-filter__option {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    min-height: 25px;
    color: var(--aw-dark);
    font-size: 14px;
    line-height: 1.24;
    cursor: pointer;
}

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

.sc-category-filter__option span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-category-filter__option small {
    color: var(--aw-steel);
    font-size: 12px;
}

.sc-category-filter__slider {
    position: relative;
    height: 30px;
    margin: 6px 8px 14px;
    --range-from: 0%;
    --range-to: 100%;
}

.sc-category-filter__slider-track,
.sc-category-filter__slider-fill {
    position: absolute;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 999px;
    pointer-events: none;
}

.sc-category-filter__slider-track {
    left: 0;
    right: 0;
    background: #d9dee5;
}

.sc-category-filter__slider-fill {
    left: var(--range-from);
    right: calc(100% - var(--range-to));
    background: var(--aw-orange);
}

.sc-category-filter__slider-handle {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 3px solid var(--aw-orange);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(242, 106, 46, 0.24);
    transform: translate(-50%, -50%);
    cursor: grab;
    touch-action: none;
}

.sc-category-filter__slider-handle:hover,
.sc-category-filter__slider-handle:focus-visible {
    box-shadow: 0 8px 18px rgba(242, 106, 46, 0.32);
}

.sc-category-filter__slider-handle.is-dragging {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.05);
}

.sc-category-filter__range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sc-category-filter__range label {
    display: grid;
    gap: 5px;
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 800;
}

.sc-category-filter__range input {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    color: var(--aw-black);
    font: inherit;
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: 10px;
    outline: none;
}

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

.sc-category-filter__actions {
    display: grid;
    gap: 10px;
    padding: 16px 18px 18px;
}

.sc-category-filter__actions button,
.sc-category-filter__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.sc-category-filter__actions button {
    color: #ffffff;
    background: var(--aw-orange);
    border: 1px solid var(--aw-orange);
    cursor: pointer;
}

.sc-category-filter__actions button:hover {
    background: var(--aw-orange-dark);
    border-color: var(--aw-orange-dark);
}

.sc-category-filter__actions a {
    color: var(--aw-black);
    background: #ffffff;
    border: 1px solid var(--aw-border);
}

.sc-category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
    margin-bottom: 18px;
    padding: 11px 16px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(17, 20, 23, 0.04);
}

.sc-category-toolbar__count {
    color: var(--aw-steel);
    font-size: 14px;
    font-weight: 700;
}

.sc-category-toolbar__count strong {
    color: var(--aw-black);
}

.sc-category-sort label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--aw-steel);
    font-size: 14px;
    font-weight: 700;
}

.sc-category-sort select {
    min-width: 204px;
    height: 38px;
    padding: 0 36px 0 12px;
    color: var(--aw-black);
    font: inherit;
    font-size: 14px;
    background: #f8fafb;
    border: 1px solid var(--aw-border);
    border-radius: 8px;
    outline: none;
}

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

.sc-category-page .aw-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(17, 20, 23, 0.04);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sc-category-page .aw-product-card:hover {
    border-color: rgba(242, 106, 46, 0.72);
    box-shadow: 0 18px 34px rgba(17, 20, 23, 0.08);
    transform: translateY(-2px);
}

.sc-category-page .aw-product-card__topline {
    position: absolute;
    z-index: 4;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    pointer-events: none;
}

.sc-category-page .aw-product-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: calc(100% - 42px);
    margin-right: auto;
}

.sc-category-page .aw-product-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
}

.sc-category-page .aw-product-card__badge.is-label-default {
    color: #475569;
    background: #f1f5f9;
}

.sc-category-page .aw-product-card__badge.is-label-new {
    color: #0369a1;
    background: #e0f2fe;
}

.sc-category-page .aw-product-card__badge.is-label-stock {
    color: #18863b;
    background: #e9f8ee;
}

.sc-category-page .aw-product-card__badge.is-label-order {
    color: #bf5719;
    background: #fff1e8;
}

.sc-category-page .aw-product-card__badge.is-label-request {
    color: #5b6472;
    background: #f3f4f6;
}

.sc-category-page .aw-product-card__badge.is-label-discount {
    color: #b42318;
    background: #fee4e2;
}

.sc-category-page .aw-product-card__badge.is-label-hit {
    color: #7c2d12;
    background: #ffedd5;
}

.sc-category-page .aw-product-card__badge.is-label-pulse {
    color: #6d28d9;
    background: #ede9fe;
}

.sc-category-page .aw-product-card__badge.is-label-cert {
    color: #166534;
    background: #dcfce7;
}

.sc-category-page .aw-product-card__favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: var(--aw-steel);
    font-size: 23px;
    line-height: 1;
    background: transparent;
    border: 0;
    cursor: pointer;
    pointer-events: auto;
}

.sc-category-page .aw-product-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 194px;
    min-height: 194px;
    padding: 34px 18px 14px;
    background: #ffffff;
    border-bottom: 0;
}

.sc-category-page .aw-product-card-image img {
    width: 100%;
    height: 100%;
    max-height: 146px;
    object-fit: contain;
}

.sc-category-page .aw-product-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 0 18px 18px;
}

.sc-category-page .aw-product-card-brand {
    display: block;
    min-height: 15px;
    margin-bottom: 6px;
    overflow: hidden;
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.sc-category-page .aw-product-card h3 {
    display: -webkit-box;
    min-height: 62px;
    max-height: 62px;
    margin: 0 0 12px;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.22;
    letter-spacing: -0.025em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sc-category-page .aw-product-card dl,
.sc-category-page .aw-product-card-specs {
    display: grid;
    grid-template-rows: repeat(3, 18px);
    gap: 7px;
    min-height: 68px;
    max-height: 68px;
    margin-bottom: 15px;
    overflow: hidden;
}

.sc-category-page .aw-product-card dl div {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    min-width: 0;
    gap: 8px;
    padding-bottom: 0;
    overflow: hidden;
    color: var(--aw-steel);
    font-size: 13px;
    line-height: 18px;
    border-bottom: 0;
}

.sc-category-page .aw-product-card dt {
    min-width: 0;
    overflow: hidden;
    color: var(--aw-steel);
    font-size: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-category-page .aw-product-card dt::after {
    content: ':';
}

.sc-category-page .aw-product-card dd {
    min-width: 0;
    overflow: hidden;
    color: var(--aw-dark);
    font-weight: 700;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-category-page .aw-product-card-bottom {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.sc-category-page .aw-product-card-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
    min-width: 0;
}

.sc-category-page .aw-product-card-price {
    min-width: 0;
    font-family: var(--aw-font-heading);
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.sc-category-page .aw-product-card-sku-group {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    min-width: 0;
    max-width: 146px;
}

.sc-category-page .aw-product-card-sku {
    min-width: 0;
    max-width: 112px;
    overflow: hidden;
    color: var(--aw-steel);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sc-category-page .aw-product-card-sku-copy {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    color: var(--aw-steel);
    font-size: 14px;
    line-height: 1;
    background: #f8fafb;
    border: 1px solid var(--aw-border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.sc-category-page .aw-product-card-sku-copy:hover {
    color: var(--aw-orange);
    background: #fff4ed;
    border-color: rgba(242, 106, 46, 0.42);
    transform: translateY(-1px);
}

.sc-category-page .aw-product-card-sku-copy:focus-visible {
    outline: 2px solid rgba(242, 106, 46, 0.42);
    outline-offset: 2px;
}

.sc-category-page .aw-product-card-sku-copy__done {
    display: none;
    font-size: 13px;
    font-weight: 900;
}

.sc-category-page .aw-product-card-sku-copy.is-copied {
    color: #18863b;
    background: #e9f8ee;
    border-color: rgba(24, 134, 59, 0.28);
}

.sc-category-page .aw-product-card-sku-copy.is-copied .aw-product-card-sku-copy__icon {
    display: none;
}

.sc-category-page .aw-product-card-sku-copy.is-copied .aw-product-card-sku-copy__done {
    display: inline;
}

.sc-category-page .aw-product-card-sku-copy.is-copy-error {
    color: #bf5719;
    background: #fff1e8;
    border-color: rgba(191, 87, 25, 0.28);
}

.sc-category-page .aw-product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sc-category-page .aw-product-card-link,
.sc-category-page .aw-product-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border-radius: 8px;
}

.sc-category-page .aw-product-card-link {
    color: var(--aw-black);
    background: #ffffff;
    border: 1px solid var(--aw-border);
}

.sc-category-page .aw-product-card-link:hover {
    border-color: var(--aw-orange);
}

.sc-category-page .aw-product-card-button {
    color: #ffffff;
    font-family: inherit;
    background: var(--aw-orange);
    border: 1px solid var(--aw-orange);
    appearance: none;
    cursor: pointer;
}

.sc-category-page .aw-product-card-button:hover {
    background: var(--aw-orange-dark);
    border-color: var(--aw-orange-dark);
}

.sc-category-page .aw-product-card-button:focus-visible {
    outline: 2px solid rgba(242, 106, 46, 0.42);
    outline-offset: 2px;
}

.sc-category-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
}

.sc-category-pagination__pages {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(17, 20, 23, 0.04);
}

.sc-category-pagination a,
.sc-category-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    color: var(--aw-graphite);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border-radius: 10px;
}

.sc-category-pagination a:hover {
    color: var(--aw-orange);
    background: rgba(255, 76, 31, 0.08);
}

.sc-category-pagination .is-active {
    color: #ffffff;
    background: var(--aw-orange);
}

.sc-category-pagination__arrow {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    font-size: 30px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    box-shadow: 0 10px 24px rgba(17, 20, 23, 0.04);
}

.sc-category-pagination__arrow.is-disabled {
    color: #c7cdd3;
    cursor: default;
    background: #f4f6f8;
    box-shadow: none;
}

.sc-category-pagination__dots {
    min-width: 18px;
    padding: 0 2px;
    color: var(--aw-steel);
}

.sc-category-empty {
    padding: 38px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(17, 20, 23, 0.04);
}

.sc-category-empty h2 {
    margin: 0 0 10px;
    font-family: var(--aw-font-heading);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.sc-category-empty p {
    max-width: 560px;
    margin: 0 0 18px;
    color: var(--aw-steel);
}

.sc-category-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    background: var(--aw-orange);
    border-radius: 10px;
}

.sc-category-help {
    display: grid;
    grid-template-columns: auto minmax(0, 1.2fr) minmax(260px, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin: 28px 0 24px;
    padding: 20px 28px;
    background: #ffffff;
    border: 1px solid var(--aw-border-soft);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(17, 20, 23, 0.04);
}

.sc-category-help__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--aw-orange);
    font-size: 26px;
    line-height: 1;
    background: #fff3ec;
    border-radius: 50%;
}

.sc-category-help h2 {
    margin: 0 0 4px;
    font-family: var(--aw-font-heading);
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.035em;
}

.sc-category-help p {
    margin: 0;
    color: var(--aw-steel);
    font-size: 14px;
    line-height: 1.45;
}

.sc-category-help ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: var(--aw-dark);
    font-size: 13px;
    font-weight: 800;
    list-style: none;
}

.sc-category-help li::before {
    content: '•';
    margin-right: 8px;
    color: var(--aw-orange);
}

.sc-category-help a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    background: var(--aw-orange);
    border-radius: 10px;
}

.sc-category-help a:hover {
    background: var(--aw-orange-dark);
}

.sc-category-seo {
    margin: 0 0 30px;
    color: var(--aw-dark);
}

.sc-category-seo h2 {
    margin: 0 0 10px;
    font-family: var(--aw-font-heading);
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.sc-category-seo div {
    color: #3f474c;
    font-size: 15px;
    line-height: 1.68;
}

@media (max-width: 1480px) {
    .sc-category-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .sc-category-subcategories.is-scrollable .sc-category-subcategory {
        flex-basis: calc((100% - 42px) / 4);
    }
}

@media (max-width: 1180px) {
    .sc-category-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .sc-category-hero__visual {
        min-height: 240px;
    }

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

    .sc-category-help {
        grid-template-columns: auto 1fr;
    }

    .sc-category-help ul,
    .sc-category-help a {
        grid-column: 2;
    }
}

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

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

    .sc-category-subcategories.is-scrollable .sc-category-subcategory {
        flex-basis: calc((100% - 14px) / 2);
    }

    .sc-category-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .sc-category-sort label {
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
    }

    .sc-category-sort select {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .sc-category-page {
        padding-top: 18px;
    }

    .sc-category-hero__content {
        padding: 24px 20px 26px;
    }

    .sc-category-hero h1 {
        font-size: clamp(34px, 12vw, 48px);
    }

    .sc-category-hero p {
        font-size: 15px;
    }

    .sc-category-hero__visual {
        display: none;
    }

    .sc-category-subcategories,
    .sc-category-product-grid,
    .sc-category-help {
        grid-template-columns: 1fr;
    }

    .sc-category-subcategories.is-scrollable .sc-category-subcategory {
        flex-basis: 78%;
        min-width: 248px;
    }

    .sc-category-help {
        align-items: start;
        padding: 20px;
    }

    .sc-category-help ul,
    .sc-category-help a {
        grid-column: auto;
    }
}


@media (max-width: 640px) {
    .sc-category-pagination {
        gap: 8px;
    }

    .sc-category-pagination__pages {
        gap: 4px;
        padding: 5px;
    }

    .sc-category-pagination a,
    .sc-category-pagination span {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        font-size: 12px;
    }

    .sc-category-pagination__arrow {
        width: 38px;
        min-width: 38px;
        height: 38px;
        font-size: 26px;
    }
}

/* Stage 9.3.6 — contextual category filters */
.sc-category-filter[data-category-filter] .sc-category-filter__actions:has(noscript:only-child) {
    padding-top: 0;
}

.sc-category-filter__group--range {
    padding-bottom: 20px;
}

.sc-category-filter__slider {
    position: relative;
    height: 28px;
    margin: 4px 0 12px;
}

.sc-category-filter__slider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(242, 106, 46, 0.36), var(--aw-orange));
    border-radius: 999px;
}

.sc-category-filter__slider input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
}

.sc-category-filter__slider input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 2px solid var(--aw-orange);
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(242, 106, 46, 0.26);
    cursor: pointer;
    pointer-events: auto;
}

.sc-category-filter__slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 2px solid var(--aw-orange);
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(242, 106, 46, 0.26);
    cursor: pointer;
    pointer-events: auto;
}

.sc-category-filter__slider input[type="range"]::-moz-range-track {
    background: transparent;
}

.sc-category-filter__range label {
    display: grid;
    gap: 5px;
    color: var(--aw-steel);
    font-size: 12px;
    font-weight: 700;
}

.sc-category-filter__range label input {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    color: var(--aw-black);
    font: inherit;
    font-size: 13px;
    background: #ffffff;
    border: 1px solid var(--aw-border);
    border-radius: 9px;
    outline: none;
}

.sc-category-filter__range label input:focus {
    border-color: var(--aw-orange);
    box-shadow: 0 0 0 3px rgba(242, 106, 46, 0.11);
}

.sc-category-filter__option:hover span,
.sc-category-filter__option input:checked + span {
    color: var(--aw-orange);
}

/* Stage 9.3.6.1 — range sliders and long filter value lists */
.sc-category-filter__options.is-scrollable {
    max-height: 236px;
    margin-right: -6px;
    padding-right: 6px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(242, 106, 46, 0.62) rgba(17, 20, 23, 0.08);
}

.sc-category-filter__options.is-scrollable::-webkit-scrollbar {
    width: 6px;
}

.sc-category-filter__options.is-scrollable::-webkit-scrollbar-track {
    background: rgba(17, 20, 23, 0.08);
    border-radius: 999px;
}

.sc-category-filter__options.is-scrollable::-webkit-scrollbar-thumb {
    background: rgba(242, 106, 46, 0.62);
    border-radius: 999px;
}

.sc-category-filter__slider {
    position: relative;
    height: 30px;
    margin: 6px 2px 14px;
    --range-from: 0%;
    --range-to: 100%;
}

.sc-category-filter__slider::before,
.sc-category-filter__slider::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 999px;
    pointer-events: none;
}

.sc-category-filter__slider::before {
    left: 0;
    right: 0;
    background: #d9dee5;
}

.sc-category-filter__slider::after {
    left: var(--range-from);
    right: calc(100% - var(--range-to));
    background: var(--aw-orange);
}

.sc-category-filter__slider input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 30px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    outline: none;
    pointer-events: none;
}

.sc-category-filter__slider input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.sc-category-filter__slider input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
}

.sc-category-filter__slider input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -7px;
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    border: 3px solid var(--aw-orange);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(242, 106, 46, 0.24);
    cursor: grab;
    pointer-events: auto;
}

.sc-category-filter__slider input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border: 3px solid var(--aw-orange);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(242, 106, 46, 0.24);
    cursor: grab;
    pointer-events: auto;
}

.sc-category-filter__slider input[type="range"]:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.05);
}

/* Catalog page image banners */
.sc-catalog-head__banner {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(7, 17, 31, .98) 0%,
            rgba(7, 17, 31, .94) 34%,
            rgba(7, 17, 31, .70) 58%,
            rgba(7, 17, 31, .18) 100%
        ),
        url('/images/pages/catalog-hero-banner.webp') center right / cover no-repeat !important;
}

.sc-catalog-head__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 58%, rgba(53, 158, 255, .36), transparent 12rem),
        linear-gradient(90deg, rgba(7, 17, 31, .22), transparent 70%);
    pointer-events: none;
}

.sc-catalog-head__banner > * {
    position: relative;
    z-index: 1;
}

.sc-catalog-head__robot {
    display: none !important;
}

.sc-catalog-help {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, .98) 34%,
            rgba(255, 255, 255, .86) 52%,
            rgba(255, 255, 255, .24) 76%,
            rgba(255, 255, 255, 0) 100%
        ),
        url('/images/pages/catalog-cta-banner.webp') center right / cover no-repeat !important;
}

.sc-catalog-help > * {
    position: relative;
    z-index: 1;
}

.sc-catalog-help__visual {
    display: none !important;
}\n\n
/* Catalog mobile strip head fit */
@media (max-width: 640px) {
    .sc-catalog-strip__head {
        align-items: flex-start;
        gap: 10px;
    }

    .sc-catalog-strip__head a {
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        line-height: 1.25;
    }
}
\n