:root {
    --novator-red: #9e2026;
    --novator-red-dark: #7f171d;
    --novator-black: #11151c;
    --novator-text: #1d2027;
    --novator-muted: #747982;
    --novator-line: #e8eaf0;
    --novator-soft: #f6f7f9;
    --novator-green: #16b05c;
}

.catalog-redesign,
.novator-detail {
    color: var(--novator-text);
}

.catalog-redesign * ,
.novator-detail * {
    box-sizing: border-box;
}

.catalog-redesign__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    align-items: center;
    gap: 28px;
    margin: 22px 0 30px;
}

.catalog-redesign__title {
    margin: 0;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.catalog-redesign__etn {
    min-height: 86px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--novator-line);
    background: #fff;
    text-decoration: none !important;
    color: var(--novator-text);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-redesign__etn:hover {
    border-color: rgba(158, 32, 38, .35);
    box-shadow: 0 14px 40px rgba(17, 21, 28, .08);
    transform: translateY(-1px);
}

.catalog-redesign__etn-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(158, 32, 38, .25);
    color: var(--novator-red);
    font-weight: 800;
    font-size: 24px;
}

.catalog-redesign__etn b,
.catalog-redesign__etn em,
.catalog-redesign__etn strong {
    display: block;
    font-style: normal;
}

.catalog-redesign__etn b {
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 6px;
}

.catalog-redesign__etn em {
    color: var(--novator-muted);
    font-size: 13px;
    line-height: 1.35;
}

.catalog-redesign__etn strong {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--novator-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.catalog-redesign__sections {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.catalog-redesign__section-card {
    min-height: 84px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--novator-line);
    background: #fff;
    color: var(--novator-text);
    text-decoration: none !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-redesign__section-card:hover {
    color: var(--novator-text);
    border-color: rgba(158, 32, 38, .32);
    box-shadow: 0 10px 32px rgba(17, 21, 28, .07);
    transform: translateY(-1px);
}

.catalog-redesign__section-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--novator-red);
    background: var(--novator-soft);
    overflow: hidden;
}

.catalog-redesign__section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog-redesign__section-placeholder {
    width: 24px;
    height: 24px;
    display: block;
    border: 2px solid currentColor;
    border-radius: 3px;
    position: relative;
}
.catalog-redesign__section-placeholder::before {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    top: 7px;
    border-top: 2px solid currentColor;
}

.catalog-redesign__section-info b,
.catalog-redesign__section-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-redesign__section-info b {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
}

.catalog-redesign__section-info em {
    margin-top: 5px;
    color: var(--novator-muted);
    font-size: 12px;
    font-style: normal;
}

.catalog-redesign__section-arrow {
    color: var(--novator-muted);
    font-size: 22px;
    line-height: 1;
}


.catalog-redesign--root {
    padding-top: 18px;
}

.catalog-redesign__head--root {
    margin-top: 26px;
}

.catalog-redesign-root__lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--novator-muted);
    font-size: 16px;
    line-height: 1.55;
}

.catalog-redesign__sections--root {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 34px;
}

.catalog-redesign__section-card--root {
    min-height: 126px;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    padding: 22px;
}

.catalog-redesign__section-card--root .catalog-redesign__section-icon {
    width: 58px;
    height: 58px;
}

.catalog-redesign__section-card--root .catalog-redesign__section-info b {
    white-space: normal;
    font-size: 17px;
    line-height: 1.22;
}

.catalog-redesign-root__advantages {
    margin-top: 34px;
}

.catalog-redesign__layout {
    align-items: flex-start;
}

.catalog-redesign .left-filter-wrap {
    position: sticky;
    top: 98px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--novator-line);
}

.catalog-redesign__filter-heading,
.left-filter__top {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 17px 18px;
    border-bottom: 1px solid var(--novator-line);
}

.catalog-redesign__filter-heading {
    display: none;
}

.catalog-redesign__filter-heading span,
.left-filter__title {
    margin: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-redesign__filter-close {
    width: 34px;
    height: 34px;
    border: 0;
    background: var(--novator-soft);
    color: var(--novator-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.catalog-redesign .left-filter {
    padding: 0;
    border: 0;
}

.catalog-redesign .left-filter__clear {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--novator-red);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.catalog-redesign .left-filter__el {
    margin: 0;
    padding: 0 18px;
    border-bottom: 1px solid var(--novator-line);
}

.catalog-redesign .left-filter__name {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: var(--novator-text);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-redesign .left-filter__toggle {
    display: none;
    padding: 0 0 16px;
}

.catalog-redesign .left-filter__toggle.active {
    display: block;
}

.catalog-redesign .custom-checkbox {
    margin-bottom: 10px !important;
}

.catalog-redesign .custom-checkbox-label {
    font-size: 13px;
    line-height: 1.35;
}

.catalog-redesign .form-control {
    min-height: 42px;
    border: 1px solid var(--novator-line);
    border-radius: 0;
    box-shadow: none;
}

.catalog-redesign__toolbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.catalog-redesign__filter-open {
    display: none;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--novator-line);
    background: #fff;
    color: var(--novator-text);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-redesign__found {
    color: var(--novator-muted);
    font-size: 14px;
}

.catalog-redesign__sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    white-space: nowrap;
}

.catalog-redesign__sort span {
    color: var(--novator-muted);
    font-size: 14px;
}

.catalog-redesign__sort select {
    min-width: 190px;
    height: 44px;
    padding: 0 36px 0 14px;
    font-size: 13px;
    font-weight: 700;
}

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

.catalog-redesign .catalog___item {
    width: auto !important;
    max-width: none !important;
    flex: initial !important;
    padding: 0 !important;
    margin: 0 !important;
}

.novator-product-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--novator-line);
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.novator-product-card:hover {
    border-color: rgba(158, 32, 38, .28);
    box-shadow: 0 14px 36px rgba(17, 21, 28, .08);
    transform: translateY(-2px);
}

.novator-product-card__img {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #fff;
    text-decoration: none !important;
}

.novator-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.novator-product-card__labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.novator-product-card__labels .product__label {
    position: static;
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 22px;
    padding: 0 8px;
    background: var(--novator-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.novator-product-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 1px solid var(--novator-line);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--novator-muted);
    cursor: pointer;
}


.novator-product-card__favorite.active,
.novator-detail .wishlist-btn.active {
    color: var(--novator-red);
    border-color: rgba(158, 32, 38, .35);
    background: rgba(158, 32, 38, .04);
}

.novator-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.novator-product-card__name {
    min-height: 44px;
    margin: 0 0 8px;
    color: var(--novator-text);
    font-size: 15px;
    line-height: 1.28;
    font-weight: 800;
    text-decoration: none !important;
}

.novator-product-card__name:hover {
    color: var(--novator-red);
}

.novator-product-card__sku {
    margin-bottom: 14px;
    color: var(--novator-muted);
    font-size: 12px;
}

.novator-product-card__price {
    margin-top: auto;
    color: var(--novator-text);
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.novator-product-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.novator-product-card__stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2c7046;
    font-size: 12px;
    font-weight: 700;
}

.novator-product-card__stock span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--novator-green);
}

