body.fp-crew-tour-open {
    overflow: hidden;
}

.fp-crew-tour {
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.fp-crew-tour.is-active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.fp-crew-tour__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 22, 33, 0.58);
}

.fp-crew-tour__highlight {
    position: fixed;
    border-radius: 16px;
    box-shadow: 0 0 0 9999px rgba(18, 22, 33, 0.58);
    background: transparent;
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, width 0.2s ease, height 0.2s ease;
    z-index: 1;
}

[data-fp-tour].fp-crew-tour-target {
    position: relative;
    z-index: 2;
}

.fp-crew-tour__popover {
    position: fixed;
    z-index: 3;
    max-width: calc(100vw - 24px);
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(88, 68, 130, 0.16);
    box-shadow: 0 18px 48px rgba(24, 28, 40, 0.22);
}

.fp-crew-tour__arrow {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid rgba(88, 68, 130, 0.16);
    transform: rotate(45deg);
    z-index: -1;
}

.fp-crew-tour__popover.is-top .fp-crew-tour__arrow {
    border-bottom: 0;
    border-right: 0;
}

.fp-crew-tour__popover.is-bottom .fp-crew-tour__arrow {
    border-top: 0;
    border-left: 0;
}

.fp-crew-tour__popover.is-center .fp-crew-tour__arrow {
    display: none;
}

.fp-crew-tour__step {
    margin: 0 0 6px;
    font: 600 11px/1.2 Arial, Helvetica, sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a6aa8;
}

.fp-crew-tour__title {
    margin: 0 0 8px;
    font: 700 18px/1.25 Arial, Helvetica, sans-serif;
    color: #1f2430;
}

.fp-crew-tour__text {
    margin: 0 0 16px;
    font: 400 14px/1.5 Arial, Helvetica, sans-serif;
    color: #4f5665;
}

.fp-crew-tour__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.fp-crew-tour__btn {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    font: 600 13px/1.2 Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.fp-crew-tour__btn--ghost {
    background: #f4f5f8;
    color: #4f5665;
}

.fp-crew-tour__btn--ghost:hover,
.fp-crew-tour__btn--ghost:focus-visible {
    background: #e9ebf1;
    outline: none;
}

.fp-crew-tour__btn--primary {
    background: linear-gradient(135deg, #d4a853, #c4933f);
    color: #fff;
    box-shadow: 0 8px 18px rgba(196, 147, 63, 0.28);
}

.fp-crew-tour__btn--primary:hover,
.fp-crew-tour__btn--primary:focus-visible {
    filter: brightness(1.03);
    outline: none;
}

@media (max-width: 767px) {
    body.fp-crew-tour-open {
        overflow: auto;
    }

    .fp-crew-tour__popover {
        left: 12px !important;
        right: 12px;
        width: auto !important;
        max-width: none;
    }

    .fp-crew-tour__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fp-crew-tour__btn {
        width: 100%;
        text-align: center;
    }

    .fp-crew-tour__arrow {
        display: none !important;
    }
}
