/* === COMPREHENSIVE TAILWIND FALLBACKS === */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        .font-sans {
            font-family: 'Montserrat', 'Noto Sans Thai', system-ui, sans-serif;
        }

        .font-heading {
            font-family: 'Montserrat', 'Noto Sans Thai', system-ui, sans-serif;
        }

        .font-black {
            font-weight: 900;
        }

        .font-bold {
            font-weight: 700;
        }

        .font-semibold {
            font-weight: 600;
        }

        .font-medium {
            font-weight: 500;
        }

        .text-xs {
            font-size: 0.75rem;
            line-height: 1rem;
        }

        .text-sm {
            font-size: 0.875rem;
            line-height: 1.25rem;
        }

        .text-base {
            font-size: 1rem;
            line-height: 1.5rem;
        }

        .text-lg {
            font-size: 1.125rem;
            line-height: 1.75rem;
        }

        .text-xl {
            font-size: 1.25rem;
            line-height: 1.75rem;
        }

        .text-2xl {
            font-size: 1.5rem;
            line-height: 2rem;
        }

        .text-3xl {
            font-size: 1.875rem;
            line-height: 2.25rem;
        }

        .text-4xl {
            font-size: 2.25rem;
            line-height: 2.5rem;
        }

        .text-white {
            color: #fff;
        }

        .text-center {
            text-align: center;
        }

        .uppercase {
            text-transform: uppercase;
        }

        .tracking-wide {
            letter-spacing: 0.025em;
        }

        .tracking-wider {
            letter-spacing: 0.05em;
        }

        .tracking-widest {
            letter-spacing: 0.1em;
        }

        .tracking-tighter {
            letter-spacing: -0.05em;
        }

        .leading-relaxed {
            line-height: 1.625;
        }

        .block {
            display: block;
        }

        .hidden {
            display: none;
        }

        .flex {
            display: flex;
        }

        .inline-flex {
            display: inline-flex;
        }

        .items-center {
            align-items: center;
        }

        .items-start {
            align-items: flex-start;
        }

        .justify-between {
            justify-content: space-between;
        }

        .justify-center {
            justify-content: center;
        }

        .flex-col {
            flex-direction: column;
        }

        .flex-wrap {
            flex-wrap: wrap;
        }

        .flex-shrink-0 {
            flex-shrink: 0;
        }

        .gap-1 {
            gap: 0.25rem;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        .gap-4 {
            gap: 1rem;
        }

        .gap-8 {
            gap: 2rem;
        }

        .gap-12 {
            gap: 3rem;
        }

        .space-x-8> :not(:first-child) {
            margin-left: 2rem;
        }

        .space-y-1> :not(:first-child) {
            margin-top: 0.25rem;
        }

        .space-y-4> :not(:first-child) {
            margin-top: 1rem;
        }

        .w-full {
            width: 100%;
        }

        .h-8 {
            height: 2rem;
        }

        .w-8 {
            width: 2rem;
        }

        .h-5 {
            height: 1.25rem;
        }

        .w-5 {
            width: 1.25rem;
        }

        .h-20 {
            height: 5rem;
        }

        .max-w-2xl {
            max-width: 42rem;
        }

        .max-w-3xl {
            max-width: 48rem;
        }

        .max-w-4xl {
            max-width: 56rem;
        }

        .max-w-5xl {
            max-width: 64rem;
        }

        .max-w-7xl {
            max-width: 80rem;
        }

        .max-w-sm {
            max-width: 24rem;
        }

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        .mx-1 {
            margin-left: 0.25rem;
            margin-right: 0.25rem;
        }

        .mb-1 {
            margin-bottom: 0.25rem;
        }

        .mb-2 {
            margin-bottom: 0.5rem;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mb-12 {
            margin-bottom: 3rem;
        }

        .mb-16 {
            margin-bottom: 4rem;
        }

        .mt-1 {
            margin-top: 0.25rem;
        }

        .mt-2 {
            margin-top: 0.5rem;
        }

        .mt-8 {
            margin-top: 2rem;
        }

        .mt-10 {
            margin-top: 2.5rem;
        }

        .p-4 {
            padding: 1rem;
        }

        .p-6 {
            padding: 1.5rem;
        }

        .p-8 {
            padding: 2rem;
        }

        .px-3 {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-5 {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .px-8 {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .px-10 {
            padding-left: 2.5rem;
            padding-right: 2.5rem;
        }

        .py-2\.5 {
            padding-top: 0.625rem;
            padding-bottom: 0.625rem;
        }

        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .py-5 {
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }

        .py-16 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .py-24 {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }

        .pt-2 {
            padding-top: 0.5rem;
        }

        .pt-8 {
            padding-top: 2rem;
        }

        .pt-16 {
            padding-top: 4rem;
        }

        .pt-32 {
            padding-top: 8rem;
        }

        .pt-40 {
            padding-top: 10rem;
        }

        .pb-6 {
            padding-bottom: 1.5rem;
        }

        .pb-8 {
            padding-bottom: 2rem;
        }

        .pb-24 {
            padding-bottom: 6rem;
        }

        .pr-4 {
            padding-right: 1rem;
        }

        .pl-6 {
            padding-left: 1.5rem;
        }

        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .fixed {
            position: fixed;
        }

        .inset-0 {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

        .top-0 {
            top: 0;
        }

        .left-0 {
            left: 0;
        }

        .right-0 {
            right: 0;
        }

        .bottom-0 {
            bottom: 0;
        }

        .z-10 {
            z-index: 10;
        }

        .z-50 {
            z-index: 50;
        }

        .overflow-hidden {
            overflow: hidden;
        }

        .object-cover {
            object-fit: cover;
        }

        .rounded-sm {
            border-radius: 0.125rem;
        }

        .rounded-md {
            border-radius: 0.375rem;
        }

        .rounded-full {
            border-radius: 9999px;
        }

        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
        }

        .shadow-sm {
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
        }

        .transition {
            transition-property: color, background-color, border-color;
            transition-duration: 150ms;
        }

        .transition-all {
            transition-property: all;
            transition-duration: 150ms;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        .transition-transform {
            transition-property: transform;
            transition-duration: 150ms;
        }

        .duration-300 {
            transition-duration: 300ms;
        }

        .transform {
            transform: translateZ(0);
        }

        .selection\:bg-cmyk-red ::selection {
            background: #ED1C24;
        }

        .selection\:text-white ::selection {
            color: #fff;
        }

        .grid {
            display: grid;
        }

        .grid-cols-1 {
            grid-template-columns: repeat(1, 1fr);
        }

        .grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .list-disc {
            list-style-type: disc;
        }

        .space-y-2> :not(:first-child) {
            margin-top: 0.5rem;
        }

        .underline {
            text-decoration: underline;
        }

        @media (min-width: 640px) {
            .sm\:px-6 {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .sm\:flex-row {
                flex-direction: row;
            }

            .sm\:text-5xl {
                font-size: 3rem;
                line-height: 1;
            }
        }

        @media (min-width: 768px) {
            .md\:hidden {
                display: none;
            }

            .md\:flex {
                display: flex;
            }

            .md\:flex-row {
                flex-direction: row;
            }

            .md\:grid-cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }

            .md\:grid-cols-4 {
                grid-template-columns: repeat(4, 1fr);
            }

            .md\:col-span-2 {
                grid-column: span 2;
            }

            .md\:text-xl {
                font-size: 1.25rem;
            }

            .md\:text-5xl {
                font-size: 3rem;
                line-height: 1;
            }

            .md\:pt-40 {
                padding-top: 10rem;
            }

            .md\:pb-32 {
                padding-bottom: 8rem;
            }

            .md\:py-24 {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
        }

        @media (min-width: 1024px) {
            .lg\:px-8 {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .lg\:text-7xl {
                font-size: 4.5rem;
                line-height: 1;
            }
        }

        /* === END FALLBACKS === */