@keyframes slideshow-progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.slideshow .button {
    word-break: break-word;
    white-space: normal;
}

.slideshow .carousel__track {
    overflow-y: hidden;
}

.slideshow__item {
    position: relative;
    width: 100%;
}

a.slideshow__image-link {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.slideshow__image {
    position: relative;
    width: var(--slideshow-image-width);
    height: var(--slideshow-image-height);
    aspect-ratio: var(--desktop-aspect-ratio);
}

.slideshow__image--mobile,
.slideshow__image--desktop {
    position: relative;
    z-index: 1;
    width: 100%;
}

.slideshow__image--mobile img,
.slideshow__image--desktop img {
    object-position: var(--slideshow-image-position);
}

.slideshow__image--mobile img,
.slideshow__image--mobile svg,
.slideshow__image--desktop img,
.slideshow__image--desktop svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow__image--mobile {
    display: none;
}

.slideshow__image--desktop {
    display: block;
    height: var(--desktop-height);
}

.slideshow__image-container {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    z-index: 3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.slideshow__image-mask {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0,
            0,
            0,
            calc(var(--slideshow-image-mask-opacity) / 100));
    transform: translate(-50%, -50%);
}

.slideshow__group {
    position: relative;
    z-index: 3;
}

.slideshow__group>* {
    pointer-events: auto;
}

.slideshow__pager {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 50%;
    z-index: 3;
    display: flex;
    gap: 6px;
    align-items: center;
    transform: translate(-50%, 0);
}

.slideshow__pager--dots {
    inset-block-end: 20px;
}

.slideshow__pager--dot {
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    background-color: #fff;
    border: 0;
    border-radius: 50%;
    opacity: 0.4;
    transition: opacity, width, height, 0.3s;
}

.slideshow__pager--dot.is-active {
    width: 10px;
    height: 10px;
    opacity: 1;
}

.slideshow__pager--progresses {
    gap: 10px;
}

.slideshow__pager--progress {
    display: block;
    width: 120px;
    height: 6px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background-color: rgb(255 255 255 / 50%);
    border: 0;
}

.slideshow__pager--progress.is-active {
    opacity: 1;
}

.slideshow__pager--progress.is-active .slideshow__pager--progress-inner {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: slideshow-progress var(--slideshow-speed, 0s) linear forwards;
}

.slideshow__pager--progress.is-active .slideshow__pager--progress-inner-static {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.slideshow__pager--arrows {
    inset-block-end: 20px;
    inset-inline: auto 40px;
    width: fit-content;
}

.slideshow__pager--arrow {
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
    background-color: #fff;
    filter: drop-shadow(0 4px 10px rgb(0 0 0 / 15%));
    border: 0;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.slideshow__pager--arrow:hover,
.slideshow__pager--arrow:focus-visible,
.slideshow__pager--arrow:active {
    background-color: #ebebeb;
}

.slideshow__pager--arrow[name="previous"] {
    transform: rotate(90deg);
}

.slideshow__pager--arrow[name="next"] {
    transform: rotate(-90deg);
}

.slideshow__autoplay-icon {
    display: block;
}

.slideshow__autoplay {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 50%;
}

.slideshow__autoplay--progress {
    position: absolute;
    inset-block-end: 20px;
    inset-inline-start: 40px;
    z-index: 3;
    width: 48px;
    height: 48px;
    background: rgb(255 255 255 / 10%);
    transition: background-color 0.2s;
}

.slideshow__autoplay--progress:hover,
.slideshow__autoplay--progress:focus-visible {
    background: rgb(255 255 255 / 20%);
}

.slideshow__autoplay--progress:active {
    background: rgb(255 255 255 / 10%);
}

.slideshow__autoplay--progress .slideshow__autoplay-icon {
    width: 18px;
    height: 18px;
}

.slideshow__autoplay--arrow {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 10px rgb(0 0 0 / 15%));
}

.slideshow__autoplay--dot {
    width: 24px;
    height: 24px;
    color: rgb(255 255 255 / 60%);
    border-radius: 0;
}

.slideshow__autoplay--dot:hover,
.slideshow__autoplay--dot:focus-visible {
    color: #fff;
}

.slideshow__autoplay--dot .slideshow__autoplay-icon {
    width: 14px;
    height: 14px;
}

.slideshow__autoplay[data-state="playing"] .slideshow__autoplay-icon {
    background: linear-gradient(90deg,
            currentcolor 0 35%,
            transparent 35% 65%,
            currentcolor 65% 100%);
}

.slideshow__autoplay[data-state="paused"] .slideshow__autoplay-icon {
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: currentcolor;
}

.slideshow__image-text-mask {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    display: block;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.slideshow__image-text-mask-deep {
    background: radial-gradient(77.64% 77.64% at 50% 50%,
            rgb(0 0 0 / 30%) 59.64%,
            rgb(0 0 0 / 0%) 100%);
    filter: blur(120px);
    border-radius: 50%;
}

.slideshow__image-text-mask-light {
    background: radial-gradient(77.64% 77.64% at 50% 50%,
            rgb(255 255 255 / 30%) 59.64%,
            rgb(255 255 255 / 0%) 100%);
    filter: blur(120px);
    border-radius: 50%;
}

@media (max-width: 959px) {
    .slideshow--overlap-text .slideshow__pager--progress {
        background-color: rgb(0 0 0 / 40%);
    }

    .slideshow--overlap-text .slideshow__pager--progress.is-active .slideshow__pager--progress-inner {
        background-color: rgb(0 0 0);
    }

    .slideshow--overlap-text .slideshow__pager--dot {
        background-color: rgb(0 0 0 / 40%);
    }

    .slideshow--overlap-text .slideshow__image-container {
        position: unset;
        inset-block-start: 0;
        inset-inline-start: 0;
        width: calc(100vw - 40px);
        height: auto;
        margin: auto;
        margin-block: -46px 50px;
        transform: unset;
    }

    .slideshow--overlap-text .slideshow__image-container .slideshow__group {
        background-color: var(--text-background-color);
    }

    .slideshow--text-below .slideshow__image-container {
        position: unset;
        inset-block-start: 0;
        inset-inline-start: 0;
        width: auto;
        height: auto;
        transform: unset;
    }

    .slideshow--text-below .slideshow__image-container .slideshow__group {
        background-color: var(--text-background-color);
    }

    .slideshow__image {
        aspect-ratio: var(--mobile-aspect-ratio);
    }

    .slideshow__image--mobile {
        display: block;
        height: var(--mobile-height);
    }

    .slideshow__image--desktop {
        display: none;
    }

    .slideshow__pager--progress {
        width: 60px;
    }

    .slideshow__pager--arrows {
        inset-block-end: 30px;
        inset-inline: auto 30px;
    }

    .slideshow__pager--arrow {
        width: 32px;
        height: 32px;
    }

    .slideshow__pager--arrow svg {
        width: 10px;
        height: 10px;
    }

    .slideshow__autoplay--progress {
        inset-block-end: 20px;
        inset-inline-start: 20px;
        width: 36px;
        height: 36px;
    }

    .slideshow__autoplay--progress .slideshow__autoplay-icon {
        width: 14px;
        height: 14px;
    }

    .slideshow__autoplay--arrow {
        width: 32px;
        height: 32px;
    }

    .slideshow__autoplay--dot {
        width: 20px;
        height: 20px;
    }

    .slideshow__autoplay--dot .slideshow__autoplay-icon {
        width: 12px;
        height: 12px;
    }
}

/* HRONA Home Hero V1 — scoped to the first homepage slideshow only */
#shopline-section-template--index__slideshow .slideshow {
    position: relative;
    max-width: none;
    overflow: hidden;
    background: #1b1d22;
}

#shopline-section-template--index__slideshow .slideshow__image-container {
    position: absolute;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 28%, #575b60 0%, #30343a 34%, #1b1d22 62%, #0d1012 100%);
}

#shopline-section-template--index__slideshow .slideshow__image-container::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(90deg, rgb(13 16 18 / 72%) 0%, rgb(13 16 18 / 30%) 43%, rgb(13 16 18 / 8%) 78%),
        linear-gradient(0deg, rgb(13 16 18 / 45%) 0%, transparent 48%);
}

