.fashion-hero {
    position: relative;
    margin-bottom: 12px;
}

.fashion-hero-carousel,
.fashion-hero-slide,
.fashion-hero-media {
    min-height: min(88vh, 840px);
}

.fashion-hero-media {
    display: flex;
    align-items: center;
    background-color: var(--clr-gray-800);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fashion-hero-layout {
    width: 100%;
    padding-top: 112px;
    padding-bottom: 88px;
}

.fashion-hero-panel {
    max-width: 620px;
    padding: 32px 34px;
    color: var(--clr-white);
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.24) 0%, rgba(15, 15, 15, 0.54) 100%);
    border: 1px solid rgba(250, 250, 248, 0.16);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(15, 15, 15, 0.2);
}

.fashion-hero-eyebrow {
    margin: 0;
    color: rgba(250, 250, 248, 0.78);
    font-size: var(--fs-13);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.fashion-hero-title {
    margin: 16px 0 18px;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.94;
}

.fashion-hero-copy {
    max-width: 520px;
    margin: 0;
    color: rgba(250, 250, 248, 0.86);
    font-size: clamp(1rem, 1.5vw, var(--fs-18));
    line-height: 1.75;
}

.fashion-hero-actions {
    margin-top: 28px;
}

.fashion-hero-indicators {
    bottom: 26px;
    left: 50%;
    right: auto;
    margin: 0;
    transform: translateX(-50%);
    gap: 10px;
}

.fashion-hero-indicators [data-bs-target] {
    width: 42px;
    height: 4px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background-color: rgba(250, 250, 248, 0.34);
    opacity: 1;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.fashion-hero-indicators .active {
    background-color: var(--clr-white);
    transform: scaleX(1.08);
}

.fashion-hero-control {
    width: auto;
    opacity: 1;
    top: auto;
    bottom: 24px;
}

.fashion-hero-control.carousel-control-prev {
    left: auto;
    right: calc(50% + 108px);
}

.fashion-hero-control.carousel-control-next {
    left: calc(50% + 108px);
    right: auto;
}

.fashion-hero-control-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(250, 250, 248, 0.22);
    background: rgba(15, 15, 15, 0.26);
    backdrop-filter: blur(8px);
    transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.fashion-hero-control:hover .fashion-hero-control-icon {
    background: rgba(15, 15, 15, 0.42);
    border-color: rgba(250, 250, 248, 0.38);
    transform: translateY(-1px);
}

.fashion-hero-control .carousel-control-prev-icon,
.fashion-hero-control .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
}

.fashion-hero-slide .fashion-hero-panel > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fashion-hero-slide.is-visible .fashion-hero-panel > * {
    opacity: 1;
    transform: translateY(0);
}

.fashion-hero-slide.is-visible .fashion-hero-title {
    transition-delay: 0.1s;
}

.fashion-hero-slide.is-visible .fashion-hero-copy {
    transition-delay: 0.18s;
}

.fashion-hero-slide.is-visible .fashion-hero-actions {
    transition-delay: 0.26s;
}

@media (max-width: 991.98px) {
    .fashion-hero-carousel,
    .fashion-hero-slide,
    .fashion-hero-media {
        min-height: 74vh;
    }

    .fashion-hero-layout {
        padding-top: 96px;
        padding-bottom: 92px;
    }

    .fashion-hero-panel {
        max-width: 560px;
        padding: 28px;
    }

    .fashion-hero-title {
        font-size: clamp(2.7rem, 8vw, 4.4rem);
    }
}

@media (max-width: 767.98px) {
    .fashion-hero-media {
        align-items: flex-end;
    }

    .fashion-hero-layout {
        padding-top: 88px;
        padding-bottom: 84px;
    }

    .fashion-hero-panel {
        max-width: none;
        margin: 0 auto;
        padding: 24px 22px;
        text-align: center;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.34) 0%, rgba(15, 15, 15, 0.62) 100%);
    }

    .fashion-hero-copy {
        max-width: none;
    }

    .fashion-hero-actions {
        display: flex;
        justify-content: center;
    }

    .fashion-hero-control {
        display: none;
    }

    .fashion-hero-indicators {
        bottom: 18px;
    }

    .fashion-hero-indicators [data-bs-target] {
        width: 28px;
    }
}

@media (max-width: 575.98px) {
    .fashion-hero-carousel,
    .fashion-hero-slide,
    .fashion-hero-media {
        min-height: 82vh;
    }

    .fashion-hero-layout {
        padding-top: 82px;
        padding-bottom: 72px;
    }

    .fashion-hero-panel {
        padding: 22px 18px;
    }

    .fashion-hero-title {
        margin: 12px 0 14px;
        font-size: clamp(2.35rem, 12vw, 3.4rem);
        line-height: 0.98;
    }

    .fashion-hero-copy {
        font-size: var(--fs-15);
        line-height: 1.7;
    }
}
