#cmq-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
}

#cmq-popup {
    background: #fff;
    width: 480px;
    max-width: 95%;
    margin: 8% auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

#cmq-close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
}

#cmq-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px,1fr));
    gap: 12px;
}

.cmq-option {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
    cursor: pointer;
}

.cmq-option.active {
    border-color: #000;
}

.cmq-option img {
    width: 100%;
    height: auto;
}

#cmq-next {
    margin-top: 15px;
}
.cmq-open-btn{
       padding: 12px 22px;
    border: 2px solid #009688;
    background: #ffffff;
    color: #009688;
    border-radius: 6px;
    font-weight: 600;
}
.cmq-open-btn:hover {
    background: #009688 !important;
    color: #ffffff !important;
}