.vacation-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(47, 29, 20, 0.45);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.vacation-popup-card {
    width: min(560px, 100%);
    background: #FFF9F1;
    color: #2F1D14;
    border: 1px solid rgba(47, 29, 20, 0.12);
    border-top: 6px solid #C89B3C;
    border-radius: 1.25rem;
    box-shadow: 0 24px 50px -24px rgba(47, 29, 20, 0.45);
    padding: 1.5rem;
}

.vacation-popup-title {
    margin: 0 0 0.65rem 0;
    font-size: 1.8rem;
    line-height: 1.15;
    font-family: "Cormorant Garamond", serif;
    color: #2F1D14;
}

.vacation-popup-text {
    margin: 0;
    color: rgba(47, 29, 20, 0.85);
    line-height: 1.55;
}

.vacation-popup-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.vacation-popup-close {
    border: 0;
    border-radius: 999px;
    background: #C89B3C;
    color: #2F1D14;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.62rem 1rem;
    cursor: pointer;
}

.vacation-popup-close:hover {
    background: #b58a33;
}