#shopline-section-template--index__slideshow .slideshow__image-container img,
#shopline-section-template--index__slideshow .slideshow__image-container picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#shopline-section-template--index__slideshow .slideshow__group {
    z-index: 1;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    width: 100%;
    max-width: none;
    padding: 40px !important;
    gap: 8px !important;
    color: #ffffff;
}

#shopline-section-template--index__slideshow .slideshow__group>.block-text,
#shopline-section-template--index__slideshow .slideshow__group>.block-heading {
    width: 100%;
    max-width: 440px;
    color: #ffffff;
    text-align: start !important;
}

#shopline-section-template--index__slideshow .slideshow__group>.block-text:first-child {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

#shopline-section-template--index__slideshow .slideshow__group>.block-heading {
    margin: 2px 0 0;
    font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

#shopline-section-template--index__slideshow .slideshow__group>.block-heading+.block-text,
#shopline-section-template--index__slideshow .slideshow__group>.block-heading+.hidden-mobile+.block-text {
    max-width: 420px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

#shopline-section-template--index__slideshow .block-button-group {
    align-self: flex-start;
    justify-content: flex-start !important;
    width: auto !important;
    padding-block-start: 10px;
    gap: 8px !important;
}

#shopline-section-template--index__slideshow .block-button-group .button {
    min-width: 132px;
    min-height: 52px;
    padding: 16px 24px;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

