
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: 'Super Comic';
            src: url('fonts/SuperComic-qZg62.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Creato';
            src: url('fonts/CreatoDisplay-Regular.otf') format('opentype');
        }

        .kukdukoo-header {
            width: 100%;
            padding: 10px 15px;
            background: #fff;
            font-family: 'Super Comic', sans-serif;
        }

        .kukdukoo-nav {
            max-width: 1400px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 95px;
        }

        /* BUTTONS */

        .kuk-btn {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            height: 52px;
        }

        .kuk-btn img.btn-bg {
            height: 52px;
            width: auto;
            display: block;
        }

        .kuk-btn-content {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .kuk-btn-content img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        /* LOGO */

        .kuk-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .kuk-logo img {
            height: 100px;
            width: auto;
            display: block;
            transition: .3s;
        }

        .kuk-logo:hover img {
            transform: scale(1.05);
        }

        /* MOBILE */

        @media(max-width:767px) {

            .kukdukoo-nav {
                flex-wrap: nowrap;
                gap: 8px;
                overflow-x: auto;
                justify-content: flex-start;
                padding: 0 8px;
                align-items: center;
            }

            /* LOGO */

            .kuk-logo {
                flex: 0 0 auto;
            }

            .kuk-logo img {
                height: 40px;
                width: auto !important;
                max-width: none;
                object-fit: contain;
                display: block;
            }

            /* BUTTON */

            .kuk-btn {
                height: 32px;
                flex: 0 0 auto;
            }

            .kuk-btn img.btn-bg {
                height: 32px;
                width: 70px;
            }

            /* TEXT */

            .kuk-btn-content {
                gap: 3px;
                font-size: 7px;
                font-weight: 800;
                line-height: 1;
            }

            /* ICON */

            .kuk-btn-content img {
                width: 12px;
                height: 12px;
                object-fit: contain;
            }

        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
        }

        /* HEADER MOBILE & HAMBURGER LAYOUT */
        .header-mobile-bar {
            display: none;
            width: 100%;
            position: relative;
            justify-content: left;
            align-items: center;
        }

        .mobile-logo img {
            height: 60px;
            width: auto;
            display: block;
        }

        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-btn .bar {
            width: 100%;
            height: 3px;
            background-color: #000;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* HEADER TABLET RESPONSIVENESS */
        @media (max-width: 1200px) {
            .kukdukoo-nav {
                gap: 30px;
            }

            .kuk-logo img {
                height: 80px;
            }

            .kuk-btn {
                height: 44px;
            }

            .kuk-btn img.btn-bg {
                height: 44px;
            }

            .kuk-btn-content {
                font-size: 15px;
            }
        }

        @media (max-width: 900px) {
            .kukdukoo-nav {
                gap: 15px;
            }

            .kuk-btn-content {
                font-size: 13px;
            }
        }

        /* HEADER MOBILE RESPONSIVENESS */
        @media (max-width: 767px) {
            .header-mobile-bar {
                display: flex;
            }

            .hamburger-btn {
                display: flex;
            }

            .kukdukoo-header {
                position: relative;
                z-index: 1000;
            }

            /* Hide middle logo on mobile */
            .kukdukoo-nav .kuk-logo {
                display: none !important;
            }

            /* Style nav menu as horizontal dropdown */
            .kukdukoo-nav {
                display: none;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                gap: 10px;
                padding: 15px 10px;
                background: #fff;
                border-top: 1px solid #eee;
                align-items: center;
            }

            /* Show when toggled active */
            .kukdukoo-nav.open {
                display: flex !important;
            }

            .kuk-btn {
                height: 40px;
                width: 150px;
            }

            .kuk-btn img.btn-bg {
                height: 40px;
                width: 150px;
            }

            .kuk-btn-content {
                font-size: 14px !important;
                gap: 6px;
            }

            .kuk-btn-content img {
                width: 18px;
                height: 18px;
            }

            /* Hamburger button animation */
            .hamburger-btn.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger-btn.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger-btn.active .bar:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
        }
