body.has-promotion-modal { overflow: hidden; }
.promotion-modal[hidden] { display: none; }
.promotion-modal {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: grid;
    place-items: center;
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}
.promotion-modal__backdrop { position: absolute; inset: 0; background: rgba(3, 15, 25, .68); }
.promotion-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 88vw);
    max-height: calc(100dvh - 32px);
    outline: 0;
    animation: promotion-dialog-in .22s ease-out both;
}
.promotion-modal__slides,
.promotion-modal__slide { min-height: 0; height: auto; }
.promotion-modal__image { display: block; min-height: 0; height: auto; max-height: calc(100dvh - 32px); overflow: hidden; background: transparent; line-height: 0; }
.promotion-modal__image img { display: block; width: 100%; height: auto; max-height: calc(100dvh - 32px); object-fit: contain; }
.promotion-modal__close,
.promotion-modal__arrow {
    display: grid;
    place-items: center;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .82);
    background: #111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.promotion-modal__close { position: absolute; z-index: 3; top: 8px; right: 8px; box-sizing: border-box; display: grid; flex: 0 0 28px; width: 28px; min-width: 28px; height: 28px; min-height: 28px; padding: 0; aspect-ratio: 1; border-radius: 50%; }
.promotion-modal__close svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.promotion-modal__arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.promotion-modal__close:focus-visible,
.promotion-modal__arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (hover: hover) {
    .promotion-modal__close:hover,
    .promotion-modal__arrow:hover { border-color: #e30613; background: #e30613; }
}
.promotion-modal__navigation { position: absolute; z-index: 2; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.promotion-modal__arrow { box-sizing: border-box; flex: 0 0 28px; width: 28px; min-width: 28px; height: 28px; min-height: 28px; padding: 0; aspect-ratio: 1; border-radius: 50%; pointer-events: auto; }
.promotion-modal__arrow[data-promotion-previous] { transform: translateX(-62px); }
.promotion-modal__arrow[data-promotion-next] { transform: translateX(62px); }
.promotion-modal__dots { position: absolute; bottom: 14px; left: 50%; display: flex; align-items: center; gap: 7px; padding: 0; background: transparent; transform: translateX(-50%); pointer-events: auto; }
.promotion-modal__dots button { box-sizing: border-box; flex: 0 0 10px; width: 10px; min-width: 10px; min-height: 10px; height: 10px; padding: 0; appearance: none; border: 1px solid rgba(255, 255, 255, .9); border-radius: 50%; background: rgba(255, 255, 255, .68); cursor: pointer; }
.promotion-modal__dots button[aria-selected="true"] { flex-basis: 24px; width: 24px; min-width: 24px; min-height: 10px; height: 10px; border-color: #fff; border-radius: 99px; background: #e30613; }
.promotion-modal__dots button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
@keyframes promotion-dialog-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 760px) {
    .promotion-modal__dialog { width: min(86vw, 390px); }
    .promotion-modal__image,
    .promotion-modal__image img { max-height: 64dvh; }
    .promotion-modal__arrow { flex-basis: 28px; width: 28px; min-width: 28px; height: 28px; min-height: 28px; }
    .promotion-modal__arrow[data-promotion-previous] { transform: translateX(-8px); }
    .promotion-modal__arrow[data-promotion-next] { transform: translateX(8px); }
}
@media (prefers-reduced-motion: reduce) { .promotion-modal__dialog { animation: none; } }
