.hopreza-absolute-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
.hopreza-absolute-trigger-message {
    display: none;
    position: relative;
    opacity: 0;
    transform: translateY(6px) scale(0.98);
    transition:
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 1rem 1.4rem;
    background: #fff;
    border-radius: 22px 22px 6px 22px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    max-width: min(75vw, 480px);
    border: 2px solid #cba85e;
    white-space: normal;
}
.hopreza-absolute-trigger-message.is-visible {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hopreza-absolute-trigger-logo-container {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    background: #192338;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}
.hopreza-absolute-trigger:hover .hopreza-absolute-trigger-logo-container {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}
.hopreza-absolute-trigger-logo,
.hopreza-absolute-trigger-logo-close {
    display: none !important;
}
.hopreza-absolute-trigger-logo-container::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64%;
    height: 64%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transform: rotate(0) scale(1);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 2v7a2 2 0 0 0 2 2h0V2M10 2v9h0M8 11v11' stroke='%23CBA85E' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M16.5 2.5c-1.5 1.2-3 3.8-3 7.5 0 2.5 1 4.5 3 4.5s3-2 3-4.5c0-3.7-1.5-6.3-3-7.5zM16.5 14v8' stroke='%23CBA85E' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.hopreza-absolute-trigger-logo-container::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 58%;
    height: 58%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transform: rotate(-15deg) scale(0.9);
    transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 6l12 12M18 6L6 18' stroke='%23CBA85E' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.hopreza-absolute-trigger.hopreza-open .hopreza-absolute-trigger-logo-container::before {
    opacity: 0;
    transform: rotate(20deg) scale(0.9);
}
.hopreza-absolute-trigger.hopreza-open .hopreza-absolute-trigger-logo-container::after {
    opacity: 1;
    transform: rotate(0) scale(1);
}
.hopreza-absolute-iframe {
    position: fixed;
    bottom: 9.5rem;
    right: 2rem;
    z-index: 10000;
    display: none;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    transition:
        opacity 0.32s ease,
        transform 0.32s ease;
    width: 90vw;
    height: auto;
    max-width: 1000px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.hopreza-absolute-iframe.is-open {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
    overflow-y: auto;
}
.hopreza-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.hopreza-card-header {
    padding: 0.9rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hopreza-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #111;
}
.hopreza-card-message {
    font-weight: 500;
    font-size: 0.95rem;
    color: #111;
    opacity: 0.9;
}
.iframe-hopreza {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 800px) {
    .hopreza-absolute-iframe {
        top: 1rem;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: calc(100vw - 2rem);
        height: auto;
        max-width: none;
        max-height: 88vh;
        border-radius: 18px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hopreza-absolute-trigger-message,
    .hopreza-absolute-iframe,
    .hopreza-absolute-trigger-logo-container::before,
    .hopreza-absolute-trigger-logo-container::after {
        transition: none !important;
    }
}
