.product-hero-widget {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: var(--color-white, #ffffff);
    color: var(--color-black, #000000);
}

.product-hero-widget.hero-banner {
    height: 100vh;
    min-height: min(700px, 100vh);
    max-height: none;
    background: var(--color-white, #ffffff);
}

.product-hero-widget .product-hero-widget__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.product-hero-widget .product-hero-widget__media-layer,
.product-hero-widget .product-hero-widget__content {
    grid-area: 1 / 1 / -1 / -1;
}

.product-hero-widget .product-hero-widget__wave {
    position: absolute;
    inset: 0;
    left: 0;
    translate: none;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.product-hero-widget .product-hero-widget__wave > .wave-trigger {
    position: absolute;
    inset: -12% 0 -8%;
    top: auto;
    left: 0;
    translate: none;
    width: 100%;
    height: 120%;
    aspect-ratio: auto;
}

.product-hero-widget .product-hero-widget__wave .wave-curtains-container {
    z-index: 0 !important;
}

.product-hero-widget .product-hero-widget__media-layer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 120px clamp(32px, 8vw, 180px) 210px;
    pointer-events: none;
}

.product-hero-widget .product-hero-widget__media {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    max-width: min(42vw, 680px);
    opacity: 0.18;
}

.product-hero-widget .product-hero-widget__media:nth-child(odd) {
    transform: rotate(-7deg) translateY(16px);
}

.product-hero-widget .product-hero-widget__media:nth-child(even) {
    transform: rotate(3deg) translateY(10px);
}

.product-hero-widget .product-hero-widget__media img,
.product-hero-widget .product-hero-widget__media video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(50vh, 520px);
    object-fit: contain;
}

.product-hero-widget .product-hero-widget__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0px 24px 210px;
    pointer-events: none;
}

.product-hero-widget .product-hero-widget__content .custom-title {
    width: fit-content;
    max-width: min(1060px, calc(100vw - 48px));
    padding: 0;
    margin-bottom: 200px;
    color: var(--color-black, #000000);
    pointer-events: auto;
}


.product-hero-widget .scroll-mouse {
    --scroll-mouse-color: #000000;
    position: absolute;
    z-index: 4;
    top: auto;
    bottom: 205px;
    left: 50%;
    transform: translateX(-50%);
}

.product-hero-widget .product-hero-widget__datas {
    position: absolute;
    z-index: 4;
    left: 50%;
    right: auto;
    bottom: 56px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: min(760px, calc(100vw - 48px));
    max-width: none;
    margin: 0;
    padding: 0;
}

.product-hero-widget .product-hero-widget__datas-item {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0 40px;
    color: var(--color-black, #000000);
    font-family: var(--font-text, var(--font-primary, sans-serif));
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    text-align: center;
    text-shadow: none;
    white-space: normal;
}

.product-hero-widget .product-hero-widget__datas-divider {
    display: block;
    width: 1px;
    height: 39px;
    flex: 0 0 auto;
    background: var(--color-primary, #E2001A);
    opacity: 1;
}

@media (max-width: 1200px) {
    .product-hero-widget .product-hero-widget__media-layer {
        padding-inline: clamp(24px, 5vw, 96px);
    }

}

@media (max-width: 900px) {
    .product-hero-widget .product-hero-widget__media-layer {
        gap: 0;
        padding: 96px 24px 220px;
    }

    .product-hero-widget .product-hero-widget__media {
        max-width: 58vw;
    }

    /*.product-hero-widget .product-hero-widget__media:nth-child(n + 3) {
        display: none;
    }*/

    .product-hero-widget .product-hero-widget__content {
        padding: 0px 24px 220px;
    }

    .product-hero-widget .product-hero-widget__datas {
        bottom: 36px;
        flex-direction: column;
        gap: 9px;
        width: min(420px, calc(100vw - 48px));
    }

    .product-hero-widget .product-hero-widget__datas-item {
        padding: 0;
        font-size: 15px;
        line-height: 1.45;
    }

    .product-hero-widget .product-hero-widget__datas-divider {
        width: 40px;
        height: 1px;
    }

    .product-hero-widget .scroll-mouse {
        display: none;
    }
}

@media (max-width: 640px) {
    .product-hero-widget.hero-banner {
        min-height: min(560px, 100svh);
    }

    .product-hero-widget .product-hero-widget__media-layer {
        flex-direction: row;
        justify-content: center;
        padding: 88px 0 190px;
    }

    .product-hero-widget .product-hero-widget__media {
        max-width: 82vw;
    }

    .product-hero-widget .product-hero-widget__media:nth-child(n + 2) {
        /*display: none;*/
    }

    .product-hero-widget .product-hero-widget__media img,
    .product-hero-widget .product-hero-widget__media video {
        max-height: 34vh;
    }

    .product-hero-widget .product-hero-widget__content {
        padding: 40px 20px 190px;
    }
}
