.btn-nav {
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    color: #2c2c2c;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    flex-shrink: 0;
    flex-grow: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-nav[aria-disabled="true"] {
    color: #989898;
    pointer-events: none;
    box-shadow: none;
}

@media screen and (min-width: 992px) {
    .btn-nav:hover {
        color: #e21b25;
    }
}

/* intro */
.h-intro {
    --h-banner: 380px;
    width: 100%;
}

.h-intro__wrapper {
    overflow: hidden;
    border-radius: 16px;
    height: var(--h-banner);
}

.h-intro__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.h-intro__prev,
.h-intro__next {
    position: absolute;
    top: 0;
    bottom: 93px;
    width: 140px;
    z-index: 1;
    opacity: 0;
}

.h-intro__prev[aria-disabled="true"],
.h-intro__next[aria-disabled="true"] {
    display: none !important;
}

.h-intro__prev {
    left: 0;
    cursor:
        url("/new/html/www/assets/images/cursors/c-prev-1.svg") 10 10,
        grab;
}

.h-intro__next {
    right: 0;
    cursor:
        url("/new/html/www/assets/images/cursors/c-next-1.svg") 10 10,
        grab;
}

.h-intro__inner {
    display: flex;
}

.h-intro__slide {
    --t-color: #2c2c2c;
    display: block;
    width: calc(100% + 2px) !important;
    margin: 0 -1px !important;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    height: var(--h-banner);
    text-decoration: none;
    color: var(--t-color);
}

.h-intro__slide.swiper-slide-active {
    z-index: 2;
}

.h-intro__slide[data-theme="dark"] {
    --t-color: #ffffff;
}

a.h-intro__slide:hover {
    color: var(--t-color)!important;
}

.h-intro__slide-bg {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.h-intro__slide-bg--desktop {
    display: none;
}

.h-intro__slide-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.h-intro__slide-info {
    position: absolute;
    left: 0;
    right: 120px;
    bottom: 0;
    z-index: 1;
    padding: 48px;
}

.h-intro__slide-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
}

.h-intro__slide-text {
    margin-top: 8px;
    letter-spacing: 0.02em;
    line-height: 26px;
    font-size: 18px;
}

.h-intro__slide-link {
    color: inherit;
    margin-top: 24px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    line-height: 14px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.h-intro__nav {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 30px;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.h-intro__nav > * {
    transition: 0.3s;
    width: 6px;
    height: 6px;
    cursor: pointer;
    user-select: none;
    border-radius: 3px;
    position: relative;
    background-color: #9ca3aa;
}

.h-intro__nav > *::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -2px;
    right: -2px;
    bottom: -4px;
    user-select: none;
}

.h-intro__nav > *.active {
    width: 30px;
    pointer-events: none;
    background-color: #11244d;
}

.h-intro__btn {
    position: absolute;
    z-index: 3;
    top: calc(30px + var(--h-banner) - var(--headerHeight));
    right: 24px;
    border: 4px solid #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e21b25;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .h-intro {
        --h-banner: 480px;
        margin: 0 -16px;
        width: auto;
    }

    .h-intro__wrapper {
        position: fixed;
        z-index: 0;
        top: 75px;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .h-intro__slide-info {
        position: absolute;
        right: 24px;
        padding: 16px 16px 48px;
    }

    .h-intro__slide-title {
        max-width: calc(100vw - 40px);
        font-size: 28px;
        line-height: 26px;
    }

    .h-intro__slide-text {
        max-width: calc(100vw - 96px);
    }

    .h-intro__slide-link {
        display: none;
    }

    .h-intro .advertising-label {
        bottom: 56px;
    }

    .h-intro__nav {
        position: absolute;
        z-index: 3;
        top: calc(84px + var(--h-banner) - var(--headerHeight));
        height: 0;
        left: 0;
        right: 0;
        pointer-events: none;
    }

    .h-intro__prev,
    .h-intro__next {
        display: none;
    }

    .h-intro .advertising-label {
        bottom: 56px;
        right: 20px;
    }
}

@media screen and (min-width: 640px) and (max-width: 991px) {
    .h-intro {
        --h-banner: 303px;
    }

    .h-intro__slide-bg--desktop {
        display: block;
    }

    .h-intro__slide-bg--mobile {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .h-intro__wrapper {
        top: auto !important;
        left: auto !important;
        right: auto !important;
        position: relative !important;
    }

    .h-intro__btn {
        display: none;
    }

    .h-intro__slide-bg--desktop {
        display: block;
    }

    .h-intro__slide-bg--mobile {
        display: none;
    }

    .h-intro__layer {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .h-intro {
        --h-banner: 455px;
    }
}

/* container */
.h-container {
    padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
    .h-container {
        position: relative;
        z-index: 2;
        margin-top: calc(535px - var(--headerHeight));
        padding-top: 28px;
        border-radius: 16px 16px 0 0;
        background-color: #ffffff;
    }
}

@media screen and (min-width: 640px) and (max-width: 991px) {
    .h-container {
        margin-top: calc(358px - var(--headerHeight));
    }
}

/* categories */
.h-categories {
    width: 100%;
    padding-top: 40px;
    position: relative;
}

.h-categories__wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
    z-index: 0;
}

.h-categories__wrapper::before,
.h-categories__wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    pointer-events: none;
    bottom: 0;
    z-index: 1;
    width: 43px;
}

.h-categories__wrapper::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 88%);
}

