.z5royspot {
    --z5royspot-width: 390px;
    --z5royspot-offset-x: 28px;
    --z5royspot-offset-bottom: 28px;
    --z5royspot-image-height: 158px;
    --z5royspot-image-x: 50%;
    --z5royspot-image-y: 40%;
    --z5royspot-duration: 650ms;
    --z5royspot-bg: #111111;
    --z5royspot-heading: #ffffff;
    --z5royspot-text: #b8b8b8;
    --z5royspot-accent: #d12229;
    --z5royspot-premium: #c7aa78;
    --z5royspot-status: #88b66b;
    --z5royspot-overlay: rgba(0, 0, 0, .16);
    --z5royspot-button-bg: #ffffff;
    --z5royspot-button-color: #111111;
    --z5royspot-button-hover-bg: #d12229;
    --z5royspot-button-hover-color: #ffffff;
    --z5royspot-z-index: 9990;
    position: fixed;
    z-index: var(--z5royspot-z-index);
    bottom: calc(var(--z5royspot-offset-bottom) + env(safe-area-inset-bottom, 0px));
    width: min(var(--z5royspot-width), calc(100vw - (var(--z5royspot-offset-x) * 2)));
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 26px, 0);
    transform-origin: bottom center;
    transition:
        opacity calc(var(--z5royspot-duration) * .72) ease,
        visibility 0s linear var(--z5royspot-duration),
        transform var(--z5royspot-duration) cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
    box-sizing: border-box;
}

.z5royspot--right { right: var(--z5royspot-offset-x); }
.z5royspot--left { left: var(--z5royspot-offset-x); }

.z5royspot--theme-light {
    --z5royspot-bg: #f3f1ed;
    --z5royspot-heading: #111111;
    --z5royspot-text: #5f5f5f;
    --z5royspot-button-bg: #111111;
    --z5royspot-button-color: #ffffff;
}

.z5royspot--motion-side.z5royspot--right { transform: translate3d(36px, 0, 0); }
.z5royspot--motion-side.z5royspot--left { transform: translate3d(-36px, 0, 0); }
.z5royspot--motion-scale { transform: translate3d(0, 10px, 0) scale(.94); }
.z5royspot--motion-fade,
.z5royspot--motion-none { transform: none; }

.z5royspot.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
}

.z5royspot.is-dismissing {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(0, 18px, 0) scale(.98);
}

.z5royspot.is-device-hidden,
.z5royspot.is-dismissed {
    display: none !important;
}

.z5royspot,
.z5royspot *,
.z5royspot *::before,
.z5royspot *::after {
    box-sizing: border-box;
}

.z5royspot__card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    background: var(--z5royspot-bg);
    color: var(--z5royspot-heading);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28), 0 4px 18px rgba(0, 0, 0, .14);
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
}

.z5royspot__preview-badge {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 999px;
    background: #ffffff;
    color: #221f20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.z5royspot__preview-badge i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--z5royspot-accent);
}

.z5royspot--theme-light .z5royspot__card {
    border-color: rgba(17, 17, 17, .11);
    box-shadow: 0 24px 70px rgba(32, 24, 18, .16), 0 4px 18px rgba(32, 24, 18, .08);
}

.z5royspot__card::after {
    content: '';
    position: absolute;
    z-index: 4;
    top: 0;
    left: 22px;
    width: 58px;
    height: 2px;
    background: linear-gradient(90deg, var(--z5royspot-premium), transparent);
    pointer-events: none;
}

.z5royspot__media {
    position: relative;
    height: var(--z5royspot-image-height);
    min-height: 0;
    overflow: hidden;
    background: #292929;
}

.z5royspot__media picture,
.z5royspot__media img,
.z5royspot__media-overlay {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.z5royspot__media img {
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: var(--z5royspot-image-x) var(--z5royspot-image-y) !important;
    transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.z5royspot__media-overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 38%, rgba(0, 0, 0, .34) 100%),
        var(--z5royspot-overlay);
    pointer-events: none;
}

.z5royspot--image-zoom .z5royspot__card:hover .z5royspot__media img {
    transform: scale(1.035);
}

.z5royspot__signature {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 12px;
    color: rgba(255, 255, 255, .82);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .18em;
}

.z5royspot__signature::before {
    content: '';
    position: absolute;
    right: calc(100% + 8px);
    top: 50%;
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: .65;
}

