.nk-home-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
}

.nk-home-hero .home-slider-4,
.nk-home-hero .owl-stage-outer,
.nk-home-hero .owl-stage,
.nk-home-hero .owl-item,
.nk-home-hero__slide {
    width: 100%;
}

.nk-home-hero__slide {
    position: relative;
    overflow: hidden;
}

.nk-home-hero__slide::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: rgba(0, 0, 0, 0.34);
    pointer-events: none;
}

.nk-home-hero .home-slider-4 .owl-stage-outer {
    height: auto;
    border-radius: 0;
}

.nk-home-hero .owl-carousel .owl-item img {
    width: 100%;
    max-height: none;
    display: block;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: left center;
}

.nk-home-hero__copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px clamp(48px, 8vw, 106px);
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.nk-home-hero__copy strong {
    margin: 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(35px, 5vw, 70px);
    font-weight: 700;
    line-height: 1.05;
}

.nk-home-hero__copy p {
    margin: 6px 0 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(17px, 2vw, 28px);
    line-height: 1.35;
}

.nk-home-hero__copy a {
    min-width: 210px;
    margin-top: 19px;
    padding: 14px 26px;
    color: #fff;
    background: #050505;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
    pointer-events: auto;
}

.nk-home-hero__copy a:hover,
.nk-home-hero__copy a:focus {
    color: #111;
    background: #fff;
    text-decoration: none;
}

.nk-home-hero .home-slider-4 .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin: 0;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.nk-home-hero .home-slider-4 .owl-nav div {
    position: absolute;
    top: 0;
    width: 64px;
    height: 72px;
    margin: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 30px;
    line-height: 72px;
    text-align: center;
    transform: translateY(-50%);
    transition: color 0.2s ease, background-color 0.2s ease;
    pointer-events: auto;
}

.nk-home-hero .home-slider-4 .owl-nav div i {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
}

.nk-home-hero .home-slider-4 .owl-nav div i::before {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
}

.nk-home-hero .home-slider-4 .owl-nav .owl-prev i::before {
    content: "\2039";
}

.nk-home-hero .home-slider-4 .owl-nav .owl-next i::before {
    content: "\203A";
}

.nk-home-hero .home-slider-4 .owl-nav div:hover,
.nk-home-hero .home-slider-4 .owl-nav div:focus {
    color: #fff;
    background: rgba(0, 0, 0, 0.18);
}

.nk-home-hero .home-slider-4 .owl-nav .owl-prev {
    left: clamp(8px, 2vw, 38px);
}

.nk-home-hero .home-slider-4 .owl-nav .owl-next {
    right: clamp(8px, 2vw, 38px);
}