.h-categories__wrapper::before {
    left: 0;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 88%);
}

.h-categories__inner {
    display: flex;
}

.h-categories__item {
    display: flex;
    width: 110px;
    padding: 0 6px;
    flex-shrink: 0;
    align-items: center;
    position: relative;
    text-decoration: none;
    flex-direction: column;
}

/* .h-categories__item::before {
    content: '';
    background-color: #F5F6FA;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 0;
    border-radius: 50%;
} */

.h-categories__item img {
    position: relative;
    z-index: 1;
    width: 79px;
    height: 75px;
    margin: 10px 0;
}

.h-categories__item span {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    margin-top: 8px;
    display: block;
    max-height: 2.3em;
    letter-spacing: 0.02em;
}

.h-categories__prev,
.h-categories__next {
    position: absolute;
    z-index: 2;
    top: 70px;
}

.h-categories__prev[aria-disabled="true"],
.h-categories__next[aria-disabled="true"] {
    opacity: 0;
}

.h-categories__next[aria-disabled="true"] ~ .h-categories__wrapper::after {
    opacity: 0;
}

.h-categories__prev[aria-disabled="true"] ~ .h-categories__wrapper::before {
    opacity: 0;
}

.h-categories__prev {
    left: 5px;
}

.h-categories__next {
    right: 5px;
}

.h-categories__scrollbar {
    display: none;
}

.h-categories__scrollbar > * {
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 2px;
}

@media screen and (max-width: 991px) {
    .h-categories {
        padding-top: 24px;
    }

    .h-categories__wrapper {
        margin: 0 -16px;
        padding-bottom: 20px;
    }

    .h-categories__prev,
    .h-categories__next {
        display: none;
    }

    .h-categories__item {
        width: 102px;
    }

    .h-categories__item img {
        width: 69px;
        height: 65px;
        margin: 10px 0;
    }

    .h-categories__item span {
        font-size: 12px;
        line-height: 14px;
    }

    .h-categories__scrollbar {
        display: block;
    }
}

/* addition */
.h-addition {
    margin-top: 60px;
}

.h-categories + .h-addition {
    margin-top: 0;
}

.h-addition__head {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

h2.h-addition__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
    margin: 0;
    font-family: inherit;
    text-decoration: none!important;
    color: #2c2c2c!important;
}

.h-addition__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-addition__nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0.08em;
}

.h-addition__wrapper {
    width: 100%;
    margin-top: 32px;
    overflow: hidden;
}

.h-addition__inner {
    display: flex;
}

.h-addition__inner > * {
    flex-shrink: 0;
    width: 25%;
    height: 100%;
}

.h-addition__inner .p-card {
    height: 100%;
}

@media screen and (max-width: 991px) {
    .h-addition__wrapper {
        margin: 20px -16px 0;
        padding: 0 16px;
        width: auto;
    }

    .h-categories + .h-addition {
        margin-top: 30px;
    }

    h2.h-addition__title {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0.02em;
    }

    .h-addition__nav > * {
        display: none;
    }

    .h-addition__nav-link {
        display: block;
        color: #e21b25;
        font-size: 10px;
        line-height: 10px;
    }

    .h-addition__inner > * {
        width: 55%;
    }
}

