/* =====================================================================
   Mailjet Newsletter – Frontend styles
   Minimalistický dizajn: transparentné pozadie, biele texty, vľavo
   ===================================================================== */

/* ── Wrapper ──────────────────────────────────────────────────────────── */
.mjn-form-wrap {
    max-width: 480px;
    margin: 0;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
    background: transparent;
}

/* ── Podnadpis ────────────────────────────────────────────────────────── */
.mjn-form-subtitle {
    margin: 0 0 20px !important;
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.35 !important;
}

/* ── Meno pole (ak show_name=yes) ─────────────────────────────────────── */
.mjn-field {
    margin-bottom: 10px;
}

/* ── Email + tlačidlo v rade ──────────────────────────────────────────── */
.mjn-field-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.mjn-input {
    width: 100%;
    padding: 12px 16px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12) !important;
    outline: none;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.mjn-input::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
}

.mjn-input:focus {
    border-color: rgba(255, 255, 255, 0.75) !important;
    background: rgba(255, 255, 255, 0.18) !important;
}

.mjn-input-email {
    flex: 1;
    min-width: 0;
}

/* ── Tlačidlo – šípka ─────────────────────────────────────────────────── */
.mjn-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex-shrink: 0;
    padding: 0;
    background: #4F694B;
    color: #fff;
    border: none;
    border-radius: 10px !important;
    font-size: 20px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.mjn-btn:hover {
    background: #3d5339;
}

.mjn-btn:active {
    transform: scale(.96);
}

.mjn-btn:disabled,
.mjn-btn[disabled] {
    opacity: .38 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
}

/* ── CSS-only guard: ak GDPR checkbox existuje a NIE je zaškrtnutý,
      tlačidlo vyzerá disabled. Funguje aj bez JS / s Elementor cache. ── */
.mjn-form:has([name="mjn_gdpr"][required]:not(:checked)) .mjn-btn {
    opacity: .38 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Skryj textový span – zobrazujeme len šípku/loader */
.mjn-btn-text {
    display: none;
}

/* Šípka cez CSS – → */
.mjn-btn::after {
    content: '→';
    font-size: 20px;
    line-height: 1;
}

.mjn-btn.mjn-loading::after {
    display: none;
}

/* ── Loader spinner ───────────────────────────────────────────────────── */
.mjn-btn-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mjn-spin .7s linear infinite;
}

.mjn-btn.mjn-loading .mjn-btn-loader {
    display: inline-block;
}

@keyframes mjn-spin {
    to { transform: rotate(360deg); }
}

/* ── GDPR checkbox ────────────────────────────────────────────────────── */
.mjn-gdpr-wrap {
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mjn-gdpr-checkbox {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #4F694B;
    cursor: pointer;
}

.mjn-gdpr-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    cursor: pointer;
}

.mjn-gdpr-label a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.mjn-gdpr-label a:hover {
    color: #fff;
}

/* ── Turnstile wrap ───────────────────────────────────────────────────── */
.mjn-turnstile-wrap {
    margin-top: 10px;
}

/* ── Správy ───────────────────────────────────────────────────────────── */
.mjn-message {
    margin-top: 10px;
    min-height: 18px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    padding: 0;
    transition: all .25s;
}

.mjn-message.mjn-success {
    color: #d4edda;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
}

.mjn-message.mjn-error {
    color: #ffd5d5;
    background: rgba(255, 0, 0, 0.15);
    padding: 8px 12px;
}

/* ── Meno input (voliteľné pole) ──────────────────────────────────────── */
.mjn-field:not(.mjn-field-row) .mjn-input {
    border-radius: 6px !important;
}

/* ── Responzivita ─────────────────────────────────────────────────────── */
@media (max-width: 400px) {
    .mjn-field-row {
        flex-direction: column;
    }

    .mjn-btn {
        width: 100%;
        height: 46px;
    }
}
