.onexway-voucher-form-wrap {
    width: 100%;
}

.voucher-form-view {
    display: block;
    width: 100%;
    max-height: calc(66vh - 8px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    min-height: 0;
}

.onexway-voucher-form {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: 26px 28px 22px;
    box-sizing: border-box;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(9, 36, 66, 0.08);
    font-family: 'Afacad Flux', Arial, sans-serif;
}

.onexway-voucher-form__title {
    margin: 0 auto 12px;
    color: #ff7a00;
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.16;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    max-width: 860px;
}

.onexway-voucher-form__subtitle {
    margin: -2px auto 18px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.45;
    text-align: center;
    max-width: 720px;
}

.onexway-voucher-form__notice {
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.onexway-voucher-form__notice--success {
    border: 1px solid rgba(25, 200, 119, 0.28);
    background: rgba(25, 200, 119, 0.12);
    color: #0a7a47;
}

.onexway-voucher-form__notice--error {
    border: 1px solid rgba(255, 88, 88, 0.24);
    background: rgba(255, 88, 88, 0.1);
    color: #b42318;
}

.onexway-voucher-form__form {
    width: 100%;
}

.onexway-voucher-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 14px;
}

.onexway-voucher-form__field {
    min-width: 0;
}

.onexway-voucher-form__field--full {
    grid-column: 1 / -1;
}

.onexway-voucher-form__field label,
.onexway-voucher-form__checkbox-title {
    display: block;
    margin: 0 0 8px;
    color: #202124;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.onexway-voucher-form__field label span {
    color: #ff0000;
}

.onexway-voucher-form input[type="text"],
.onexway-voucher-form input[type="email"],
.onexway-voucher-form input[type="tel"],
.onexway-voucher-form select {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #c9c9c9;
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.2;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.onexway-voucher-form input::placeholder {
    color: #a8a8a8;
    opacity: 1;
}

.onexway-voucher-form input:focus,
.onexway-voucher-form select:focus {
    outline: none;
    border-color: #ff8500;
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.12);
}

.onexway-voucher-form__checkbox-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 2px 0 2px 2px;
}

.onexway-voucher-form__checkbox {
    position: relative;
    display: block;
    min-height: 24px;
    padding-left: 34px;
    margin: 0;
    color: #202124;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
    cursor: pointer;
}

.onexway-voucher-form__checkbox-box {
    position: absolute;
    left: 0;
    top: 1px;
    display: block;
    width: 22px;
    height: 22px;
}

.onexway-voucher-form__checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
}

.onexway-voucher-form__checkbox-text {
    display: inline;
    min-width: 0;
    padding-top: 0;
    white-space: normal;
    color: #111111 !important;
}

.onexway-voucher-form__actions {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
}

.onexway-voucher-form__cancel,
.onexway-voucher-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-height: 40px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    box-sizing: border-box;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.onexway-voucher-form__cancel {
    min-width: 120px;
    border: 1px solid #cfcfcf;
    background: #fff;
    color: #9a9a9a;
    align-self: stretch;
}

.onexway-voucher-form__submit {
    min-width: 280px;
    border: 0;
    background: linear-gradient(90deg, #ff9d32 0%, #ff7a00 100%);
    color: #fff;
    box-shadow: 0 14px 26px rgba(255, 122, 0, 0.22);
    align-self: stretch;
}

.onexway-voucher-form__cancel:hover,
.onexway-voucher-form__submit:hover {
    transform: translateY(-1px);
}

.onexway-voucher-form__submit:hover {
    box-shadow: 0 16px 30px rgba(255, 122, 0, 0.28);
}

@media (max-width: 849px) {
    .voucher-form-view {
        max-height: calc(66vh - 12px);
    }

    .onexway-voucher-form {
        width: 100%;
        padding: 22px 18px 18px;
        border-radius: 20px;
    }

    .onexway-voucher-form__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .onexway-voucher-form__title {
        margin-bottom: 10px;
        font-size: clamp(20px, 4.8vw, 26px);
    }

    .onexway-voucher-form__subtitle {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .onexway-voucher-form__field label,
    .onexway-voucher-form__checkbox-title {
        font-size: 15px;
    }

    .onexway-voucher-form input[type="text"],
    .onexway-voucher-form input[type="email"],
    .onexway-voucher-form input[type="tel"],
    .onexway-voucher-form select {
        height: 40px;
        padding: 0 14px;
        border-radius: 12px;
        font-size: 14px;
    }

    .onexway-voucher-form__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 18px;
    }

    .onexway-voucher-form__cancel,
    .onexway-voucher-form__submit {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }
}

@media (max-width: 549px) {
    #voucher-popup.lightbox-content {
        max-width: calc(100vw - 20px);
        max-height: calc(100dvh - 20px);
        overflow: hidden;
    }

    .voucher-form-view {
        max-height: calc(100dvh - 32px);
    }

    .onexway-voucher-form {
        width: 100%;
        padding: 16px 12px 14px;
        border-radius: 14px;
    }

    .voucher-form-view {
        max-height: calc(100dvh - 32px);
    }

    .onexway-voucher-form__title {
        margin-bottom: 8px;
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.12;
    }

    .onexway-voucher-form__subtitle {
        margin-bottom: 14px;
        font-size: 13px;
    }

    .onexway-voucher-form__notice {
        margin-bottom: 14px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .onexway-voucher-form__checkbox {
        padding-left: 30px;
        font-size: 14px;
    }

    .onexway-voucher-form__checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }

    .onexway-voucher-form__checkbox-box {
        width: 18px;
        height: 18px;
    }

    .onexway-voucher-form__actions {
        margin-top: 16px;
    }
}
