/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://rheearoses.ro
 Description:  Hello Elementor Child Theme
 Author:       Rheea Roses
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* ── Fix Elementor theme builder placeholder leaking onto live site ── */
.elementor-theme-builder-content-area {
    display: none !important;
}

/* ── Modal popup overlay ── */

.modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal-wrapper.open {
    display: flex;
}

.modal {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal .head {
    margin-bottom: 10px;
}

.modal .content .title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.modal .datepicker-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.modal .datepicker-wrapper input#datepicker {
    display: none;
}

.modal .modal-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.modal .btn-wrapper {
    margin-top: 20px;
    text-align: center;
}

.modal .btn-wrapper .cky-btn-accept {
    background-color: #F2C4CE;
    color: #333;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.modal .btn-wrapper .cky-btn-accept:disabled {
    background-color: #f7dde3;
    cursor: not-allowed;
}

.modal .btn-wrapper .cky-btn-accept:not(:disabled):hover {
    background-color: #e8a0b0;
}
