html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.kimoshoes-hero-wrap {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #000;
}

.kimoshoes-hero-slider,
.kimoshoes-hero-slider .swiper-wrapper,
.kimoshoes-hero-slide {
    width: 100%;
    height: 100%;
}

.kimoshoes-hero-slide {
    position: relative;
    overflow: hidden;
}

.kimoshoes-hero-slide picture,
.kimoshoes-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.kimoshoes-hero-slide img {
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.kimoshoes-hero-slide.swiper-slide-active img {
    transform: scale(1.08);
}

.kimoshoes-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.kimoshoes-hero-content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 12%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 920px;
    color: #fff;
    text-align: left;
}

.kimoshoes-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(60px, 7vw, 110px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
    text-transform: none;
}

.kimoshoes-hero-subtitle {
    margin: 28px 0 0;
    color: #fff;
    font-size: clamp(24px, 2.2vw, 36px);
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

.kimoshoes-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 42px;
    min-width: 260px;
    height: 82px;
    padding: 0 36px;
    border: 3px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}

.kimoshoes-hero-button:hover {
    background: #fff;
    color: #000;
}

.kimoshoes-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
}

.kimoshoes-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
}

.kimoshoes-progress span.is-animating {
    animation: kimoshoes-progress 5.2s linear forwards;
}

@keyframes kimoshoes-progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .kimoshoes-hero-content {
        left: 7%;
        max-width: 820px;
    }

    .kimoshoes-hero-content h1 {
        font-size: clamp(54px, 8vw, 92px);
    }
}

@media (max-width: 767px) {
    .kimoshoes-hero-wrap {
        height: 85vh;
    }

    .kimoshoes-hero-content {
        left: 24px;
        right: 24px;
        top: 52%;
        max-width: none;
    }

    .kimoshoes-hero-content h1 {
        font-size: clamp(42px, 14vw, 66px);
        line-height: 1.05;
    }

    .kimoshoes-hero-subtitle {
        margin-top: 20px;
        font-size: 20px;
        line-height: 1.4;
    }

    .kimoshoes-hero-button {
        margin-top: 30px;
        height: 58px;
        min-width: 190px;
        padding: 0 24px;
        font-size: 20px;
        border-width: 2px;
    }
}