.novator-product-card__buy {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(158, 32, 38, .28);
    background: #fff;
    color: var(--novator-red);
    cursor: pointer;
}

.catalog-redesign__more {
    margin-top: 28px !important;
    min-height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--novator-line) !important;
    background: #fff !important;
    color: var(--novator-text) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.catalog-redesign__empty {
    padding: 48px 24px;
    border: 1px solid var(--novator-line);
    background: #fff;
}

.novator-detail {
    padding: 20px 0 0;
}

.novator-detail__container {
    max-width: 1200px;
}

.novator-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: 44px;
    align-items: start;
}

.novator-detail__gallery {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
}

.novator-detail__thumbs {
    height: 560px;
    width: 76px;
    margin: 0 !important;
    overflow: hidden;
}

.novator-detail__thumb {
    width: 76px !important;
    height: 92px !important;
    padding: 0;
    border: 1px solid var(--novator-line);
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.novator-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.novator-detail__imagebox {
    position: relative;
    width: 100%;
    height: 560px;
    min-width: 0;
    border: 1px solid var(--novator-line);
    background: #fff;
    overflow: hidden;
}

.novator-detail__imagebox .swiper,
.novator-detail__imagebox .swiper-wrapper,
.novator-detail__imagebox .swiper-slide,
.novator-detail__imagebox .swiper-slide a {
    width: 100%;
    height: 100%;
}

.novator-detail__imagebox .swiper-slide a {
    display: block;
}

.novator-detail__imagebox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.novator-detail__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 4;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    background: var(--novator-red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.novator-detail .wishlist-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 40px;
    height: 40px;
    border: 1px solid var(--novator-line);
    background: #fff;
    color: var(--novator-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.novator-detail .arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 40px;
    height: 40px;
    border: 1px solid var(--novator-line);
    background: rgba(255,255,255,.92);
    cursor: pointer;
    transform: translateY(-50%);
}

.novator-detail .arrow-left { left: 18px; }
.novator-detail .arrow-right { right: 18px; }

.novator-detail .arrow::before {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    margin: auto;
    border-top: 2px solid var(--novator-text);
    border-right: 2px solid var(--novator-text);
}

.novator-detail .arrow-left::before { transform: rotate(-135deg); }
.novator-detail .arrow-right::before { transform: rotate(45deg); }

.novator-detail__summary {
    min-width: 0;
    padding: 0 0 8px;
}

.novator-detail__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 13px;
}

.novator-detail__stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--novator-green);
    font-weight: 800;
}

.novator-detail__stock::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.novator-detail__stock.is-empty {
    color: var(--novator-muted);
}

.novator-detail__article {
    color: var(--novator-muted);
    font-weight: 700;
}

.novator-detail__title {
    margin: 0 0 12px;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    color: var(--novator-text);
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.02;
    font-weight: 700;
    text-transform: uppercase;
}

.novator-detail__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 13px;
}

.novator-detail__rating span {
    color: var(--novator-red);
    letter-spacing: 2px;
}

.novator-detail__rating a {
    color: var(--novator-muted);
    text-decoration: none;
}

.novator-detail__price {
    margin-bottom: 4px;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: var(--novator-text);
}

.novator-detail__price-note {
    margin-bottom: 18px;
    color: var(--novator-muted);
    font-size: 13px;
}

.novator-detail__quick-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.novator-detail__quick-specs div {
    padding: 12px;
    border: 1px solid var(--novator-line);
    background: #fff;
}

.novator-detail__quick-specs span,
.novator-detail__quick-specs b {
    display: block;
    font-size: 12px;
    line-height: 1.25;
}

.novator-detail__quick-specs span {
    color: var(--novator-muted);
    margin-bottom: 5px;
}

.novator-detail__quick-specs b {
    color: var(--novator-text);
}

.novator-detail__protection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.novator-detail__protection-title,
.section-title {
    margin: 0;
    color: var(--novator-text);
    font-size: 13px;
    font-weight: 800;
}