.nk-category-showcase {
    width: min(1840px, calc(100vw - 64px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: clamp(22px, 2.5vw, 38px) auto clamp(14px, 2vw, 28px);
}

.nk-category-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto minmax(70px, auto);
    overflow: hidden;
    color: #111;
    background: #fff;
    box-shadow: 0 3px 12px rgba(17, 17, 17, 0.14);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nk-category-card:hover,
.nk-category-card:focus {
    color: #111;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.18);
    text-decoration: none;
    transform: translateY(-3px);
}

.nk-category-card__image {
    width: 100%;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.17 / 1;
    background: #f3f3f3;
}

.nk-category-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.nk-category-card:hover .nk-category-card__image img,
.nk-category-card:focus .nk-category-card__image img {
    transform: scale(1.025);
}

.nk-category-card--brand .nk-category-card__image img {
    object-position: center;
}

.nk-category-card > strong {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 16px 12px;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 1.6vw, 30px);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.nk-whats-new {
    padding: clamp(24px, 3vw, 44px) 0 clamp(20px, 2.5vw, 36px);
    overflow: hidden;
    background: #fff;
}

.nk-whats-new__inner {
    width: min(1880px, calc(100vw - 64px));
    margin: 0 auto;
}

.nk-whats-new h2 {
    margin: 0 0 clamp(24px, 3vw, 40px);
    color: #090909;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(27px, 4vw, 41px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.nk-whats-new__carousel {
    position: relative;
}

.nk-whats-new__item {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.nk-whats-new__image {
    width: 100%;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f4f4f4;
}

.nk-whats-new__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.nk-whats-new__item:hover .nk-whats-new__image img,
.nk-whats-new__image:focus img {
    transform: scale(1.025);
}

.nk-whats-new__add {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    width: 66px;
    height: 66px;
    padding: 0 0 5px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(108, 108, 108, 0.76);
    box-shadow: none;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.nk-whats-new__add:hover,
.nk-whats-new__add:focus-visible {
    color: #fff;
    background: #111;
    transform: scale(1.06);
}

.nk-whats-new__add:focus-visible,
.nk-whats-new__image:focus-visible,
.nk-whats-new__more:focus-visible {
    outline: 3px solid #111;
    outline-offset: 4px;
}

.nk-whats-new .owl-nav {
    position: absolute;
    top: 50%;
    left: -30px;
    width: calc(100% + 60px);
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.nk-whats-new .owl-carousel .owl-nav div {
    position: absolute;
    top: 0;
    width: 44px;
    height: 68px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #111;
    background: transparent;
    box-shadow: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 46px;
    line-height: 64px;
    text-align: center;
    pointer-events: auto;
    transform: translateY(-50%);
}

.nk-whats-new .owl-carousel .owl-nav div:hover,
.nk-whats-new .owl-carousel .owl-nav div:focus {
    color: #111;
    background: rgba(255, 255, 255, 0.78);
}

.nk-whats-new .owl-nav .owl-prev {
    left: 0;
}

.nk-whats-new .owl-nav .owl-next {
    right: 0;
}

.nk-whats-new__more {
    min-width: 210px;
    display: table;
    margin: clamp(26px, 3vw, 42px) auto 0;
    padding: 15px 30px;
    color: #fff !important;
    background: #0b0b0b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.nk-whats-new__more:visited {
    color: #fff !important;
    background: #0b0b0b;
}

.nk-whats-new__more:hover,
.nk-whats-new__more:focus,
.nk-whats-new__more:visited:hover,
.nk-whats-new__more:visited:focus {
    color: #fff !important;
    background: #343434;
    text-decoration: none;
}

.nk-home-all-products {
    padding: clamp(20px, 2.5vw, 36px) 0 clamp(62px, 6vw, 96px);
    background: #fff;
}

.nk-home-all-products__inner {
    width: min(1900px, calc(100vw - 56px));
    margin: 0 auto;
}

.nk-home-all-products h2 {
    margin: 0 0 24px;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .nk-category-showcase {
        width: calc(100vw - 40px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 620px) {
    .nk-home-hero .owl-carousel .owl-item img {
        aspect-ratio: 4 / 3;
    }

    .nk-home-hero .home-slider-4 .owl-nav div {
        width: 42px;
        height: 56px;
        font-size: 23px;
        line-height: 56px;
    }

    .nk-home-hero__copy {
        padding: 0 16px 28px;
    }

    .nk-home-hero__copy strong {
        font-size: 32px;
    }

    .nk-home-hero__copy p {
        font-size: 16px;
    }

    .nk-home-hero__copy a {
        min-width: 160px;
        margin-top: 14px;
        padding: 11px 20px;
        font-size: 12px;
    }

    .nk-category-showcase {
        width: calc(100vw - 24px);
        gap: 12px;
        margin-block: 18px 12px;
    }

    .nk-category-card {
        grid-template-rows: auto minmax(54px, auto);
    }

    .nk-category-card > strong {
        padding: 10px 8px;
        font-size: 13px;
    }

    .nk-whats-new {
        padding: 26px 0 28px;
    }

    .nk-whats-new__inner {
        width: calc(100vw - 30px);
    }

    .nk-whats-new h2 {
        margin-bottom: 22px;
    }

    .nk-whats-new__add {
        left: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
        padding-bottom: 3px;
        font-size: 34px;
    }

    .nk-whats-new .owl-nav {
        left: -14px;
        width: calc(100% + 28px);
    }

    .nk-whats-new .owl-carousel .owl-nav div {
        width: 30px;
        font-size: 34px;
    }

    .nk-whats-new__more {
        min-width: 168px;
        margin-top: 24px;
        padding: 12px 22px;
        font-size: 12px;
    }

    .nk-home-all-products {
        padding: 22px 0 56px;
    }

    .nk-home-all-products__inner {
        width: calc(100vw - 24px);
    }

    .nk-home-all-products h2 {
        margin-bottom: 18px;
        font-size: 23px;
    }
}
