body.trombini-shop-popup-open {
    overflow: hidden !important;
}

.trombini-shop-popup[hidden] {
    display: none !important;
}

.trombini-shop-popup,
.trombini-shop-popup * {
    box-sizing: border-box;
}

.trombini-shop-popup {
    align-items: center;
    background: rgba(0, 0, 0, .65);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 24px;
    position: fixed;
    transition: opacity .2s ease, visibility .2s ease;
    visibility: hidden;
    z-index: 100000;
}

.trombini-shop-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.trombini-shop-popup__dialog {
    aspect-ratio: 2 / 1;
    background: #f0821e;
    border-radius: 20px;
    color: #fff;
    font-family: "Blinker", sans-serif;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    transform: scale(.98);
    transition: transform .2s ease;
    width: min(1200px, calc(100vw - 48px), calc(200vh - 96px));
}

.trombini-shop-popup.is-visible .trombini-shop-popup__dialog {
    transform: scale(1);
}

.trombini-shop-popup__lines,
.trombini-shop-popup__product,
.trombini-shop-popup__content {
    pointer-events: none;
}

.trombini-shop-popup__lines {
    inset: 0;
    position: absolute;
    z-index: 0;
}

.trombini-shop-popup__line {
    display: block;
    max-width: none;
    object-fit: fill;
    position: absolute;
}

.trombini-shop-popup__line--desktop-left,
.trombini-shop-popup__line--desktop-right {
    height: 122.82%;
    top: -6.33%;
    width: 23.88%;
}

.trombini-shop-popup__line--desktop-left {
    left: 50.5%;
}

.trombini-shop-popup__line--desktop-right {
    left: 70.63%;
}

.trombini-shop-popup__line--mobile-left,
.trombini-shop-popup__line--mobile-right {
    display: none;
}

.trombini-shop-popup__content {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.92vw, 35px);
    left: 6%;
    position: absolute;
    top: 20.33%;
    width: 44%;
    z-index: 2;
}

.trombini-shop-popup__title,
.trombini-shop-popup__body,
.trombini-shop-popup__body p {
    color: #fff;
    font-family: "Blinker", sans-serif;
    margin: 0;
    padding: 0;
}

.trombini-shop-popup__title {
    font-size: clamp(40px, 5.333vw, 64px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.trombini-shop-popup__title strong,
.trombini-shop-popup__title b {
    font-weight: 700;
}

.trombini-shop-popup__body,
.trombini-shop-popup__body p {
    font-size: clamp(16px, 1.667vw, 20px);
    font-weight: 400;
    line-height: 1.4;
}

.trombini-shop-popup__body p + p {
    margin-top: .45em;
}

.trombini-shop-popup__body strong,
.trombini-shop-popup__body b {
    font-weight: 600;
}

.trombini-shop-popup__button {
    align-items: center;
    align-self: flex-start;
    background: #fff;
    border-radius: 29px;
    color: #ee8600;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    height: 46px;
    justify-content: center;
    line-height: 1;
    padding: 0 22px;
    white-space: nowrap;
}

.trombini-shop-popup__product {
    height: 65.34%;
    left: 38.17%;
    position: absolute;
    top: 29.5%;
    width: 59.84%;
    z-index: 1;
}

.trombini-shop-popup__product picture,
.trombini-shop-popup__product img {
    display: block;
    height: 100%;
    width: 100%;
}

.trombini-shop-popup__product img {
    max-width: none;
    object-fit: contain;
}

.trombini-shop-popup__link {
    background: transparent;
    border-radius: inherit;
    inset: 0;
    position: absolute;
    z-index: 3;
}

.trombini-shop-popup__link:focus {
    outline: 3px solid #fff;
    outline-offset: -7px;
}

.trombini-shop-popup__close {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    height: 57px;
    justify-content: center;
    margin: 0;
    padding: 8px;
    position: absolute;
    right: 25px;
    top: 22px;
    width: 57px;
    z-index: 4;
}

.trombini-shop-popup__close img {
    display: block;
    height: 40px;
    max-width: none;
    transform: rotate(45deg);
    width: 40px;
}

.trombini-shop-popup__close:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .trombini-shop-popup {
        padding: 7px;
    }

    .trombini-shop-popup__dialog {
        aspect-ratio: 345 / 600;
        width: min(345px, calc(100vw - 14px), calc(57.5vh - 8.05px));
    }

    .trombini-shop-popup__line--desktop-left,
    .trombini-shop-popup__line--desktop-right {
        display: none;
    }

    .trombini-shop-popup__line--mobile-left,
    .trombini-shop-popup__line--mobile-right {
        display: block;
        height: 57.27%;
        top: 50%;
        width: 38.73%;
    }

    .trombini-shop-popup__line--mobile-left {
        left: 24.77%;
    }

    .trombini-shop-popup__line--mobile-right {
        left: 57.42%;
    }

    .trombini-shop-popup__content {
        align-items: center;
        gap: 18px;
        left: 7%;
        text-align: center;
        top: 9.67%;
        width: 86%;
    }

    .trombini-shop-popup__title {
        font-size: clamp(30px, 11.59vw, 40px);
        max-width: 263px;
    }

    .trombini-shop-popup__body,
    .trombini-shop-popup__body p {
        font-size: clamp(14px, 4.64vw, 16px);
    }

    .trombini-shop-popup__title br,
    .trombini-shop-popup__body br {
        display: none;
    }

    .trombini-shop-popup__button {
        align-self: center;
        font-size: 15px;
        height: 46px;
        padding: 0 23px;
    }

    .trombini-shop-popup__product {
        height: 29.21%;
        left: 3.77%;
        top: 61.83%;
        width: 93.13%;
    }

    .trombini-shop-popup__close {
        height: 33px;
        padding: 5px;
        right: 13px;
        top: 13px;
        width: 33px;
    }

    .trombini-shop-popup__close img {
        height: 23px;
        width: 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trombini-shop-popup,
    .trombini-shop-popup__dialog {
        transition-duration: .01ms;
    }
}
