/* ============================================================
   BLOCK 1: Main form CSS — .fth-* classes, :root CSS vars
   (plugin.php lines 3331–4454)
   ============================================================ */

            :root {
                --fth-bg: #f3eef2;
                --fth-panel: #ffffff;
                --fth-panel-soft: #fbfbfd;
                --fth-panel-grad: linear-gradient(180deg, #ffffff 0%, #fafbfd 58%, #f7f8fb 100%);
                --fth-text: #23314f;
                --fth-muted: #768198;
                --fth-line: #e3e6ec;
                --fth-line-strong: #d5dbe5;

                --fth-orange: #e46211;
                --fth-orange-dark: #d9761d;
                --fth-navy: #000000;
                --fth-navy-dark: #1d2d4d;
                --fth-teal: #1f7a75;
                --fth-teal-dark: #18645f;
                --fth-green: #57a36f;
                --fth-green-dark: #237167;
                --fth-wa: #59c983;

                --fth-shadow: 0 10px 28px rgba(35, 49, 79, .07);
                --fth-shadow-soft: 0 6px 18px rgba(35, 49, 79, .06);
                --fth-shadow-card: 0 8px 18px rgba(35, 49, 79, .05);
                --fth-radius-lg: 18px;
                --fth-radius-md: 14px;
                --fth-radius-sm: 10px;
            }

            .fth-wrap {
                font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
                max-width: 1180px;
                margin: 34px auto 0;
                color: var(--fth-text);
                line-height: 1.45;
                -webkit-font-smoothing: antialiased;
            }

            .fth-header {
                text-align: center;
                padding: 18px 20px 22px;
            }

            .fth-header h2 {
                font-size: 26px;
                font-weight: 600;
                color: var(--fth-navy);
                margin: 0 0 5px;
                letter-spacing: -.4px;
            }

            .fth-header p {
                font-size: 15px;
                color: #0c0c0c;
                margin: 0 auto;
                max-width: 760px;
            }

            .fth-header .fth-sub {
                margin-top: 5px;
                font-size: 16px;
                color: #878787;
                font-weight: 300;
            }

            .fth-master {
                background: var(--fth-panel-grad);
                border: 1px solid var(--fth-line);
                border-radius: 18px 18px 0px 0px;
                box-shadow: var(--fth-shadow);
                overflow: hidden;
            }

            .fth-stepper-shell {
                border-bottom: 3px solid var(--fth-line);
                background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
                padding: 14px 22px;
            }

            .fth-stepper {
                display: flex;
                align-items: center;
                gap: 15px;
                flex-wrap: wrap;
            }

            .fth-step-item {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 16px;
                font-weight: 700;
                color: #5f6c85;
                white-space: nowrap;
            }

            .fth-step-item.active {
                color: var(--fth-navy)
            }

            .fth-step-item.done {
                color: var(--fth-orange)
            }

            .fth-step-num {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-weight: 800;
                border: 2px solid #d8dee8;
                background: #fff;
                color: #8a94a8;
                flex-shrink: 0;
                box-shadow: 0 2px 5px rgba(35, 49, 79, .04);
            }

            .fth-step-item.active .fth-step-num {
                border-color: #8fc3bd;
                color: #fff;
                background: var(--fth-teal);
                box-shadow: 0 0 0 5px rgba(31, 122, 117, .10);
            }

            .fth-step-item.done .fth-step-num {
                border-color: #f1bd8f;
                color: #fff;
                background: var(--fth-orange);
            }

            .fth-step-arrow {
                color: #b5bdcb;
                font-size: 40px;
                margin: 0 1px;
                line-height: 1;
            }

            .fth-inner {
                padding: 22px 22px 18px;
                display: grid;
                grid-template-columns: minmax(0, 1fr) 340px;
                gap: 22px;
                align-items: start;
            }

            .fth-content-grid {
                display: grid;
                grid-template-columns: minmax(0, 1fr) 340px;
                gap: 18px;
                align-items: start;
            }

            .fth-block {
                margin-bottom: 18px;
            }

            .fth-block:last-child {
                margin-bottom: 0
            }

            .fth-block-title {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 16px;
                font-weight: 600;
                color: #000000;
                margin: 0 0 12px;
                padding: 0 2px 0;
            }

            .fth-block-title::after {
                content: '';
                flex: 1;
                height: 1px;
                background: var(--fth-line);
            }

            .fth-block-badge {
                width: 28px;
                height: 27px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 16px;
                font-weight: 600;
                color: #fff;
                background: var(--fth-teal);
                flex-shrink: 0;
                box-shadow: 0 4px 12px rgba(31, 122, 117, .18);
            }

            .fth-block-title.orange .fth-block-badge {
                background: var(--fth-orange);
                box-shadow: 0 4px 12px rgba(234, 133, 39, .18);
            }

            .fth-block-title.gold .fth-block-badge {
                background: #d5d9df;
                color: #59657d;
                box-shadow: none
            }

            .fth-products-grid {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 12px;
            }

            .fth-product-card {
                position: relative;
                background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
                border: 2.8px solid #d9e0ea;
                border-radius: 6px;
                padding: 0px 14px 12px;
                cursor: pointer;
                transition: .22s ease;
                min-height: 126px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                box-shadow: var(--fth-shadow-card);
            }

            .fth-product-card:hover {
                transform: translateY(-2px);
                border-color: #b9c8dc;
                box-shadow: 0 10px 22px rgba(35, 49, 79, .08);
            }

            .fth-product-card.selected {
                border-color: #36679b;
                box-shadow: 0 12px 24px rgba(54, 103, 155, .12);
                background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
            }

            .fth-product-radio {
                position: absolute;
                top: 10px;
                right: 10px;
                width: 16px;
                height: 16px;
                border-radius: 50%;
                border: 1.8px solid #c7cfdb;
                background: #fff;
                box-shadow: 0 1px 3px rgba(35, 49, 79, .04);
            }

            .fth-product-card.selected .fth-product-radio {
                top: 0;
                right: 0;
                width: 22px;
                height: 22px;
                border-radius: 0 4px 0 4px;
                border: none;
                background: var(--fth-orange);
                box-shadow: none;
            }

            .fth-product-card.selected .fth-product-radio::after {
                content: '✓';
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 800;
                color: #fff;
            }

            .fth-product-radio {
                position: absolute;
            }

            .fth-product-icon {
                width: 132px;
                height: 132px;
                margin: 10px auto 10px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .fth-product-icon img,
            .fth-product-icon svg {
                width: 100% !important;
                height: 100% !important;
                max-width: 100% !important;
                max-height: 100% !important;
                object-fit: contain !important;
            }

            .fth-product-name {
                text-align: center;
                font-size: 14px;
                font-weight: 500;
                color: #000000;
                line-height: 1.22;
            }

            .fth-packages-grid {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 10px;
            }

            .fth-package-card {
                position: relative;
                background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
                border: 2.8px solid #dce2ea;
                border-radius: 6px;
                padding: 14px 12px 12px;
                cursor: pointer;
                transition: .22s ease;
                min-height: 188px;
                box-shadow: var(--fth-shadow-card);
                display: flex;
                flex-direction: column;
            }

            .fth-package-card:hover {
                transform: translateY(-2px);
                border-color: #bcc8d8;
                box-shadow: 0 10px 20px rgba(35, 49, 79, .08);
            }

            .fth-package-card.selected {
                border-color: #c8d0dc;
                background: #f8fafb;
                box-shadow: 0 4px 12px rgba(35, 49, 79, .06);
            }

            .fth-package-card.eco.selected {
                border-color: #237167
            }

            .fth-package-card.std.selected {
                border-color: #547fb5
            }

            .fth-package-card.prm.selected {
                border-color: #efae6d
            }

            .fth-package-radio {
                position: absolute;
                top: 10px;
                right: 10px;
                width: 15px;
                height: 15px;
                border-radius: 50%;
                border: 1.8px solid #c8d0dc;
                background: #fff;
                box-shadow: 0 1px 3px rgba(35, 49, 79, .04);
            }

            .fth-package-card.selected .fth-package-radio {
                background: var(--fth-teal);
                border-color: var(--fth-teal);
            }

            .fth-package-card.selected .fth-package-radio::after {
                content: '✓';
                position: absolute;
                inset: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 800;
                color: #fff;
            }

            .fth-pkg-name {
                font-size: 18px;
                font-weight: 800;
                margin: 0 0 8px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .fth-package-card.selected .fth-package-radio {
                display: none
            }

            .fth-pkg-check {
                display: none;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--fth-teal);
                color: #fff;
                font-size: 11px;
                font-weight: 800;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                box-shadow: 0 2px 6px rgba(31, 122, 117, .25);
            }

            .fth-package-card.selected .fth-pkg-check {
                display: inline-flex;
            }

            .fth-package-card.eco .fth-pkg-name {
                color: var(--fth-green-dark)
            }

            .fth-package-card.std .fth-pkg-name {
                color: #376399
            }

            .fth-package-card.prm .fth-pkg-name {
                color: var(--fth-orange)
            }

            .fth-pkg-desc {
                list-style: none;
                margin: 0;
                padding: 0;
                flex: 1;
            }

            .fth-pkg-desc li {
                position: relative;
                font-size: 12.5px;
                color: #0c0c0c;
                padding: 0 0 7px 12px;
                line-height: 1.38;
            }

            .fth-pkg-desc li::before {
                content: '•';
                position: absolute;
                left: 0;
                top: 0;
                color: #000000;
                font-weight: 800;
            }

            .fth-pkg-price {
                margin-top: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                height: 38px;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 600;
                color: #fff;
                text-align: center;
                box-shadow: 0 8px 16px rgba(35, 49, 79, .08);
            }

            .fth-package-card.eco .fth-pkg-price {
                background: linear-gradient(180deg, #6ab07d 0%, #529764 100%);
            }

            .fth-package-card.std .fth-pkg-price {
                background: linear-gradient(180deg, #537fb5 0%, #335f95 100%);
            }

            .fth-package-card.prm .fth-pkg-price {
                background: linear-gradient(180deg, #e46211 0%, #e46211 100%);
            }

            .fth-right-flow {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .fth-summary-card,
            .fth-logo-card,
            .fth-offer-card {
                background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
                border: 1px solid var(--fth-line);
                border-radius: 12px;
                box-shadow: var(--fth-shadow-soft);
            }

            .fth-summary-card {
                padding: 16px 16px 14px;
            }

            .fth-summary-title,
            .fth-offer-title {
                font-size: 15px;
                font-weight: 600;
                color: #46546f;
                margin: 0 0 11px;
                padding-bottom: 9px;
                border-bottom: 1px solid var(--fth-line);
            }

            .fth-summary-line {
                font-size: 13px;
                color: #55627b;
                margin: 0 0 5px;
                font-weight: 600;
            }

            .fth-summary-total {
                margin-top: 14px;
                font-size: 17px;
                font-weight: 800;
                color: var(--fth-orange);
                line-height: 1.1;
            }

            .fth-sidebar-qty {
                margin-top: 12px;
                padding-top: 12px;
                border-top: 1px solid var(--fth-line);
            }

            .fth-sidebar-sec-title {
                font-size: 11px;
                font-weight: 800;
                color: #5f6d86;
                margin-bottom: 7px;
                text-transform: uppercase;
                letter-spacing: .45px;
            }

            .fth-qty-row {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
            }

            .fth-qty-controls {
                display: flex;
                align-items: center;
                border: 1px solid var(--fth-line-strong);
                border-radius: 9px;
                overflow: hidden;
                background: #fff;
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
            }

            .fth-qty-btn {
                width: 30px;
                height: 30px;
                border: none;
                background: #f7f8fb;
                color: var(--fth-navy);
                font-size: 17px;
                font-weight: 800;
                cursor: pointer;
            }

            .fth-qty-btn:hover {
                background: #edf1f7
            }

            .fth-qty-input {
                width: 118px;
                height: 30px;
                border: none;
                border-left: 1px solid var(--fth-line);
                border-right: 1px solid var(--fth-line);
                text-align: center;
                font-size: 13px;
                font-weight: 800;
                color: var(--fth-navy);
                outline: none;
                -moz-appearance: textfield;
            }

            .fth-qty-input::-webkit-outer-spin-button,
            .fth-qty-input::-webkit-inner-spin-button {
                -webkit-appearance: none
            }

            .fth-qty-hint {
                font-size: 11px;
                color: #728097;
                font-weight: 700;
            }

            .fth-qty-error {
                font-size: 11px;
                color: #d64545;
                font-weight: 700;
                display: block;
                margin-top: 4px;
            }

            .fth-logo-card {
                padding: 10px;
            }

            .fth-logo-main-btn {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                border: none;
                cursor: pointer;
                background: linear-gradient(180deg, #2d948b 0%, #1f7a75 100%);
                color: #fff;
                border-radius: 9px;
                padding: 0;
                min-height: 34px;
                box-shadow: 0 8px 18px rgba(31, 122, 117, .18);
                overflow: hidden;
            }

            .fth-logo-main-btn:hover {
                background: linear-gradient(180deg, #278780 0%, #196761 100%);
            }

            .fth-logo-main-label {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12.5px;
                font-weight: 800;
                padding: 10px 10px;
            }

            .fth-logo-main-icon {
                width: 42px;
                align-self: stretch;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, .11);
                border-left: 1px solid rgba(255, 255, 255, .14);
                font-size: 14px;
            }

            .fth-logo-preview-inline {
                max-height: 18px;
                max-width: 68px;
                border-radius: 4px;
                background: #fff;
                padding: 2px;
            }

            .fth-logo-skip-link {
                display: block;
                text-align: center;
                margin-top: 6px;
                font-size: 11px;
                color: #7c8699;
                text-decoration: none;
                cursor: pointer;
            }

            .fth-logo-skip-link:hover {
                color: var(--fth-teal)
            }

            #fth-logo-file {
                display: none
            }

            .fth-offer-shell {
                padding: 14px 16px 16px;
            }

            .fth-offer-card .fth-offer-head {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 16px;
                font-weight: 800;
                color: var(--fth-navy);
                margin: 0 0 10px;
            }

            .fth-offer-card .fth-offer-badge {
                width: 28px;
                height: 28px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                font-weight: 800;
                background: #f0a55e;
                color: #fff;
            }

            .fth-offer-total-label {
                font-size: 13px;
                color: #657188;
                margin-bottom: 6px;
            }

            .fth-offer-price {
                font-size: 24px;
                font-weight: 800;
                color: var(--fth-orange);
                line-height: 1.1;
                margin-bottom: 14px;
            }

            .fth-actions {
                display: flex;
                gap: 8px;
                margin-top: 8px;
            }

            .fth-btn {
                border: none;
                border-radius: 8px;
                height: 19px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 7px;
                font-size: 12px;
                font-weight: 600;
                cursor: pointer;
                text-decoration: none;
                transition: .2s ease;
                padding: 0 15px;
            }

            .fth-btn:disabled {
                opacity: .45;
                cursor: not-allowed
            }

            .fth-btn-primary {
                background: linear-gradient(180deg, #4a98a4 0%, #257b86 100%);
                color: #fff;
            }

            .fth-btn-primary:hover:not(:disabled) {
                transform: translateY(-1px);
                box-shadow: 0 8px 18px rgba(37, 123, 134, .18);
            }

            .fth-btn-whatsapp {
                background: linear-gradient(180deg, #69cc8f 0%, #47b771 100%);
                color: #fff;
            }

            .fth-btn-whatsapp:hover:not(:disabled) {
                transform: translateY(-1px);
                box-shadow: 0 8px 18px rgba(71, 183, 113, .18);
            }

            .fth-btn-whatsapp svg {
                width: 15px;
                height: 15px
            }

            .fth-sidebar-qty {
                margin-top: 12px;
                padding-top: 12px;
                border-top: 1px solid var(--fth-line);
            }

            .fth-sidebar-sec-title {
                font-size: 12px;
                font-weight: 800;
                color: #637089;
                margin-bottom: 8px;
                text-transform: uppercase;
                letter-spacing: .4px;
            }

            .fth-qty-row {
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: wrap;
            }

            .fth-qty-controls {
                display: flex;
                align-items: center;
                border: 1px solid var(--fth-line-strong);
                border-radius: 10px;
                overflow: hidden;
                background: #fff;
            }

            .fth-qty-btn {
                width: 38px;
                height: 38px;
                border: none;
                background: #f8f9fb;
                color: var(--fth-navy);
                font-size: 18px;
                font-weight: 800;
                cursor: pointer;
            }

            .fth-qty-btn:hover {
                background: #eef2f8
            }

            .fth-qty-input {
                width: 62px;
                height: 38px;
                border: none;
                border-left: 1px solid var(--fth-line);
                border-right: 1px solid var(--fth-line);
                text-align: center;
                font-size: 15px;
                font-weight: 800;
                color: var(--fth-navy);
                outline: none;
                -moz-appearance: textfield;
            }

            .fth-qty-input::-webkit-outer-spin-button,
            .fth-qty-input::-webkit-inner-spin-button {
                -webkit-appearance: none
            }

            .fth-qty-hint {
                font-size: 12px;
                color: #728097;
                font-weight: 600;
            }

            .fth-qty-error {
                font-size: 11px;
                color: #d64545;
                font-weight: 700;
                display: block;
                margin-top: 4px;
            }

            /* modal */
            .fth-modal-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(22, 30, 48, .45);
                z-index: 99998;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(4px);
            }

            .fth-modal-overlay.visible {
                display: flex
            }

            .fth-modal {
                background: #fff;
                border-radius: 16px;
                box-shadow: 0 30px 80px rgba(13, 22, 38, .25);
                max-width: 440px;
                width: 92%;
                overflow: hidden;
                animation: fthModalIn .24s ease;
            }

            @keyframes fthModalIn {
                from {
                    opacity: 0;
                    transform: translateY(16px) scale(.97)
                }

                to {
                    opacity: 1;
                    transform: translateY(0) scale(1)
                }
            }

            .fth-modal-header {
                background: linear-gradient(180deg, #2f4a75 0%, #23395d 100%);
                color: #fff;
                padding: 22px 24px;
                position: relative;
            }

            .fth-modal-header h3 {
                margin: 0;
                font-size: 19px;
                font-weight: 800;
                color: #fff;
            }

            .fth-modal-header p {
                margin: 4px 0 0;
                font-size: 13px;
                opacity: .86;
            }

            .fth-modal-close {
                position: absolute;
                top: 14px;
                right: 14px;
                width: 32px;
                height: 32px;
                border: none;
                border-radius: 50%;
                background: rgba(255, 255, 255, .14);
                color: #fff;
                font-size: 16px;
                cursor: pointer;
            }

            .fth-modal-body {
                padding: 22px 24px 24px
            }

            .fth-modal-field {
                margin-bottom: 14px
            }

            .fth-modal-field label {
                display: block;
                margin-bottom: 6px;
                font-size: 12px;
                font-weight: 800;
                color: #6c7588;
                text-transform: uppercase;
                letter-spacing: .4px;
            }

            .fth-modal-field label .req {
                color: #dc4f4f
            }

            .fth-modal-field input {
                width: 100%;
                height: 46px;
                border: 1.5px solid #d9dee7;
                border-radius: 10px;
                padding: 0 14px;
                font-size: 14px;
                color: var(--fth-text);
                outline: none;
                transition: .2s ease;
            }

            .fth-modal-field input:focus {
                border-color: #6f90ba;
                box-shadow: 0 0 0 4px rgba(111, 144, 186, .10);
            }

            .fth-modal-field input.error {
                border-color: #dc4f4f;
                box-shadow: 0 0 0 4px rgba(220, 79, 79, .10);
            }

            .fth-field-error {
                display: none;
                font-size: 11px;
                font-weight: 700;
                color: #dc4f4f;
                margin-top: 4px;
            }

            .fth-modal-field input.error+.fth-field-error {
                display: block
            }

            .fth-modal-actions {
                display: flex;
                gap: 10px;
                margin-top: 18px;
            }

            .fth-btn-ghost {
                background: #f5f7fa;
                border: 1px solid #dde3ec;
                color: #58657f;
            }

            .fth-btn-ghost:hover {
                background: #eef2f7
            }

            /* overlay */
            .fth-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, .45);
                z-index: 99999;
                align-items: center;
                justify-content: center;
            }

            .fth-overlay.visible {
                display: flex
            }

            .fth-overlay-box {
                background: #fff;
                border-radius: 18px;
                padding: 34px 28px;
                text-align: center;
                box-shadow: 0 24px 70px rgba(15, 20, 30, .25);
                max-width: 340px;
                width: 92%;
            }

            .fth-spinner {
                width: 46px;
                height: 46px;
                border: 4px solid #e3e7ee;
                border-top: 4px solid var(--fth-orange);
                border-radius: 50%;
                animation: fthSpin .8s linear infinite;
                margin: 0 auto 14px;
            }

            @keyframes fthSpin {
                to {
                    transform: rotate(360deg)
                }
            }

            .fth-overlay-text {
                font-size: 15px;
                font-weight: 800;
                color: var(--fth-navy);
            }

            .fth-overlay-sub {
                font-size: 12px;
                color: #7d8799;
                margin-top: 4px;
            }

            .fth-success-icon {
                width: 58px;
                height: 58px;
                border-radius: 50%;
                background: #e8f6ed;
                color: #3f9e60;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 30px;
                margin: 0 auto 14px;
            }

            .fth-hidden {
                display: none !important
            }

            .fth-packages-grid,
            .fth-right-flow {
                scroll-margin-top: 20px
            }

            .fth-special-msg {
                background: linear-gradient(135deg, #fff7ed, #fef3c7);
                border: 1.5px solid #f59e0b;
                border-radius: 10px;
                padding: 14px 16px;
                font-size: 13px;
                font-weight: 600;
                color: #92400e;
                line-height: 1.45;
                text-align: center;
                margin-bottom: 10px;
            }

            @media(max-width:1050px) {
                .fth-inner {
                    grid-template-columns: 1fr
                }

                .fth-content-grid {
                    grid-template-columns: 1fr
                }

                .fth-actions {
                    flex-direction: column
                }

                .fth-right-flow {
                    display: none
                }

                .fth-right-flow.fth-mobile-visible {
                    display: flex
                }
            }

            @media(max-width:760px) {
                .fth-products-grid {
                    grid-template-columns: repeat(2, minmax(0, 1fr))
                }

                .fth-packages-grid {
                    grid-template-columns: 1fr
                }

                .fth-stepper {
                    display: grid;
                    grid-template-columns: repeat(3, auto);
                    justify-content: center;
                    gap: 10px 20px;
                }

                .fth-step-arrow {
                    display: none
                }

                .fth-step-item {
                    font-size: 12px
                }

                .fth-inner {
                    padding: 18px
                }

                .fth-header h2 {
                    font-size: 21px
                }
            }


/* ============================================================
   BLOCK 2: Quick bar CSS — .htf-* classes
   (plugin.php lines 5157–5439)
   ============================================================ */

                .htf-wrap {
                    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
                    max-width: 1180px;
                    margin: 0 auto 24px !important;
                    line-height: 1.45;
                    -webkit-font-smoothing: antialiased;
                    position: relative;
                    z-index: 5;
                    clear: both;
                    pointer-events: auto !important;
                }

                .htf-wrap *,
                .htf-wrap *::before,
                .htf-wrap *::after {
                    box-sizing: border-box
                }

                .htf-box {
                    background: #fff;
                    border: 1px solid #e5e7ee;
                    box-shadow: 0 8px 24px rgba(35, 49, 79, .06);
                    border-radius: 0;
                    overflow: visible;
                    position: relative;
                    z-index: 100;
                    pointer-events: auto !important;
                }

                .htf-banner {
                    text-align: center;
                    padding: 12px 16px 10px;
                    font-size: 14px;
                    font-weight: 800;
                    color: #2a3858;
                    letter-spacing: .2px;
                    background: #faf9fb;
                    border-bottom: 1px solid #eceef3;
                }

                .htf-banner span {
                    color: #e59234;
                    margin: 0 8px;
                    font-size: 14px;
                    font-weight: 800;
                }

                .htf-form-area {
                    background: #fff;
                    padding: 18px 26px 8px;
                }

                .htf-form-top {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 16px;
                    flex-wrap: wrap;
                    margin-bottom: 14px;
                }

                .htf-form-title {
                    font-size: 18px;
                    color: #2b3650;
                    font-weight: 400;
                }

                .htf-form-title strong {
                    font-weight: 800;
                    color: #23395d;
                }

                .htf-phone-badge {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 18px;
                    font-weight: 800;
                    color: #2e4268;
                    white-space: nowrap;
                }

                .htf-phone-icon {
                    width: 34px;
                    height: 34px;
                    border-radius: 50%;
                    background: #f2f5fa;
                    border: 1px solid #d9e1ed;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                }

                .htf-phone-icon svg {
                    width: 17px;
                    height: 17px;
                    color: #546b95;
                }

                .htf-form-row {
                    display: grid;
                    grid-template-columns: 1.15fr 1.1fr 1.1fr 1.1fr auto;
                    gap: 8px;
                    align-items: center;
                }

                .htf-wrap .htf-field input,
                .htf-wrap .htf-field select {
                    width: 100%;
                    height: 42px;
                    border: 2px solid #23395d;
                    border-radius: 6px;
                    background: #fff;
                    padding: 0 14px;
                    font-size: 14px;
                    color: #354258;
                    font-family: 'Poppins', sans-serif;
                    outline: none;
                    transition: .18s ease;
                    -webkit-appearance: none;
                    appearance: none;
                }

                .htf-wrap .htf-field input::placeholder {
                    color: #9ba4b3
                }

                .htf-wrap .htf-field input:focus,
                .htf-wrap .htf-field select:focus {
                    border-color: #9eb0c8;
                    box-shadow: 0 0 0 3px rgba(88, 118, 164, .10);
                }

                .htf-wrap .htf-field input.htf-error,
                .htf-wrap .htf-field select.htf-error {
                    border-color: #d34e4e;
                    box-shadow: 0 0 0 3px rgba(211, 78, 78, .10);
                }

                .htf-wrap .htf-field input.htf-error::placeholder {
                    color: #d34e4e;
                    font-weight: 600
                }

                .htf-wrap .htf-field select {
                    color: #7d8798;
                    cursor: pointer;
                    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23919bad' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
                    background-repeat: no-repeat;
                    background-position: right 14px center;
                    padding-right: 38px;
                }

                /* Tel input: border on wrapper div, not on input itself */
                .htf-wrap .htf-field input[type="tel"] {
                    border: none;
                    border-radius: 0;
                    box-shadow: none;
                    height: 42px;
                    background: #fff;
                }
                .htf-wrap .htf-field input[type="tel"]:focus {
                    border: none;
                    box-shadow: none;
                }

                .htf-tel-wrap {
                    border: 2px solid #23395d;
                    border-radius: 6px;
                    overflow: hidden;
                    transition: border-color .18s ease, box-shadow .18s ease;
                }
                .htf-tel-wrap:focus-within {
                    border-color: #9eb0c8;
                    box-shadow: 0 0 0 3px rgba(88, 118, 164, .10);
                }
                .htf-tel-wrap.htf-error {
                    border-color: #d34e4e;
                    box-shadow: 0 0 0 3px rgba(211, 78, 78, .10);
                }

                .htf-wrap .htf-submit {
                    min-width: 138px;
                    height: 42px;
                    border: none;
                    border-radius: 6px;
                    background: linear-gradient(180deg, #e46211 0%, #e46211 100%);
                    color: #fff;
                    font-size: 14px;
                    font-weight: 800;
                    font-family: 'Poppins', sans-serif;
                    cursor: pointer;
                    transition: .2s ease;
                    padding: 0 18px;
                    box-shadow: 0 8px 18px rgba(233, 147, 25, .15);
                    text-transform: none;
                    letter-spacing: normal;
                }

                .htf-wrap .htf-submit:hover {
                    transform: translateY(-1px);
                    box-shadow: 0 10px 20px rgba(233, 147, 25, .22);
                }

                .htf-wrap .htf-submit:disabled {
                    opacity: .55;
                    cursor: not-allowed;
                    transform: none;
                    box-shadow: none;
                }

                .htf-note {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding: 12px 26px 14px;
                    border-top: 1px solid #edf0f5;
                    background: #fff;
                }

                .htf-note-avatar {
                    width: 30px;
                    height: 30px;
                    flex-shrink: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .htf-note-avatar img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }

                .htf-note-text {
                    font-size: 20px;
                    color: #6b6f79;
                    font-weight: 300;
                    letter-spacing: -.2px;
                    line-height: 1.1;
                }

                .htf-note-text em {
                    font-style: normal;
                    font-weight: 300;
                    color: #6b6f79;
                }

                .htf-success {
                    display: none;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 24px 22px;
                    min-height: 70px;
                    background: #e7f7eb;
                    color: #2e8b50;
                    font-size: 15px;
                    font-weight: 700;
                    border-top: 1px solid #d9eedf;
                }

                .htf-success.visible {
                    display: flex
                }

                .htf-success svg {
                    width: 22px;
                    height: 22px;
                    flex-shrink: 0;
                }

                @media(max-width:980px) {
                    .htf-form-row {
                        grid-template-columns: 1fr 1fr;
                    }

                    .htf-submit {
                        width: 100%;
                        grid-column: 1/-1;
                    }

                    .htf-phone-badge {
                        display: none !important;
                    }
                }

                @media(max-width:640px) {
                    .htf-form-area {
                        padding: 16px
                    }

                    .htf-note {
                        padding: 12px 16px
                    }

                    .htf-form-row {
                        grid-template-columns: 1fr
                    }

                    .htf-form-title {
                        font-size: 16px
                    }

                    .htf-note-text {
                        font-size: 16px
                    }

                    .fth-mobile-hide {
                        display: none !important;
                    }
                }


/* ============================================================
   BLOCK 3: Premium shortcode CSS — .hq-* classes
   (plugin.php lines 5698–6060)
   ============================================================ */

                :root {
                    --hq-primary: #0f172a;
                    --hq-primary-foreground: #ffffff;
                    --hq-secondary: #f1f5f9;
                    --hq-accent: #f97316;
                    --hq-border: #e2e8f0;
                    --hq-input-bg: #f8fafc;
                    --hq-text: #0f172a;
                    --hq-text-muted: #64748b;
                    --hq-ring: rgba(15, 23, 42, 0.2);
                    --hq-radius-xl: 20px;
                    --hq-radius-md: 8px;
                }

                .hq-wrap {
                    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                    margin: 40px auto;
                    max-width: 1080px;
                    box-sizing: border-box;
                }

                .hq-wrap * {
                    box-sizing: border-box;
                }

                .hq-card {
                    background: #ffffff;
                    width: 100%;
                    display: grid;
                    grid-template-columns: 1.1fr 0.9fr;
                    border-radius: var(--hq-radius-xl);
                    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.08);
                    overflow: visible;
                    border: 1px solid rgba(226, 232, 240, 0.8);
                }

                .hq-media {
                    position: relative;
                    background: #0f172a;
                    min-height: 480px;
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-end;
                    padding: 40px;
                    overflow: hidden;
                    border-radius: var(--hq-radius-xl) 0 0 var(--hq-radius-xl);
                }

                .hq-media-bg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    opacity: 0.8;
                    transition: transform 0.7s ease;
                }

                .hq-card:hover .hq-media-bg {
                    transform: scale(1.03);
                }

                .hq-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
                    z-index: 1;
                }

                .hq-play-btn {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 72px;
                    height: 72px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(8px);
                    -webkit-backdrop-filter: blur(8px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 2;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }

                .hq-play-btn:hover {
                    background: rgba(255, 255, 255, 0.2);
                    transform: translate(-50%, -50%) scale(1.05);
                }

                .hq-play-btn svg {
                    width: 28px;
                    height: 28px;
                    fill: #ffffff;
                    margin-left: 4px;
                }

                .hq-content {
                    position: relative;
                    z-index: 2;
                    color: #ffffff;
                }

                .hq-badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 6px;
                    background: rgba(255, 255, 255, 0.15);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    padding: 6px 14px;
                    border-radius: 30px;
                    font-size: 13px;
                    font-weight: 500;
                    margin-bottom: 16px;
                    border: 1px solid rgba(255, 255, 255, 0.1);
                }

                .hq-badge-dot {
                    width: 8px;
                    height: 8px;
                    border-radius: 50%;
                    background: #22c55e;
                    box-shadow: 0 0 10px #22c55e;
                }

                .hq-title {
                    font-size: 28px;
                    font-weight: 700;
                    line-height: 1.25;
                    margin-bottom: 12px;
                }

                .hq-desc {
                    font-size: 15px;
                    color: rgba(255, 255, 255, 0.8);
                    line-height: 1.5;
                    font-weight: 400;
                }

                .hq-form-area {
                    padding: 48px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    border-radius: 0 var(--hq-radius-xl) var(--hq-radius-xl) 0;
                    background: #ffffff;
                }

                .hq-form-header {
                    margin-bottom: 32px;
                }

                .hq-form-subtitle {
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--hq-accent);
                    text-transform: uppercase;
                    margin-bottom: 8px;
                }

                .hq-form-header h2 {
                    font-size: 24px;
                    font-weight: 700;
                    color: var(--hq-text);
                    margin: 0 0 8px;
                    line-height: 1.2;
                }

                .hq-form-header p {
                    margin: 0;
                    font-size: 14px;
                    color: var(--hq-text-muted);
                }

                .hq-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 16px;
                    margin-bottom: 24px;
                }

                .hq-full {
                    grid-column: 1 / -1;
                }

                .hq-field {
                    display: flex;
                    flex-direction: column;
                    gap: 6px;
                    position: relative;
                }

                .hq-field label {
                    font-size: 13px;
                    font-weight: 500;
                    color: var(--hq-text);
                }

                .hq-input-wrap {
                    position: relative;
                    display: flex;
                    align-items: center;
                }

                .hq-icon {
                    position: absolute;
                    left: 14px;
                    color: #94a3b8;
                    width: 18px;
                    height: 18px;
                    pointer-events: none;
                }

                .hq-field input,
                .hq-field select {
                    width: 100%;
                    height: 44px;
                    background-color: var(--hq-input-bg);
                    border: 1px solid var(--hq-border);
                    border-radius: var(--hq-radius-md);
                    padding: 0 14px;
                    font-size: 14px;
                    color: var(--hq-text);
                    transition: all 0.2sease;
                    outline: none;
                }

                .hq-has-icon input,
                .hq-has-icon select {
                    padding-left: 40px;
                }

                .hq-field select {
                    appearance: none;
                    cursor: pointer;
                    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
                    background-repeat: no-repeat;
                    background-position: right 14px center;
                    padding-right: 36px;
                }

                .hq-field input::placeholder {
                    color: #94a3b8;
                    font-weight: 400;
                }

                .hq-field input:focus,
                .hq-field select:focus {
                    background-color: #ffffff;
                    border-color: var(--hq-primary);
                    box-shadow: 0 0 0 3px var(--hq-ring);
                }

                .hq-field input.hq-error,
                .hq-field select.hq-error {
                    border-color: #ef4444;
                    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
                }

                .hq-submit {
                    width: 100%;
                    height: 48px;
                    margin-top: 8px;
                    background-color: var(--hq-primary);
                    color: var(--hq-primary-foreground);
                    border: none;
                    border-radius: var(--hq-radius-md);
                    font-size: 15px;
                    font-weight: 600;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
                }

                .hq-submit:hover:not(:disabled) {
                    background-color: #1e293b;
                    transform: translateY(-1px);
                    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
                }

                .hq-submit:disabled {
                    opacity: 0.7;
                    cursor: not-allowed;
                }

                .hq-submit svg {
                    width: 18px;
                    height: 18px;
                    transition: transform 0.2s ease;
                }

                .hq-submit:hover:not(:disabled) svg {
                    transform: translateX(4px);
                }

                .hq-footer {
                    margin-top: 24px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    font-size: 13px;
                    color: var(--hq-text-muted);
                }

                .hq-footer svg {
                    width: 16px;
                    height: 16px;
                    color: #10b981;
                }

                .hq-success-msg {
                    display: none;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 20px;
                    background: #ecfdf5;
                    color: #047857;
                    font-size: 15px;
                    font-weight: 600;
                    border-radius: 12px;
                    border: 1px solid #d1fae5;
                    margin-top: 20px;
                }

                @media (max-width: 900px) {
                    .hq-card {
                        grid-template-columns: 1fr;
                    }

                    .hq-media {
                        min-height: 280px;
                        padding: 30px;
                    }

                    .hq-form-area {
                        padding: 32px 24px;
                    }

                    .hq-title {
                        font-size: 24px;
                    }
                }

                @media (max-width: 500px) {
                    .hq-grid {
                        grid-template-columns: 1fr;
                    }
                }


/* ============================================================
   BLOCK 4: Blog rehber CSS — .ft-blog-* classes
   (plugin.php lines 6313–6433)
   ============================================================ */

            .ft-blog-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 25px;
                padding: 20px 0;
                font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            }

            .ft-blog-card {
                background: #ffffff;
                border-radius: 18px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                display: flex;
                flex-direction: column;
                text-decoration: none !important;
                color: inherit;
                border: 1px solid #f1f3f6;
                position: relative;
            }

            .ft-blog-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(37, 123, 134, 0.12);
                border-color: #257b8644;
            }

            .ft-blog-img-wrap {
                width: 100%;
                height: 220px;
                overflow: hidden;
                position: relative;
            }

            .ft-blog-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s ease;
            }

            .ft-blog-card:hover .ft-blog-image {
                transform: scale(1.08);
            }

            .ft-blog-content {
                padding: 24px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                background: #fff;
            }

            .ft-blog-category {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 1px;
                color: #257b86;
                font-weight: 700;
                margin-bottom: 10px;
                display: block;
            }

            .ft-blog-title {
                margin: 0 0 12px;
                font-size: 19px;
                font-weight: 700;
                color: #1e293b;
                line-height: 1.4;
                transition: color 0.3s ease;
            }

            .ft-blog-card:hover .ft-blog-title {
                color: #257b86;
            }

            .ft-blog-excerpt {
                font-size: 14px;
                color: #64748b;
                line-height: 1.7;
                margin-bottom: 20px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .ft-blog-footer {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding-top: 15px;
                border-top: 1px solid #f1f5f9;
                font-size: 13px;
                font-weight: 600;
                color: #257b86;
            }

            .ft-blog-read {
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .ft-blog-read svg {
                width: 18px;
                height: 18px;
                transition: transform 0.3s ease;
            }

            .ft-blog-card:hover .ft-blog-read svg {
                transform: translateX(5px);
            }

            @media (max-width: 768px) {
                .ft-blog-grid {
                    grid-template-columns: 1fr;
                }
            }