.z5royspot__close {
    position: absolute;
    z-index: 8;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(8, 8, 8, .55);
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.z5royspot__close span {
    position: absolute;
    width: 13px;
    height: 1.5px;
    border-radius: 4px;
    background: currentColor;
}

.z5royspot__close span:first-child { transform: rotate(45deg); }
.z5royspot__close span:last-child { transform: rotate(-45deg); }

.z5royspot__close:hover,
.z5royspot__close:focus-visible {
    border-color: rgba(255, 255, 255, .56) !important;
    background: var(--z5royspot-accent) !important;
    color: #ffffff !important;
    transform: rotate(4deg);
}

.z5royspot__close:focus-visible,
.z5royspot__cta:focus-visible {
    outline: 2px solid var(--z5royspot-premium);
    outline-offset: 3px;
}

.z5royspot__content {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px;
}

.z5royspot__eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    margin: 0 0 11px;
    color: var(--z5royspot-premium);
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .14em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.z5royspot__eyebrow > span {
    flex: 0 0 auto;
    width: 18px;
    height: 1px;
    background: currentColor;
}

.z5royspot__heading {
    margin: 0;
    color: var(--z5royspot-heading);
    font-family: inherit;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.z5royspot__description {
    margin: 11px 0 0;
    color: var(--z5royspot-text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.48;
    overflow-wrap: anywhere;
}

.z5royspot__availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--z5royspot-text);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.z5royspot__availability > span {
    position: relative;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--z5royspot-status);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--z5royspot-status) 18%, transparent);
}

@supports not (color: color-mix(in srgb, red, blue)) {
    .z5royspot__availability > span { box-shadow: 0 0 0 4px rgba(136, 182, 107, .18); }
}

.z5royspot .z5royspot__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 48px;
    margin: 18px 0 0;
    padding: 12px 14px 12px 16px;
    border: 0 !important;
    border-radius: 999px;
    background: var(--z5royspot-button-bg) !important;
	background-image: none !important;
    color: var(--z5royspot-button-color) !important;
	box-shadow: none !important;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none !important;
    overflow-wrap: anywhere;
    transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.z5royspot .z5royspot__cta:hover,
.z5royspot .z5royspot__cta:focus-visible {
    border: 0 !important;
    background: var(--z5royspot-button-hover-bg) !important;
	background-image: none !important;
    color: var(--z5royspot-button-hover-color) !important;
	box-shadow: none !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.z5royspot__cta-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
    transition: transform 300ms cubic-bezier(.22, 1, .36, 1);
}

.z5royspot__cta-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 250ms ease;
}

.z5royspot__cta:hover .z5royspot__cta-icon,
.z5royspot__cta:focus-visible .z5royspot__cta-icon {
    transform: translateX(3px);
}

@media (min-width: 1025px) {
    .z5royspot[data-show-desktop="false"]:not(.z5royspot--preview) { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .z5royspot[data-show-tablet="false"]:not(.z5royspot--preview) { display: none !important; }
}

@media (max-width: 767px) {
    .z5royspot {
        --z5royspot-offset-x: 16px;
        --z5royspot-offset-bottom: 16px;
        width: calc(100vw - (var(--z5royspot-offset-x) * 2));
        max-width: none;
    }

    .z5royspot[data-show-mobile="false"]:not(.z5royspot--preview) { display: none !important; }

    .z5royspot__preview-badge {
        right: 0;
        bottom: calc(100% + 8px);
        padding: 7px 11px;
        font-size: 10px;
    }

    .z5royspot--mobile-compact .z5royspot__card {
        display: grid;
        grid-template-columns: clamp(96px, 29vw, 124px) minmax(0, 1fr);
        align-items: stretch;
    }

    .z5royspot--mobile-compact .z5royspot__media {
        width: 100%;
        height: 100%;
        min-height: var(--z5royspot-image-height);
    }

    .z5royspot--mobile-compact .z5royspot__media img {
        object-position: var(--z5royspot-image-x) var(--z5royspot-image-y) !important;
    }

    .z5royspot--mobile-compact .z5royspot__signature { display: none; }

    .z5royspot--mobile-compact .z5royspot__close {
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
    }

    .z5royspot--mobile-compact .z5royspot__content {
        justify-content: center;
        padding-right: 42px;
    }

    .z5royspot--mobile-compact .z5royspot__eyebrow {
        gap: 6px;
        margin-bottom: 7px;
        font-size: 8px;
        letter-spacing: .11em;
    }

    .z5royspot--mobile-compact .z5royspot__eyebrow > span { width: 12px; }

    .z5royspot--mobile-compact .z5royspot__heading {
        font-size: clamp(19px, 5.7vw, 24px);
        line-height: 1.02;
    }

    .z5royspot--mobile-compact .z5royspot__description { display: none; }

    .z5royspot--mobile-compact .z5royspot__availability {
        gap: 6px;
        margin-top: 8px;
        font-size: 9px;
    }

    .z5royspot--mobile-compact .z5royspot__availability > span {
        width: 6px;
        height: 6px;
        box-shadow: none;
    }

    .z5royspot--mobile-compact .z5royspot__cta {
        min-height: 38px;
        margin-top: 10px;
        padding: 7px 8px 7px 12px;
        font-size: 10px;
    }

    .z5royspot--mobile-compact .z5royspot__cta-icon { width: 20px; height: 20px; }

    .z5royspot--mobile-compact .z5royspot__cta-icon svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 390px) {
    .z5royspot--mobile-compact .z5royspot__card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .z5royspot--mobile-compact .z5royspot__availability { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .z5royspot,
    .z5royspot *,
    .z5royspot *::before,
    .z5royspot *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .z5royspot { transform: none !important; }
    .z5royspot--image-zoom .z5royspot__card:hover .z5royspot__media img { transform: none; }
}
