.ce-consultar-btn {
    cursor: pointer;
}

.ce-inquiry-modal[hidden] {
    display: none;
}

.ce-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ce-inquiry-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ce-inquiry-modal__box {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 2em;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ce-inquiry-modal__close {
    position: absolute;
    top: 0.5em;
    right: 0.75em;
    background: none;
    border: none;
    font-size: 1.8em;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.ce-inquiry-modal__product-name {
    font-weight: 700;
}

.ce-inquiry-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.ce-inquiry-form__field {
    margin-bottom: 1em;
}

.ce-inquiry-form__field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35em;
}

.ce-inquiry-form__field input,
.ce-inquiry-form__field textarea {
    width: 100%;
    padding: 0.6em 0.75em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font: inherit;
}

.ce-inquiry-form__response {
    margin: 1em 0;
    font-weight: 600;
}

.ce-inquiry-form__response.is-success { color: #2e7d32; }
.ce-inquiry-form__response.is-error { color: #c62828; }

.ce-inquiry-form__submit {
    padding: 0.7em 1.6em;
    border: none;
    border-radius: 4px;
    background: #2e7d32;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.ce-inquiry-form__submit:disabled {
    opacity: 0.6;
    cursor: default;
}

body.ce-inquiry-modal-open {
    overflow: hidden;
}