/* promos */
.h-promos {
    padding-top: 60px;
    width: 100%;
}

.h-promos__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.h-promos__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

h2.h-promos__title-text {
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
    margin: 0;
    font-family: inherit;
    text-decoration: none!important;
    color: #2c2c2c!important;
}

.h-promos__title-counter {
    background-color: #e21b25;
    border-radius: 32px;
    padding: 5px 7px 5px 8px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 12px;
    font-weight: 700;
    min-width: 23px;
    display: block;
    text-align: center;
}

.h-promos__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-promos__nav[data-count='1'] {
    opacity: 0!important;
    pointer-events: none!important;
}

.h-promos__nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0.08em;
}

.h-promos__wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 32px;
}

.h-promos__inner {
    display: flex;
}

.h-promos__item {
    flex-shrink: 0;
    width: calc(50% - 18px);
    padding-bottom: 12px;
    position: relative;
    text-decoration: none;
}

.h-promos__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.h-promos__item-bg--desktop {
    display: none;
}

.h-promos__item-image {
    display: block;
    width: 350px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    height: 252px;
    transition: 0.9s ease;
    object-fit: contain;
}

.h-promos__item-footer {
    display: flex;
    position: relative;
    z-index: 2;
    gap: 16px;
    align-items: flex-start;
}

.h-promos__item-date {
    display: flex;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-transform: uppercase;
    color: #11244d;
    white-space: nowrap;
}

.h-promos__item-date i {
    width: 13px;
    display: block;
    height: 10px;
    background-image: url("/new/html/www/assets/images/home/date-icon.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.h-promos__item-dateinfo {
    display: flex;
    gap: 6px;
    align-items: center;
}

.h-promos__item-title {
    font-size: 26px;
    line-height: 1em;
    font-weight: 700;
}

.h-promos__item-text {
    margin-top: 12px;
    font-size: 18px;
    color: #11244d;
    letter-spacing: 0.02em;
    line-height: 26px;
}

@media screen and (max-width: 991px) {
    .h-promos__wrapper {
        margin: 20px -16px 0;
        padding: 0 16px;
        width: auto;
    }

    .h-promos__item {
        width: 90%;
    }

    .h-promos__item-image {
        width: 250px;
        height: 180px;
    }

    .h-promos__title {
        gap: 6px;
    }

    h2.h-promos__title-text {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0.02em;
    }

    .h-promos__nav > * {
        display: none;
    }

    .h-promos__nav-link {
        display: block;
        color: #e21b25;
        font-size: 10px;
        line-height: 10px;
    }

    .h-promos__item-footer {
        padding: 0 12px;
    }

    .h-promos__item-date {
        font-size: 10px;
        line-height: 10px;
    }

    .h-promos__item-title {
        font-size: 20px;
    }

    .h-promos__item-text {
        font-size: 14px;
        margin-top: 8px;
        line-height: 16px;
    }
}

@media screen and (min-width: 640px) {
    .h-promos__item-bg--mobile {
        display: none;
    }

    .h-promos__item-bg--desktop {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .h-promos__item:hover .h-promos__item-image {
        transform: scale(1.05);
    }

    .h-promos__nav[data-count='2'] {
        opacity: 0!important;
        pointer-events: none!important;
    }
}

/* list */
.h-list {
    margin-top: 60px;
    color: #2c2c2c;
}

.h-list[data-theme="dark"] {
    color: #ffffff;
}

.h-list__banner {
    position: relative;
    width: 100%;
    display: block;
    text-decoration: none;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    color: inherit!important;
}

.h-list__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.h-list__banner-info {
    bottom: 0;
    left: 0;
    max-width: 530px;
    position: absolute;
    z-index: 1;
    padding: 48px;
}

.h-list__banner-title {
    font-size: 36px;
    line-height: 32px;
    font-weight: 700;
}

.h-list__banner-link {
    display: block;
    font-size: 14px;
    line-height: 1em;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 20px;
    color: inherit;
}

.h-list__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 32px;
}

.h-list__next,
.h-list__prev {
    margin-top: 78px;
}

.h-list__container {
    width: 100%;
    overflow: hidden;
}

.h-list__inner {
    display: flex;
}

.h-list__inner > * {
    flex-shrink: 0;
    width: 25%;
    height: 100%;
}

.h-list__inner .p-card {
    height: 100%;
}

@media screen and (max-width: 991px) {
    .h-list__banner {
        width: auto;
        margin: 0 -16px;
        height: 200px;
        border-radius: 0;
    }

    .h-list__banner-info {
        max-width: 300px;
        padding: 20px 16px;
    }

    .h-list__banner-title {
        font-size: 28px;
        line-height: 26px;
    }

    .h-list__banner-link {
        font-size: 12px;
        margin-top: 12px;
    }

    .h-list__prev,
    .h-list__next {
        display: none;
    }

    .h-list__inner > * {
        width: 55%;
    }

    .h-list__wrapper {
        margin-top: 20px;
    }

    .h-list__container {
        padding: 0 16px;
        width: auto;
        margin: 0 -16px;
    }
}

@media screen and (min-width: 992px) {
    .h-list__inner .p-card__images {
        height: 199px;
    }
}

/* topbrands */
.h-topbrands {
    margin-top: 60px;
}

.h-topbrands__head {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

h2.h-topbrands__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
    margin: 0;
    font-family: inherit;
    text-decoration: none!important;
    color: #2c2c2c!important;
}

.h-topbrands__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-topbrands__nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0.08em;
}