.novator-detail__protection-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.novator-detail__protection-list span {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(158, 32, 38, .24);
    background: rgba(158, 32, 38, .04);
    color: var(--novator-red);
    font-weight: 800;
    font-size: 12px;
}

.novator-detail__sizes {
    margin-top: 14px;
}

.size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.novator-detail__size-link {
    color: var(--novator-muted);
    font-size: 12px;
    text-decoration: underline;
}

.height-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.height-tabs::-webkit-scrollbar { display: none; }

.height-tab,
.size-box {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--novator-line);
    background: #fff;
    color: var(--novator-text);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.height-tab.active,
.size-box.active {
    border-color: var(--novator-red);
    color: var(--novator-red);
    background: rgba(158, 32, 38, .04);
}

.size-panels {
    position: relative;
    transition: height .2s ease;
}

.size-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.size-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.novator-detail__buyrow {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.novator-detail__qty {
    height: 52px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    border: 1px solid var(--novator-line);
    background: #fff;
}

.novator-detail__qty button,
.novator-detail__qty input {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 800;
}

.novator-detail__qty button {
    cursor: pointer;
    color: var(--novator-muted);
}

.nbtn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--novator-red);
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.nbtn-filled {
    background: var(--novator-red);
    color: #fff;
}

.nbtn-filled:hover {
    background: var(--novator-red-dark);
    border-color: var(--novator-red-dark);
    color: #fff;
}

.nbtn-outline {
    background: #fff;
    color: var(--novator-red);
}

.nbtn-outline:hover {
    background: var(--novator-red);
    color: #fff;
}

.novator-detail__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.novator-detail__delivery-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--novator-line);
    color: var(--novator-muted);
    font-size: 12px;
}

.novator-detail__advantages {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 32px;
    border: 1px solid var(--novator-line);
    background: #fff;
}

.novator-detail__advantage {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid var(--novator-line);
}

.novator-detail__advantage:last-child { border-right: 0; }

.novator-detail__advantage span {
    color: var(--novator-red);
    font-size: 25px;
    line-height: 1;
}

.novator-detail__advantage b,
.novator-detail__advantage em {
    display: block;
    font-style: normal;
    line-height: 1.25;
}

.novator-detail__advantage b {
    font-size: 13px;
    font-weight: 800;
}

.novator-detail__advantage em {
    color: var(--novator-muted);
    font-size: 12px;
}

.novator-detail__tabs {
    margin-top: 32px;
    border: 1px solid var(--novator-line);
    background: #fff;
}

.bottom-tabs {
    display: flex;
    border-bottom: 1px solid var(--novator-line);
    background: var(--novator-soft);
}

