/* SMS abonelikten çıkış */
.sms-unsub-page {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    overflow-x: hidden;
    padding-bottom: 72px;
}

.sms-unsub-wrap {
    position: relative;
    z-index: 2;
    margin-top: -56px;
    padding: 0 16px 0;
}

.sms-unsub-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 24px 64px rgba(17, 17, 17, 0.1);
    overflow: hidden;
}

.sms-unsub-card__head {
    padding: 28px 28px 0;
    text-align: center;
}

.sms-unsub-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: #ca1515;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.sms-unsub-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.sms-unsub-card__desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}

.sms-unsub-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 28px 0;
}

.sms-unsub-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa;
}

.sms-unsub-step__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    background: #fff;
}

.sms-unsub-step.is-active {
    color: #111;
}

.sms-unsub-step.is-active .sms-unsub-step__dot {
    border-color: #ca1515;
    background: #ca1515;
    color: #fff;
}

.sms-unsub-step.is-done {
    color: #2e7d32;
}

.sms-unsub-step.is-done .sms-unsub-step__dot {
    border-color: #2e7d32;
    background: #2e7d32;
    color: #fff;
}

.sms-unsub-step__line {
    width: 36px;
    height: 2px;
    background: #e8e8e8;
    border-radius: 1px;
}

.sms-unsub-step__line.is-done {
    background: #2e7d32;
}

.sms-unsub-card__body {
    padding: 28px;
}

.sms-unsub-alert {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.86rem;
    margin-bottom: 18px;
}

.sms-unsub-alert.is-success {
    background: #f0faf3;
    border: 1px solid #b8e0c4;
    color: #1b5e20;
}

.sms-unsub-alert.is-info {
    background: #f4f9ff;
    border: 1px solid #b8d4f0;
    color: #0d47a1;
}

.sms-unsub-alert.is-error {
    background: #fff5f5;
    border: 1px solid #f0c4c4;
    color: #b71c1c;
}

.sms-unsub-form__group {
    margin-bottom: 18px;
}

.sms-unsub-form__group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.sms-unsub-form__group label span {
    color: #ca1515;
}

.sms-unsub-field {
    position: relative;
}

.sms-unsub-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ca1515;
    font-size: 15px;
    pointer-events: none;
}

.sms-unsub-form__input {
    width: 100%;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 14px 14px 14px 42px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sms-unsub-form__input:focus {
    outline: none;
    border-color: #ca1515;
    box-shadow: 0 0 0 3px rgba(202, 21, 21, 0.12);
}

.sms-unsub-form__input.is-invalid {
    border-color: #dc3545;
}

.sms-unsub-form__input--otp {
    padding-left: 14px;
    text-align: center;
    letter-spacing: 0.35em;
    font-size: 1.35rem;
    font-weight: 700;
}

.sms-unsub-form__hint {
    font-size: 0.78rem;
    color: #888;
    margin-top: 8px;
    line-height: 1.5;
}

.sms-unsub-form__error {
    font-size: 0.78rem;
    color: #dc3545;
    margin-top: 6px;
}

.sms-unsub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.sms-unsub-btn--primary {
    background: linear-gradient(135deg, #111 0%, #ca1515 120%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(202, 21, 21, 0.25);
}

.sms-unsub-btn--primary:hover {
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 14px 32px rgba(202, 21, 21, 0.32);
}

.sms-unsub-btn--ghost {
    background: #f5f5f5;
    color: #444;
}

.sms-unsub-btn--ghost:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.sms-unsub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.sms-unsub-actions .sms-unsub-btn--ghost {
    flex: 1;
    min-width: 140px;
}

.sms-unsub-actions .sms-unsub-btn--primary {
    flex: 1.4;
    min-width: 160px;
}

.sms-unsub-phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f8f8f8;
    border: 1px solid #ececec;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 18px;
}

.sms-unsub-phone-badge i {
    color: #ca1515;
}

.sms-unsub-success {
    text-align: center;
    padding: 12px 0 4px;
}

.sms-unsub-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.sms-unsub-success h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.sms-unsub-success p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

.sms-unsub-notes {
    max-width: 720px;
    margin: 32px auto 0;
    padding: 0 16px;
}

.sms-unsub-notes__box {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 20px 22px;
}

.sms-unsub-notes__box h4 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.sms-unsub-notes__box ul {
    margin: 0;
    padding-left: 18px;
    color: #666;
    font-size: 0.84rem;
    line-height: 1.7;
}

.sms-unsub-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ca1515;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.88rem;
}

.sms-unsub-link:hover {
    color: #111;
}

@media (max-width: 575.98px) {
    .sms-unsub-card__head,
    .sms-unsub-card__body,
    .sms-unsub-steps {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sms-unsub-step__label {
        display: none;
    }

    .sms-unsub-actions {
        flex-direction: column;
    }

    .sms-unsub-actions .sms-unsub-btn {
        width: 100%;
        flex: none;
    }
}