#shopline-section-template--index__slideshow .block-button-group .button--secondary {
    color: #0d1012;
    background: #ffffff;
}

#shopline-section-template--index__slideshow .block-button-group .button:not(.button--secondary) {
    color: #ffffff;
    background: transparent;
}

@media (hover: hover) and (pointer: fine) {
    #shopline-section-template--index__slideshow .block-button-group .button--secondary:hover {
        color: #ffffff;
        background: #0d1012;
        border-color: #0d1012;
    }

    #shopline-section-template--index__slideshow .block-button-group .button:not(.button--secondary):hover {
        color: #0d1012;
        background: #ffffff;
    }
}

@media (max-width: 959px) {
    #shopline-section-template--index__slideshow theme-carousel {
        --mobile-height: 563px !important;
    }

    #shopline-section-template--index__slideshow .carousel__track,
    #shopline-section-template--index__slideshow .slideshow__item,
    #shopline-section-template--index__slideshow .slideshow__image-container {
        height: 563px !important;
        min-height: 563px;
    }

    #shopline-section-template--index__slideshow .slideshow__image-container {
        background:
            radial-gradient(circle at 58% 22%, #575b60 0%, #30343a 38%, #1b1d22 68%, #0d1012 100%);
    }

    #shopline-section-template--index__slideshow .slideshow__image-container img,
    #shopline-section-template--index__slideshow .slideshow__image-container picture {
        object-position: 58% center;
    }

    #shopline-section-template--index__slideshow .slideshow__image-container::after {
        background: linear-gradient(0deg, rgb(13 16 18 / 72%) 0%, rgb(13 16 18 / 18%) 58%, transparent 82%);
    }

    #shopline-section-template--index__slideshow .slideshow__group {
        justify-content: flex-end !important;
        min-height: 563px;
        padding: 32px 16px 16px !important;
        gap: 8px !important;
    }

    #shopline-section-template--index__slideshow .slideshow__group>.block-text,
    #shopline-section-template--index__slideshow .slideshow__group>.block-heading {
        width: 100%;
        max-width: 343px;
    }

    #shopline-section-template--index__slideshow .slideshow__group>.block-heading {
        font-size: 32px;
        line-height: 0.9;
        letter-spacing: -0.025em;
    }

    #shopline-section-template--index__slideshow .slideshow__group>.block-heading+.block-text,
    #shopline-section-template--index__slideshow .slideshow__group>.block-heading+.hidden-mobile+.block-text {
        max-width: 343px;
        font-size: 14px;
    }

    #shopline-section-template--index__slideshow .block-button-group {
        flex-wrap: nowrap;
        width: 100% !important;
        max-width: 343px;
        padding-block-start: 8px;
    }

    #shopline-section-template--index__slideshow .block-button-group .button {
        flex: 0 1 auto;
        min-width: 0;
        min-height: 52px;
        padding: 16px 22px;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    #shopline-section-template--index__slideshow .block-button-group .button {
        transition-duration: 0.01ms !important;
    }
}