.bottom-tab {
    flex: 1;
    min-height: 64px;
    border: 0;
    border-right: 1px solid var(--novator-line);
    background: transparent;
    color: var(--novator-text);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.bottom-tab:last-child { border-right: 0; }

.bottom-tab.active {
    background: #fff;
    color: var(--novator-red);
}

.novator-detail .specs-content {
    position: relative;
    min-height: 0;
    height: auto !important;
    padding: 34px 42px;
    overflow: visible;
}

.novator-detail .tab-content {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.novator-detail .tab-content.active {
    display: block;
}

.novator-detail .spec-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.novator-detail .spec-label {
    color: var(--novator-muted);
}

.novator-detail .spec-dots {
    flex: 1;
    border-bottom: 1px dotted #cfd3dc;
}

.novator-detail .spec-value {
    max-width: 52%;
    font-weight: 700;
    text-align: right;
}


.novator-detail .spec-label,
.novator-detail .spec-value {
    min-width: 0;
    overflow-wrap: anywhere;
}

.novator-detail__delivery-tab p,
.tab-content p {
    font-size: 15px;
    line-height: 1.65;
}

.banner-section {
    width: 100%;
    margin-top: 90px;
    margin-bottom: 90px;
    overflow: hidden;
    color: #fff;
}

.banner-container {
    display: flex;
    width: 100%;
    min-height: 390px;
    min-width: 0;
}

.sewing-block .banner-content {
    background: linear-gradient(90deg, #141414 0%, #691B1F 100%);
    padding-left: max(40px, calc((100vw - 1200px) / 2));
    position: relative;
}

.logo-block .banner-content {
    background: linear-gradient(270deg, #141414 0%, #691B1F 100%);
    padding-right: max(40px, calc((100vw - 1200px) / 2));
    position: relative;
}

.banner-content {
    flex: 1.2;
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    min-width: 0;
}

.banner-image {
    flex: .8;
    background-size: cover;
    background-position: center;
    min-width: 0;
}

.sewing-img { background-image: url('/local/templates/main/components/bitrix/catalog/catalog_test/images/sewing-banner.png'); }
.logo-img { background-image: url('/local/templates/main/components/bitrix/catalog/catalog_test/images/logo-banner.png'); }

.banner-title,
.section-main-title,
.cheaper-title {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-title {
    font-size: 42px;
    margin-bottom: 26px;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.banner-text {
    max-width: 560px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.55;
    opacity: .92;
}

.banner-form {
    max-width: 560px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.banner-form input {
    flex: 1;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: #fff;
}

.banner-form input::placeholder { color: rgba(255,255,255,.72); }

.banner-nbtn,
.cheaper-submit {
    min-height: 48px;
    border: 0;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.banner-nbtn {
    width: 100%;
    background: #fff;
    color: #5a1519;
}

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

.review-card {
    background: var(--novator-soft);
    padding: 26px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.review-author { font-weight: 800; }
.review-date { color: var(--novator-muted); font-size: 13px; }
.review-stars { color: var(--novator-red); margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.55; }

.section-main-title {
    margin: 74px 0 32px;
    font-size: 36px;
}

.how-we-work-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.cert-item {
    color: var(--novator-text);
    text-align: center;
    text-decoration: none !important;
}

.cert-placeholder {
    aspect-ratio: 1 / 1.42;
    border: 1px solid var(--novator-line);
    background: var(--novator-soft);
    margin-bottom: 12px;
    overflow: hidden;
}

.cert-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-title {
    font-size: 14px;
    font-weight: 800;
}

.cheaper-section {
    margin: 78px 0 90px;
}

.cheaper-card {
    background: var(--novator-soft);
    padding: 48px;
}

.cheaper-title {
    font-size: 32px;
    margin: 0 0 10px;
}

.cheaper-subtitle {
    margin: 0 0 26px;
    font-size: 18px;
    text-transform: uppercase;
}

.cheaper-inputs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.cheaper-form input,
.cheaper-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #fff;
    background: #fff;
    padding: 12px 14px;
}

.cheaper-form textarea {
    height: 120px;
    resize: none;
    margin-bottom: 16px;
}

.cheaper-submit {
    min-width: 180px;
    padding: 0 34px;
    background: var(--novator-red);
    color: #fff;
}

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

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

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

@media (max-width: 1199px) {
    .catalog-redesign__head {
        grid-template-columns: 1fr;
    }

    .catalog-redesign .left-filter-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10050;
        width: min(390px, 92vw);
        height: 100vh;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform .22s ease;
        box-shadow: 20px 0 50px rgba(17, 21, 28, .18);
    }

    .catalog-redesign .left-filter-wrap.active {
        transform: translateX(0);
    }

    .catalog-redesign__filter-heading {
        display: flex;
    }

    .catalog-redesign__filter-open {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

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

    .novator-detail__hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .novator-detail__summary {
        max-width: 720px;
    }
}

@media (max-width: 991px) {
    .catalog-redesign__sections,
    .catalog-redesign .catalogItemsBlock {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .catalog-redesign__found {
        order: 3;
        grid-column: 1 / -1;
    }

    .catalog-redesign__sort {
        justify-content: flex-end;
    }

    .novator-detail__gallery {
        grid-template-columns: 1fr;
    }

    .novator-detail__thumbs {
        order: 2;
        width: 100%;
        height: 88px;
    }

    .novator-detail__thumb {
        width: 70px !important;
        height: 84px !important;
    }

    .novator-detail__imagebox {
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 620px;
    }

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

    .novator-detail__advantage {
        border-bottom: 1px solid var(--novator-line);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .banner-container {
        flex-direction: column;
    }

    .banner-image {
        min-height: 260px;
    }

    .cheaper-inputs-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .catalog-redesign__head {
        margin-top: 14px;
        gap: 18px;
    }

    .catalog-redesign__etn {
        grid-template-columns: 42px 1fr;
    }

    .catalog-redesign__etn strong {
        grid-column: 1 / -1;
    }

    .catalog-redesign__sections,
    .catalog-redesign .catalogItemsBlock,
    .catalog-redesign__sections--root {
        grid-template-columns: 1fr;
    }

    .catalog-redesign__toolbar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .catalog-redesign__sort {
        justify-content: flex-start;
        width: 100%;
    }

    .catalog-redesign__sort select {
        width: 100%;
        min-width: 0;
    }

    .novator-product-card__img {
        height: 280px;
    }

    .novator-detail__title {
        font-size: 30px;
    }

    .novator-detail__price {
        font-size: 40px;
    }

    .novator-detail__quick-specs,
    .novator-detail__delivery-mini,
    .novator-detail__actions,
    .novator-detail__buyrow {
        grid-template-columns: 1fr;
    }

    .novator-detail__qty {
        max-width: 150px;
    }

    .novator-detail__advantages {
        grid-template-columns: 1fr;
    }

    .novator-detail__advantage {
        min-height: 88px;
        border-right: 0;
    }

    .bottom-tabs {
        display: block;
    }

    .bottom-tab {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--novator-line);
    }

    .novator-detail .specs-content {
        padding: 24px 18px;
    }

    .novator-detail .tab-content {
        inset: auto;
    }

    .novator-detail .spec-item {
        display: block;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--novator-line);
    }

    .novator-detail .spec-dots {
        display: none;
    }

    .novator-detail .spec-value {
        display: block;
        max-width: none;
        margin-top: 4px;
        text-align: left;
    }

    .input-group {
        flex-direction: column;
    }

    .banner-content,
    .cheaper-card {
        padding: 30px 18px;
    }

    .section-main-title,
    .banner-title,
    .cheaper-title {
        font-size: 28px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }
}


.catalog-redesign-root__products {
    margin-top: 38px;
}

.catalog-redesign-root__products-title {
    margin: 0 0 22px;
    color: var(--novator-text);
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.catalog-redesign__toolbar--no-filter {
    grid-template-columns: minmax(0, 1fr) auto;
}

.catalog-redesign .left-filter__arrow {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    display: block !important;
    position: relative;
    margin-left: auto;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    transform: none !important;
}

.catalog-redesign .left-filter__arrow::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--novator-text);
    border-bottom: 2px solid var(--novator-text);
    transform: rotate(45deg);
    transition: transform .2s ease, top .2s ease;
}

.catalog-redesign .left-filter__name.active .left-filter__arrow::before {
    top: 4px;
    transform: rotate(-135deg);
}

.novator-detail .size-panels {
    position: static;
    height: auto !important;
    min-height: 0;
}

.novator-detail .size-panel {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.novator-detail .size-panel.active {
    display: block;
}

.novator-detail .size-grid {
    align-items: flex-start;
}

.novator-detail .height-tab,
.novator-detail .size-box {
    min-width: 44px;
    height: 38px;
    line-height: 1.1;
}

.novator-detail__buyrow {
    clear: both;
}

@media (max-width: 767px) {
    .catalog-redesign-root__products-title {
        font-size: 28px;
    }

    .catalog-redesign__toolbar--no-filter {
        grid-template-columns: 1fr;
    }
}


.productFavoriteButton {
    position: relative;
}

.productFavoriteButton.active i {
    opacity: 0;
}

.productFavoriteButton.active::after {
    content: '♥';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -53%);
    color: var(--novator-red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 23px;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}

.novator-detail .wishlist-btn.active::after {
    font-size: 25px;
}

.novator-modal-open {
    overflow: hidden;
}

.novator-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.novator-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.novator-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 18, .62);
}

.novator-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: #fff;
    border: 1px solid var(--novator-line);
    box-shadow: 0 28px 90px rgba(5, 10, 18, .22);
}

.novator-modal__close {
    position: absolute;
    right: 16px;
    top: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid var(--novator-line);
    background: #fff;
    color: var(--novator-text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.novator-modal__head {
    padding: 30px 32px 18px;
    border-bottom: 1px solid var(--novator-line);
}

.novator-modal__eyebrow {
    margin-bottom: 8px;
    color: var(--novator-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.novator-modal__head h3 {
    margin: 0;
    color: var(--novator-text);
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.novator-modal__head p {
    margin: 8px 48px 0 0;
    color: var(--novator-muted);
    font-size: 14px;
    line-height: 1.45;
}

.novator-detail__size-link {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--novator-muted);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.novator-size-modal__body {
    padding: 28px 32px 32px;
}

.novator-size-modal__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.novator-size-modal__content {
    color: var(--novator-text);
    font-size: 15px;
    line-height: 1.6;
}

.novator-size-modal__content table {
    width: 100%;
    border-collapse: collapse;
}

.novator-size-modal__content th,
.novator-size-modal__content td {
    padding: 12px 14px;
    border: 1px solid var(--novator-line);
    text-align: left;
}

.novator-size-modal__empty {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 20px;
    background: #f7f7f7;
}

.novator-size-modal__empty-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border: 1px solid rgba(158, 32, 38, .32);
    color: var(--novator-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
}

.novator-size-modal__empty h4 {
    margin: 0 0 10px;
    color: var(--novator-text);
    font-size: 22px;
    font-weight: 900;
}

.novator-size-modal__empty p {
    max-width: 460px;
    margin: 0 0 20px;
    color: var(--novator-muted);
    line-height: 1.5;
}

.novator-reviews {
    padding: 64px 0 32px;
}

.novator-reviews__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.novator-reviews__head .section-main-title {
    margin-bottom: 10px;
}

.novator-reviews__head p {
    margin: 0;
    color: var(--novator-muted);
    font-size: 15px;
}

.novator-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.novator-review-card {
    min-height: 180px;
    padding: 22px;
    border: 1px solid var(--novator-line);
    background: #fff;
}

.novator-review-card .review-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.novator-review-card .review-author {
    color: var(--novator-text);
    font-weight: 900;
}

.novator-review-card .review-date {
    color: var(--novator-muted);
    font-size: 12px;
}

.novator-review-card .review-stars,
.novator-review-stars button.active,
.novator-reviews__empty-icon {
    color: var(--novator-red);
}

.novator-review-card .review-text {
    margin: 12px 0 0;
    color: var(--novator-text);
    font-size: 14px;
    line-height: 1.55;
}

.novator-reviews__empty {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--novator-line);
    background: #f8f8f8;
}

.novator-reviews__empty-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 1px solid rgba(158, 32, 38, .3);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.novator-reviews__empty b,
.novator-reviews__empty span {
    display: block;
}

.novator-reviews__empty b {
    margin-bottom: 5px;
    color: var(--novator-text);
    font-size: 18px;
    font-weight: 900;
}

.novator-reviews__empty span {
    color: var(--novator-muted);
    font-size: 14px;
}

.novator-review-form {
    padding: 28px 32px 32px;
}

.novator-review-form__notice {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(158, 32, 38, .18);
    background: rgba(158, 32, 38, .04);
    color: var(--novator-muted);
    font-size: 13px;
    line-height: 1.45;
}

.novator-review-form__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.novator-review-form__rating span,
.novator-review-form label span:first-child {
    color: var(--novator-text);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.novator-review-stars {
    display: flex;
    gap: 4px;
}

.novator-review-stars button {
    border: 0;
    background: transparent;
    color: #d8dbe1;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.novator-review-form__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.novator-review-form label {
    display: block;
}

.novator-review-form input[type='text'],
.novator-review-form input[type='tel'],
.novator-review-form input[type='email'],
.novator-review-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--novator-line);
    background: #fff;
    color: var(--novator-text);
    font-size: 14px;
}

.novator-review-form input[type='text'],
.novator-review-form input[type='tel'],
.novator-review-form input[type='email'] {
    height: 48px;
    padding: 0 14px;
}

.novator-review-form textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
}

.novator-review-form__textarea {
    margin-bottom: 16px;
}

.novator-review-form__consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--novator-muted);
    font-size: 12px;
    line-height: 1.45;
}

.novator-review-form__consent input {
    margin-top: 3px;
}

.novator-review-form__message {
    display: none;
    margin-bottom: 16px;
    padding: 12px 14px;
    font-size: 14px;
}

.novator-review-form__message.is-error,
.novator-review-form__message.is-success {
    display: block;
}

.novator-review-form__message.is-error {
    background: rgba(158, 32, 38, .08);
    color: var(--novator-red);
}

.novator-review-form__message.is-success {
    background: rgba(10, 162, 74, .08);
    color: #0a8f42;
}

.favoritesPageBlock {
    padding-top: 48px;
}

.favoritesPageBlock > h1 {
    margin: 0 0 30px !important;
    color: var(--novator-text);
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 54px;
    line-height: .95;
    font-weight: 800;
    text-transform: uppercase;
}

.favoritesPageBlock .row {
    row-gap: 24px;
}

.favoritesPageBlock > .row > p,
.favoritesPageBlock .novator-favorites-empty {
    width: 100%;
    margin: 0;
    padding: 34px;
    border: 1px solid var(--novator-line);
    background: #f8f8f8;
    color: var(--novator-muted);
    font-size: 16px;
}

.related-products-redesign {
    margin-top: 54px;
    margin-bottom: 60px;
}

.related-products-redesign h3 {
    margin: 0 0 28px;
    color: var(--novator-text);
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.related-products-redesign .products-carousel,
.related-products-redesign .swiper {
    overflow: hidden;
}

.related-products-redesign .swiper-wrapper {
    align-items: stretch;
}

.novator-related-product.swiper-slide {
    height: auto;
}

.novator-related-product .novator-product-card {
    height: 100%;
}

.novator-related-product .novator-product-card__img {
    min-height: 250px;
}

.novator-related-product .novator-product-card__name {
    min-height: 86px;
}

@media (max-width: 991px) {
    .novator-reviews__grid,
    .novator-review-form__grid {
        grid-template-columns: 1fr;
    }

    .novator-reviews__head {
        display: block;
    }

    .novator-reviews__head .nbtn {
        margin-top: 18px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .novator-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .novator-modal__dialog {
        max-height: calc(100vh - 24px);
    }

    .novator-modal__head,
    .novator-size-modal__body,
    .novator-review-form {
        padding-left: 18px;
        padding-right: 18px;
    }

    .novator-modal__head h3 {
        font-size: 28px;
    }

    .favoritesPageBlock > h1 {
        font-size: 38px;
    }

    .related-products-redesign h3 {
        font-size: 30px;
    }
}


.productFavoriteButton.active i {
    opacity: 1 !important;
}

.productFavoriteButton.active::after,
.novator-detail .wishlist-btn.active::after {
    content: none !important;
    display: none !important;
}

.novator-product-card > .productFavoriteButton.novator-product-card__favorite,
.novator-product-card .productFavoriteButton.novator-product-card__favorite {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
}

.novator-detail .wishlist-btn.productFavoriteButton {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    bottom: auto !important;
}

.productFavoriteButton.active,
.novator-product-card__favorite.active,
.novator-detail .wishlist-btn.active {
    color: var(--novator-red) !important;
    border-color: rgba(158, 32, 38, .55) !important;
    background: rgba(158, 32, 38, .06) !important;
}

.productFavoriteButton.active .icon-heart,
.novator-product-card__favorite.active .icon-heart,
.novator-detail .wishlist-btn.active .icon-heart {
    color: var(--novator-red) !important;
}

.favoritesPageBlock .row {
    row-gap: 0;
}

.favoritesPageBlock .catalog___item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-bottom: 18px !important;
}

.favoritesPageBlock .novator-product-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 220px;
}

.favoritesPageBlock .novator-product-card__img {
    height: 220px;
    min-height: 220px;
    border-right: 1px solid var(--novator-line);
    border-bottom: 0;
}

.favoritesPageBlock .novator-product-card__body {
    min-width: 0;
    padding: 24px 76px 24px 24px;
}

.favoritesPageBlock .novator-product-card__name {
    min-height: 0;
    max-width: 720px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.25;
}

.favoritesPageBlock .novator-product-card__sku {
    margin-bottom: 16px;
}

.favoritesPageBlock .novator-product-card__price {
    margin-top: auto;
    font-size: 28px;
}

.favoritesPageBlock .novator-product-card__bottom {
    max-width: 520px;
}

.favoritesPageBlock .novator-product-card__favorite {
    top: 18px !important;
    right: 18px !important;
}

.related-products-redesign .novator-related-carousel {
    overflow: hidden;
}

.related-products-redesign .novator-related-carousel .swiper-wrapper {
    align-items: stretch;
}

.related-products-redesign .novator-related-product.swiper-slide {
    height: auto;
}

.related-products-redesign .novator-product-card__price {
    word-break: normal;
    white-space: nowrap;
}

.related-products-redesign .novator-product-card__buy {
    flex: 0 0 42px;
}

@media (max-width: 767px) {
    .favoritesPageBlock .novator-product-card {
        display: block;
        min-height: 0;
    }

    .favoritesPageBlock .novator-product-card__img {
        height: 260px;
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid var(--novator-line);
    }

    .favoritesPageBlock .novator-product-card__body {
        padding: 18px;
    }

    .favoritesPageBlock .novator-product-card__name {
        font-size: 17px;
    }
}



.novator-product-card,
.related-products-redesign .novator-product-card,
.favoritesPageBlock .novator-product-card {
    position: relative !important;
    overflow: hidden !important;
}

.novator-product-card .productFavoriteButton,
.novator-product-card__favorite.productFavoriteButton,
.related-products-redesign .productFavoriteButton,
.favoritesPageBlock .productFavoriteButton,
.novator-detail__imagebox .productFavoriteButton,
.novator-detail .wishlist-btn.productFavoriteButton {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 38px !important;
    border: 1px solid #dfe4eb !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #6b747f !important;
    line-height: 1 !important;
    font-size: 0 !important;
    overflow: hidden !important;
}

.novator-detail__imagebox .productFavoriteButton,
.novator-detail .wishlist-btn.productFavoriteButton {
    top: 18px !important;
    right: 18px !important;
}

.novator-product-card .productFavoriteButton:hover,
.novator-product-card__favorite.productFavoriteButton:hover,
.related-products-redesign .productFavoriteButton:hover,
.favoritesPageBlock .productFavoriteButton:hover,
.novator-detail__imagebox .productFavoriteButton:hover,
.novator-detail .wishlist-btn.productFavoriteButton:hover {
    border-color: #a71f2a !important;
    background: #fff !important;
    color: #a71f2a !important;
}

.novator-product-card .productFavoriteButton.active,
.novator-product-card__favorite.productFavoriteButton.active,
.related-products-redesign .productFavoriteButton.active,
.favoritesPageBlock .productFavoriteButton.active,
.novator-detail__imagebox .productFavoriteButton.active,
.novator-detail .wishlist-btn.productFavoriteButton.active {
    border-color: #a71f2a !important;
    background: #fff !important;
    color: #a71f2a !important;
}

.novator-product-card .productFavoriteButton .icon-heart,
.novator-product-card__favorite.productFavoriteButton .icon-heart,
.related-products-redesign .productFavoriteButton .icon-heart,
.favoritesPageBlock .productFavoriteButton .icon-heart,
.novator-detail__imagebox .productFavoriteButton .icon-heart,
.novator-detail .wishlist-btn.productFavoriteButton .icon-heart {
    position: relative !important;
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    font-size: 0 !important;
    line-height: 22px !important;
    color: inherit !important;
    transform: none !important;
}

.novator-product-card .productFavoriteButton .icon-heart::before,
.novator-product-card__favorite.productFavoriteButton .icon-heart::before,
.related-products-redesign .productFavoriteButton .icon-heart::before,
.favoritesPageBlock .productFavoriteButton .icon-heart::before,
.novator-detail__imagebox .productFavoriteButton .icon-heart::before,
.novator-detail .wishlist-btn.productFavoriteButton .icon-heart::before {
    content: '♡' !important;
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: currentColor !important;
}

.novator-product-card .productFavoriteButton.active .icon-heart::before,
.novator-product-card__favorite.productFavoriteButton.active .icon-heart::before,
.related-products-redesign .productFavoriteButton.active .icon-heart::before,
.favoritesPageBlock .productFavoriteButton.active .icon-heart::before,
.novator-detail__imagebox .productFavoriteButton.active .icon-heart::before,
.novator-detail .wishlist-btn.productFavoriteButton.active .icon-heart::before {
    content: '♥' !important;
    color: #a71f2a !important;
}

.related-products-redesign .products-carousel-wrap,
.related-products-redesign .novator-related-wrap {
    position: relative !important;
    overflow: visible !important;
    padding: 0 52px !important;
}

.related-products-redesign .novator-related-carousel {
    width: 100% !important;
    overflow: hidden !important;
}

.related-products-redesign .novator-related-carousel .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.related-products-redesign .novator-related-carousel:not(.swiper-initialized) .swiper-wrapper {
    gap: 16px !important;
}

.related-products-redesign .novator-related-carousel:not(.swiper-initialized) .novator-related-product.swiper-slide {
    flex: 0 0 calc((100% - 48px) / 4) !important;
    width: calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
}

.related-products-redesign .novator-related-product.swiper-slide {
    height: auto !important;
    min-width: 0 !important;
}

.related-products-redesign .novator-product-card {
    height: 100% !important;
    min-width: 0 !important;
}

.related-products-redesign .novator-product-card__img {
    height: 270px !important;
    min-height: 270px !important;
    padding: 18px !important;
}

.related-products-redesign .novator-product-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.related-products-redesign .novator-product-card__name {
    min-height: 78px !important;
    font-size: 15px !important;
    line-height: 1.28 !important;
    overflow: hidden !important;
}

.related-products-redesign .carousel-btn {
    z-index: 20 !important;
}

@media (max-width: 1199px) {
    .related-products-redesign .novator-related-carousel:not(.swiper-initialized) .novator-related-product.swiper-slide {
        flex-basis: calc((100% - 32px) / 3) !important;
        width: calc((100% - 32px) / 3) !important;
        max-width: calc((100% - 32px) / 3) !important;
    }
}

@media (max-width: 991px) {
    .related-products-redesign .products-carousel-wrap,
    .related-products-redesign .novator-related-wrap {
        padding: 0 42px !important;
    }

    .related-products-redesign .novator-related-carousel:not(.swiper-initialized) .novator-related-product.swiper-slide {
        flex-basis: calc((100% - 16px) / 2) !important;
        width: calc((100% - 16px) / 2) !important;
        max-width: calc((100% - 16px) / 2) !important;
    }
}

@media (max-width: 575px) {
    .related-products-redesign .products-carousel-wrap,
    .related-products-redesign .novator-related-wrap {
        padding: 0 32px !important;
    }

    .related-products-redesign .novator-related-carousel:not(.swiper-initialized) .novator-related-product.swiper-slide {
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}


.catalogLoadArea .paginationBlock.hidden-important,
.catalogLoadArea .catalogMoreButton.hidden-important {
    display: none !important;
}

.novator-basket-added {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.novator-basket-added.is-open {
    display: flex;
}

.novator-basket-added__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 14, 24, .62);
}

.novator-basket-added__box {
    position: relative;
    width: min(100%, 460px);
    background: #fff;
    border: 1px solid #e6e9ef;
    box-shadow: 0 24px 70px rgba(9, 14, 24, .22);
    padding: 34px 34px 30px;
    text-align: center;
}

.novator-basket-added__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #81899a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.novator-basket-added__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #b01624;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.novator-basket-added__title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 700;
    text-transform: uppercase;
    color: #151b29;
    margin-bottom: 10px;
}

.novator-basket-added__text {
    color: #5f687a;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 24px;
}

.novator-basket-added__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.novator-basket-added__btn {
    min-height: 48px;
    border: 1px solid #b01624;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.novator-basket-added__btn--primary {
    background: #b01624;
    color: #fff !important;
}

.novator-basket-added__btn--light {
    background: #fff;
    color: #b01624;
}

.related-products-redesign .novator-related__pagination,
.related-products-redesign .carousel-pagination,
.related-products-redesign .swiper-pagination,
.related-products-redesign .swiper-pagination-bullets {
    display: none !important;
}

.related-products-redesign .novator-related-wrap,
.related-products-redesign .products-carousel-wrap {
    position: relative;
    overflow: visible;
    padding-bottom: 0 !important;
}

.related-products-redesign .novator-related-carousel {
    overflow: hidden !important;
    width: 100%;
}

.related-products-redesign .novator-related-carousel .swiper-wrapper {
    align-items: stretch;
}

.related-products-redesign .novator-related-product.swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.related-products-redesign .novator-product-card {
    width: 100%;
    min-width: 0;
    height: 100%;
}

.related-products-redesign .carousel-btn {
    z-index: 8;
}

@media (max-width: 575px) {
    .novator-basket-added__box {
        padding: 30px 18px 22px;
    }
    .novator-basket-added__actions {
        grid-template-columns: 1fr;
    }
    .novator-basket-added__title {
        font-size: 24px;
    }
}

@media (min-width: 1600px) {
    .novator-detail__container {
        max-width: 1440px;
    }

    .novator-detail__hero {
        grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr);
        gap: 56px;
    }

    .novator-detail__imagebox,
    .novator-detail__thumbs {
        height: 640px;
    }

    .catalog-redesign .catalogItemsBlock {
        gap: 28px;
    }
}

@media (min-width: 1920px) {
    .novator-detail__container {
        max-width: 1560px;
    }

    .novator-detail__imagebox,
    .novator-detail__thumbs {
        height: 700px;
    }

    .catalog-redesign__layout {
        grid-template-columns: 360px minmax(0, 1fr);
        gap: 34px;
    }
}

@media (min-width: 2048px) {
    .catalog-redesign__title,
    .section-main-title,
    .novator-detail__title {
        letter-spacing: .005em;
    }

    .catalog-redesign__layout {
        grid-template-columns: 370px minmax(0, 1fr);
    }
}

@media (min-width: 2560px) {
    .novator-detail__container {
        max-width: 1680px;
    }

    .novator-detail__imagebox,
    .novator-detail__thumbs {
        height: 760px;
    }

    .catalog-redesign__layout {
        grid-template-columns: 390px minmax(0, 1fr);
    }
}

@media (min-width: 3440px) {
    .novator-detail__container {
        max-width: 1780px;
    }

    .catalog-redesign__layout {
        grid-template-columns: 410px minmax(0, 1fr);
    }
}


@media (min-width: 1200px) {
    .catalog-redesign__layout.row {
        display: grid !important;
        grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
        gap: 0 28px;
        align-items: start;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .catalog-redesign__layout > .catalog-redesign__filter-col,
    .catalog-redesign__layout > .catalog-redesign__content-col,
    .catalog-redesign__layout > .col-xl-3,
    .catalog-redesign__layout > .col-xl-9 {
        width: auto !important;
        max-width: none !important;
        flex: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        min-width: 0;
    }

    .catalog-redesign__layout > .catalog-redesign__filter-col,
    .catalog-redesign__layout > .col-xl-3:first-child {
        grid-column: 1;
    }

    .catalog-redesign__layout > .catalog-redesign__content-col,
    .catalog-redesign__layout > .col-xl-9:last-child {
        grid-column: 2;
    }

    .catalog-redesign .left-filter-wrap {
        width: 100%;
        max-width: none;
    }

    .catalog-redesign .catalogLoadArea,
    .catalog-redesign .catalogItemsBlock,
    .catalog-redesign__toolbar {
        min-width: 0;
    }
}

@media (min-width: 1600px) {
    .catalog-redesign__layout.row {
        grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
        gap: 0 32px;
    }
}

@media (min-width: 2048px) {
    .catalog-redesign__layout.row {
        grid-template-columns: minmax(330px, 380px) minmax(0, 1fr);
        gap: 0 34px;
    }
}

@media (min-width: 2560px) {
    .catalog-redesign__layout.row {
        grid-template-columns: minmax(350px, 400px) minmax(0, 1fr);
        gap: 0 38px;
    }
}

@media (max-width: 1199px) {
    .catalog-redesign__layout.row {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .catalog-redesign__layout > .catalog-redesign__filter-col,
    .catalog-redesign__layout > .catalog-redesign__content-col {
        width: 100% !important;
        max-width: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
