.sdha-reservation-popup {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 999999;
    width: min(286px, calc(100vw - 32px));
    background: #ffffff;
    color: #111b3d;
    border: 1px solid rgba(17, 27, 61, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(17, 27, 61, 0.10);
    font-family: inherit;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.99);
    pointer-events: none;
    transition: opacity 320ms ease, transform 320ms ease;
}

.sdha-reservation-popup.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    pointer-events: auto;
}

.sdha-reservation-popup__inner {
    display: grid;
    grid-template-columns: 1fr 18px;
    gap: 10px;
    align-items: start;
    padding: 14px 14px 13px 15px;
}

.sdha-reservation-popup__content {
    min-width: 0;
}

.sdha-reservation-popup__label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 6px;
    color: #17a990;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
}

.sdha-reservation-popup__label::before {
    content: '';
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #17c6a4;
    box-shadow: 0 0 0 5px rgba(23, 198, 164, 0.10);
}

.sdha-reservation-popup__title {
    margin: 0;
    color: #050A09;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sdha-reservation-popup__meta {
    margin: 1px 0 0;
    color: rgba(17, 27, 61, 0.58);
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sdha-reservation-popup__close {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(17, 27, 61, 0.36);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    width: 18px;
    height: 18px;
}

.sdha-reservation-popup__close:hover,
.sdha-reservation-popup__close:focus {
    color: #111b3d;
}

@media (max-width: 600px) {
    .sdha-reservation-popup {
        left: 14px;
        bottom: 14px;
    }
}