#shopline-section-template--index__slideshow .slideshow__group>.block-text:nth-child(2) {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* HRONA Homepage Final Visual Calibration — DEV theme only */
@media (min-width: 960px) {
    #shopline-section-template--index__slideshow theme-carousel {
        --desktop-height: 590px !important;
    }

    #shopline-section-template--index__slideshow .carousel__track,
    #shopline-section-template--index__slideshow .slideshow__item,
    #shopline-section-template--index__slideshow .slideshow__image-container {
        height: 590px !important;
        min-height: 590px;
    }

    #shopline-section-template--index__hrona-campaign-carousel .hc-shell,
    #shopline-section-template--index__hrona-favorites-category .hf-shell,
    #shopline-section-template--index__hrona-running-product-carousel .page-width,
    #shopline-section-template--index__hrona-popular-now .hp-shell,
    #shopline-section-template--index__hrona-seo-category-links .hscl-shell {
        width: 100%;
        max-width: 1600px !important;
        padding-inline: 24px !important;
        margin-inline: auto;
        box-sizing: border-box;
    }

    #shopline-section-template--index__hrona-campaign-carousel .hrona-campaign,
    #shopline-section-template--index__hrona-favorites-category .hrona-favorites,
    #shopline-section-template--index__hrona-popular-now .hrona-popular-now {
        padding-block: 64px 72px !important;
    }

    #shopline-section-template--index__hrona-running-product-carousel .section-featured-collection .page-width>div {
        padding-block: 64px 72px !important;
        gap: 24px !important;
    }

    #shopline-section-template--index__hrona-campaign-carousel .hc-head {
        margin-block-end: 24px !important;
    }

    #shopline-section-template--index__hrona-favorites-category header {
        margin-block-end: 20px !important;
    }

    #shopline-section-template--index__hrona-favorites-category .hf-tabs,
    #shopline-section-template--index__hrona-popular-now .hp-tabs {
        margin-block-end: 24px !important;
    }

    #shopline-section-template--index__hrona-popular-now header {
        margin-block-end: 20px !important;
    }
}

#shopline-section-template--index__hrona-seo-category-links .hrona-seo-links {
    padding-block: 64px 72px !important;
}

#shopline-section-template--index__hrona-seo-category-links .hscl-copy {
    padding-block-start: 40px !important;
}

#shopline-section-template--index__hrona-seo-category-links .hscl-copy>h1 {
    max-width: 760px !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin-block-end: 16px !important;
}

#shopline-section-template--index__hrona-seo-category-links .hscl-copy>h2 {
    max-width: 960px;
    font-size: 15px !important;
    line-height: 1.3 !important;
    margin-block: 24px 8px !important;
}

#shopline-section-template--index__hrona-seo-category-links .hscl-copy>p {
    max-width: 960px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-block: 0 8px !important;
}

@media (max-width: 959px) {

    #shopline-section-template--index__hrona-campaign-carousel .hrona-campaign,
    #shopline-section-template--index__hrona-favorites-category .hrona-favorites,
    #shopline-section-template--index__hrona-popular-now .hrona-popular-now {
        padding-block: 40px 48px !important;
    }

    #shopline-section-template--index__hrona-running-product-carousel .section-featured-collection .page-width>div {
        padding-block: 40px 48px !important;
        gap: 20px !important;
    }

    #shopline-section-template--index__hrona-seo-category-links .hrona-seo-links {
        padding-block: 48px 56px !important;
    }

    #shopline-section-template--index__hrona-seo-category-links .hscl-copy {
        padding-block-start: 32px !important;
    }

    #shopline-section-template--index__hrona-seo-category-links .hscl-copy>h1 {
        max-width: 100% !important;
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    #shopline-section-template--index__hrona-seo-category-links .hscl-copy>h2 {
        max-width: 100%;
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin-block: 22px 8px !important;
    }

    #shopline-section-template--index__hrona-seo-category-links .hscl-copy>p {
        max-width: 100% !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
    }
}