.h-topbrands__wrapper {
    margin-top: 32px;
    overflow: hidden;
}

.h-topbrands__inner {
    display: flex;
}

.h-topbrands__col {
    display: flex;
    width: calc(33.33% - 21px);
    flex-shrink: 0;
    gap: 32px;
    flex-direction: column;
}

.h-topbrands__item {
    width: 100%;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.h-topbrands__item-banner {
    width: 100%;
    height: 165px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
}

.h-topbrands__item-info {
    display: flex;
    gap: 12px;
    height: 60px;
    align-items: center;
}

.h-topbrands__item-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.h-topbrands__item-name {
    font-size: 20px;
    line-height: 1em;
    font-weight: 700;
}

@media screen and (max-width: 991px) {
    h2.h-topbrands__title {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0.02em;
    }

    .h-topbrands__nav > * {
        display: none;
    }

    .h-topbrands__nav-link {
        display: block;
        color: #e21b25;
        font-size: 10px;
        line-height: 10px;
    }

    .h-topbrands__wrapper {
        margin: 20px -16px 0;
        padding: 0 16px;
        overflow: hidden;
    }

    .h-topbrands__col {
        display: flex;
        width: auto;
        gap: 24px;
        flex-direction: row;
    }

    .h-topbrands__item {
        width: 200px;
    }

    .h-topbrands__item-banner {
        height: 116px;
    }

    .h-topbrands__item-name {
        font-size: 16px;
        line-height: 18px;
    }
}

/* more */
.h-more {
    margin-top: 60px;
}

h2.h-more__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 32px;
    margin: 0;
    font-family: inherit;
    text-decoration: none!important;
    color: #2c2c2c!important;
}

.h-more__wrapper {
    margin-top: 32px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.h-more__wrapper > * {
    width: calc(25% - 24px);
}

.h-more__btn {
    margin-top: 32px;
    width: 100%;
}

@media screen and (max-width: 991px) {
    h2.h-more__title {
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0.02em;
    }

    .h-more__wrapper {
        margin-top: 20px;
        row-gap: 60px;
        column-gap: 16px;
    }

    .h-more__wrapper > * {
        width: calc(50% - 8px);
    }

    .h-more__btn {
        margin-top: 40px;
    }
}

/* GLOBAL */
.advertising-modal__content {
    border-top: none !important;
}

@media screen and (max-width: 991px) {
    .advertising-modal__content {
        border-radius: 12px;
        padding: 20px 16px;
    }

    .advertising-modal__title {
        text-align: center;
    }

    .advertising-modal__btn {
        font-size: 12px;
        letter-spacing: 0.08em;
        height: 44px;
        border-radius: 4px;
    }

    a:hover {
        color: inherit !important;
    }
}

@media screen and (min-width: 992px) {
    .advertising-modal__content {
        border-radius: 16px;
        padding: 32px;
        width: 493px;
    }

    .advertising-modal__btn {
        font-size: 14px;
        letter-spacing: 0.08em;
        height: 60px;
        border-radius: 8px;
    }
}
