/* ===== NOMIO CHECKOUT ===== */
.nomio-checkout {
    max-width: 560px;
    margin: 0 auto;
}

.nc-header {
    margin-bottom: 32px;
}

.nc-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.nc-plan-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.nc-plan-label strong {
    color: #8b5cf6;
}

/* Form */
.nc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nc-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.nc-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
}

.nc-field input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(255,255,255,0.1);
}

.nc-field input::placeholder {
    color: rgba(255,255,255,0.35);
}

.nc-submit {
    margin-top: 12px;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    text-align: center;
}

/* iyzico embedded form */
.nc-iyzico-form {
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    min-height: 300px;
}

/* Success / Error states */
.nc-success, .nc-error {
    text-align: center;
    padding: 40px 20px;
}

.nc-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c3fc5, #3b82f6);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.nc-success h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.nc-success p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.nc-error h2 {
    color: #ef4444;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.nc-error p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .nc-row {
        grid-template-columns: 1fr;
    }
}
