/* Cross-brand ad sticky: no logo, sponsored look, warm accent CTA */

.sticky-cross {
    position: fixed;
    left: 50%;
    bottom: 14px;
    z-index: 1000;
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: min(900px, calc(100% - 24px));
    min-height: 52px;
    padding: 10px 48px 10px 14px;
    background: linear-gradient(135deg, #1a1428 0%, #120d1c 55%, #0b0812 100%);
    border: 1px solid rgba(255, 196, 92, 0.22);
    border-radius: 14px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform: translate(-50%, 140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
    box-sizing: border-box;
}

.sticky-cross.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cross__close {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.sticky-cross__close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.sticky-cross__main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}

.sticky-cross__ad-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    background: rgba(255, 196, 92, 0.14);
    border: 1px solid rgba(255, 196, 92, 0.35);
    color: #ffc45c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sticky-cross__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.sticky-cross__headline {
    margin: 0;
    color: #fff8eb;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.sticky-cross__legal {
    margin: 0;
    color: rgba(255, 248, 235, 0.45);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sticky-cross__cta-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 4px;
}

.sticky-cross__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 20px;
    background: linear-gradient(180deg, #ffb347 0%, #ff8c1a 100%);
    color: #1a0f00 !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(255, 140, 26, 0.35);
    white-space: nowrap;
}

.sticky-cross__cta:hover {
    background: linear-gradient(180deg, #ffc266 0%, #ff9a2e 100%);
    color: #1a0f00 !important;
}

@media (max-width: 640px) {
    .sticky-cross {
        left: 50%;
        right: auto;
        width: min(440px, calc(100% - 20px));
        transform: translate(-50%, 140%);
        flex-wrap: wrap;
        padding: 10px 14px 12px 14px;
        gap: 10px;
    }

    .sticky-cross.is-visible {
        transform: translate(-50%, 0);
    }

    .sticky-cross__main {
        flex: 1 1 100%;
        min-width: 0;
        padding-right: 36px;
    }

    .sticky-cross__headline {
        font-size: 14px;
    }

    .sticky-cross__cta-wrap {
        flex: 1 1 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
    }

    .sticky-cross__cta {
        width: auto;
        min-width: 7.5rem;
        min-height: 42px;
        padding: 0 28px;
    }
}
