* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-brown: #c5a47e;
            --dark-brown: #c5a47e;
            --light-brown: #d8bea0;
            --dark-gray: #6c757d;
            --light-gray: #f5f5f5;
            --text-dark: #6c757d;
            --text-gray: #6c757d;
            --white: #fff;
        }

        body,
        html body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }

        body.enquiry-modal-open {
            overflow: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* HEADER & NAVIGATION */
        header {
            background-color: var(--white);
            border-bottom: 1px solid #eee;
            padding: 8px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        body > header {
            padding: 8px 0;
            color: var(--text-dark);
        }

        .header-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            width: 220px;
            height: 80px;
            display: block;
            object-fit: contain;
            transition: height 0.25s ease;
        }

        body > header.is-stuck .logo img {
            height: 56px;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .mobile-nav-toggle {
            display: none;
            width: 46px;
            height: 42px;
            border: 1px solid rgba(153, 102, 51, 0.22);
            border-radius: 6px;
            background: #fff;
            color: var(--dark-brown);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
        }

        .mobile-nav-toggle span {
            width: 22px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform 0.22s ease, opacity 0.22s ease;
        }

        .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--dark-brown);
        }

        nav a.active {
            color: var(--dark-brown);
        }

        .contact-btn {
            background-color: var(--dark-brown);
            color: var(--white);
            padding: 11px 24px;
            border-radius: 3px;
            font-size: 17px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .contact-btn:hover {
            background-color: var(--dark-brown);
            color: var(--white);
        }

        /* MAIN CONTENT */
        main {
            min-height: calc(100vh - 200px);
        }

        /* FOOTER */
        footer {
            background-color: var(--dark-brown);
            color: var(--white);
            padding: 60px 20px 30px;
        }

        body > footer {
            padding: 60px 20px 30px;
        }

        .footer-container {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(140px, 0.8fr) minmax(360px, 2.2fr) minmax(130px, 1fr) minmax(280px, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            color: #fff;
        }

        .footer-section ul {
            list-style: none;
            line-height:2.4;
        }

        .footer-section,
        .footer-section ul,
        .footer-section li,
        .footer-info,
        .footer-info p,
        .footer-bottom p,
        .footer-social a {
            color: #fff;
        }

        .footer-info p {
            font-size: 1rem;
            line-height: 2.4;
        }

        .footer-section a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: rgba(255,255,255,0.9);
        }

        .footer-logo {
            margin-bottom: 32px;
        }

        .footer-logo img {
            width: 190px;
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        .footer-info {
            font-size: 13px;
            line-height: 1.8;
            font-family: 'Poppins', sans-serif;
        }

        .footer-contact {
            min-width: 0;
            width: 280px;
            max-width: 100%;
        }

        .footer-contact .footer-info {
            display: grid;
            gap: 26px;
        }

        .footer-contact .footer-info p {
            margin: 0;
            line-height: 1.45;
            overflow-wrap: anywhere;
        }

        .footer-contact-row {
            display: grid;
            grid-template-columns: 32px minmax(0, 1fr);
            gap: 14px;
            align-items: center;
            font-size: 1.12rem;
        }

        .footer-contact-icon {
            width: 32px;
            height: 32px;
            display: grid;
            place-items: center;
            color: #fff;
        }

        .footer-contact-icon svg {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .footer-contact-icon--circle {
            border-radius: 50%;
            background: #fff;
            color: var(--dark-brown);
        }

        .footer-contact-icon--circle svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            stroke: none;
        }

        .footer-social {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 8px;
        }

        .footer-social a {
            display: inline-flex;
            width: 36px;
            height: 36px;
            flex: 0 0 36px;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            border-radius: 0;
            color: var(--white);
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
            transition: background-color 0.3s ease;
        }

        .footer-social a[aria-label="LinkedIn"] {
            width: 30px;
            height: 30px;
            flex-basis: 30px;
            border-radius: 4px;
            background: #fff;
            color: var(--dark-brown);
            font-size: 18px;
            text-transform: none;
        }

        .footer-social a[aria-label="Instagram"] svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .footer-social a:hover {
            color: rgba(255,255,255,0.82);
        }

        .footer-social a[aria-label="LinkedIn"]:hover {
            background: rgba(255,255,255,0.82);
            color: var(--dark-brown);
        }

        .footer-divider {
            height: 1px;
            background-color: rgba(255,255,255,0.2);
            margin: 30px 0;
        }

        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: #fff;
        }

        .move-to-top {
            position: fixed;
            right: 33px;
            bottom: 28px;
            z-index: 100;
            width: 54px;
            height: 54px;
            border: 0;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: var(--dark-brown);
            color: #fff;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px);
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
        }

        .move-to-top.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .move-to-top:hover,
        .move-to-top:focus-visible {
            background: var(--primary-brown);
            outline: none;
        }

        .move-to-top svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .whatsapp-float {
            position: fixed;
            right: 32px;
            bottom: 95px;
            z-index: 99;
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #16b828;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
        }

        .whatsapp-float svg {
            width: 36px;
            height: 36px;
            fill: #fff;
        }

        .form-alert {
            width: 100%;
            margin-bottom: 18px;
            padding: 13px 16px;
            border-radius: 4px;
            font-size: 0.95rem;
            line-height: 1.45;
            font-weight: 600;
        }

        .form-alert--success {
            background: #edf7ed;
            color: #1f6f2a;
            border: 1px solid #bfe4c3;
        }

        .form-alert--error {
            background: #fff1f0;
            color: #a32118;
            border: 1px solid #f0b8b3;
        }

        .enquiry-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .enquiry-modal.is-open {
            display: flex;
        }

        .enquiry-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.58);
        }

        .enquiry-modal-dialog {
            position: relative;
            z-index: 1;
            width: min(720px, 100%);
            max-height: calc(100vh - 48px);
            overflow-y: auto;
            background: #fff;
            border-radius: 8px;
            padding: 34px;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
        }

        .enquiry-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 36px;
            height: 36px;
            border: 0;
            background: transparent;
            color: #111;
            font-size: 32px;
            line-height: 1;
            cursor: pointer;
        }

        .enquiry-modal-heading {
            padding-right: 34px;
            margin-bottom: 22px;
        }

        .enquiry-modal-heading h2 {
            color: var(--dark-brown);
            font-size: 28px;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .enquiry-modal-heading p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        .enquiry-modal-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .enquiry-modal-form label {
            display: grid;
            gap: 7px;
            color: #222;
            font-size: 14px;
            font-weight: 600;
        }

        .enquiry-modal-form .required-mark {
            color: #d72121;
        }

        .enquiry-modal-form input,
        .enquiry-modal-form select,
        .enquiry-modal-form textarea {
            width: 100%;
            min-height: 46px;
            border: 1px solid #dedede;
            border-radius: 4px;
            padding: 11px 13px;
            color: #111;
            font: inherit;
            background-color: #fff;
            background-image: none !important;
        }

        .enquiry-modal-form select {
            appearance: auto;
            -webkit-appearance: menulist;
            -moz-appearance: auto;
            padding-right: 13px;
        }

        .enquiry-modal-form input:invalid,
        .enquiry-modal-form select:invalid,
        .enquiry-modal-form textarea:invalid {
            box-shadow: none;
        }

        .enquiry-modal-form textarea {
            min-height: 110px;
            resize: vertical;
        }

        .enquiry-modal-full,
        .enquiry-modal-consent {
            grid-column: 1 / -1;
        }

        .enquiry-modal-consent {
            display: flex !important;
            grid-template-columns: none;
            grid-auto-flow: column;
            align-items: flex-start;
            gap: 10px !important;
            color: var(--text-gray) !important;
            font-size: 13px !important;
            font-weight: 400 !important;
            line-height: 1.5;
        }

        .enquiry-modal-consent input {
            width: 18px;
            min-width: 18px;
            height: 18px;
            min-height: 18px;
            margin-top: 2px;
        }

        .enquiry-modal-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 160px;
            min-height: 48px;
            margin: 20px auto 0;
            border: 0;
            border-radius: 4px;
            background: var(--dark-brown);
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
        }

        .thank-you-page {
            min-height: 58vh;
            display: grid;
            place-items: center;
            padding: 80px 20px;
            text-align: center;
            background: #fff;
        }

        .thank-you-page h1 {
            color: var(--dark-brown);
            font-size: clamp(2.4rem, 5vw, 4rem);
            margin-bottom: 14px;
        }

        .thank-you-page p {
            max-width: 560px;
            margin: 0 auto 26px;
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .thank-you-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 26px;
            background: var(--dark-brown);
            color: #fff;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
        }

        /* MEGA MENU */
        .nav-item {
            position: static;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            width: calc(100vw - 16px);
            max-width: 1320px;
            background: #fff;
            border: 1px solid #b7b7b7;
            border-radius: 0;
            box-shadow: 0 8px 18px rgba(0,0,0,0.12);
            padding: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(6, minmax(150px, 1fr));
            gap: 0;
            align-items: stretch;
        }

        .mega-category {
            min-width: 0;
            padding: 14px 20px 18px;
            background: #fff;
            border: 0;
        }

        .mega-category:nth-child(odd) {
            background: #f4f0ec;
        }

        .mega-category h4 {
            font-size: 17px;
            font-weight: 700;
            color: #a7652e;
            margin-bottom: 8px;
            text-transform: none;
            letter-spacing: 0;
        }

        .mega-category ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-category li {
            margin-bottom: 4px;
        }

        .mega-category a {
            color: #111;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.45;
            transition: color 0.3s ease;
            display: block;
            padding: 1px 0;
        }

        .mega-category a:hover {
            color: var(--primary-brown);
        }

        .mega-category .more-link {
            color: var(--dark-brown);
            font-weight: 600;
            margin-top: 10px;
            display: inline-block;
        }

        .mega-category .more-link:hover {
            color: var(--dark-brown);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .header-container {
                padding: 0 15px;
            }

            nav {
                gap: 30px;
            }

            nav a {
                font-size: 13px;
            }

            .mega-menu {
                width: 95vw;
                max-width: none;
            }

            .mega-menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .mega-category h4 {
                font-size: 14px;
            }

            .mega-category a {
                font-size: 12px;
            }
        }

        @media (max-width: 640px) {
            .mega-menu {
                width: 98vw;
                max-width: 95vw;
                left: 50%;
                transform: translateX(-50%) translateY(-10px);
            }

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

            .mega-category h4 {
                font-size: 13px;
            }

            .mega-category a {
                font-size: 11px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 10px;
                flex-direction: column;
                gap: 15px;
                padding-top: 10px;
                padding-bottom: 10px;
            }

            .logo {
                font-size: 20px;
            }

            nav {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
            }

            nav a {
                font-size: 12px;
                padding: 8px 12px;
            }

            .contact-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .mega-menu {
                display: none;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-contact {
                max-width: 420px;
            }

            main {
                min-height: calc(100vh - 150px);
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 8px;
            }

            nav {
                gap: 8px;
                flex-direction: column;
                align-items: center;
            }

            nav a {
                font-size: 11px;
                padding: 6px 10px;
                width: 100%;
                text-align: center;
            }

            .contact-btn {
                width: 100%;
                text-align: center;
                padding: 10px;
            }

            .logo {
                font-size: 18px;
            }

            .footer-container {
                padding: 20px;
                gap: 20px;
            }

            .footer-contact {
                max-width: none;
            }

            .footer-social {
                gap: 22px;
            }

            .footer-social a {
                width: 36px;
                height: 36px;
                flex-basis: 36px;
                font-size: 26px;
            }

            .move-to-top {
                right: 35px;
                bottom: 25px;
                width: 52px;
                height: 52px;
            }

            .move-to-top svg {
                width: 24px;
                height: 24px;
            }

            .whatsapp-float {
                right: 35px;
                bottom: 90px;
                width: 52px;
                height: 52px;
            }

            .whatsapp-float svg {
                width: 32px;
                height: 32px;
            }

            .footer-section h4 {
                font-size: 14px;
            }

            .footer-links {
                flex-direction: column;
                gap: 8px;
            }

            .footer-links a {
                font-size: 13px;
            }

            .mega-menu {
                display: none; /* Hide mega menu on very small screens */
            }
        }

        @media (max-width: 640px) {
            .enquiry-modal {
                padding: 14px;
            }

            .enquiry-modal-dialog {
                padding: 28px 18px;
            }

            .enquiry-modal-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            body.nav-open {
                overflow: hidden;
            }

            body > header {
                padding: 10px 0;
            }

            .header-container {
                position: relative;
                flex-direction: row;
                align-items: center;
                gap: 12px;
                padding: 0 16px;
            }

            .logo img {
                width: 150px;
                height: 46px;
                object-fit: contain;
                display: block;
            }

            body > header.is-stuck .logo img {
                height: 38px;
            }

            .mobile-nav-toggle {
                display: inline-flex;
                margin-left: auto;
                flex: 0 0 auto;
            }

            .primary-navigation {
                position: absolute;
                top: calc(100% + 10px);
                left: 16px;
                right: 16px;
                display: grid;
                gap: 0;
                width: auto;
                max-height: calc(100vh - 110px);
                padding: 10px;
                overflow-y: auto;
                background: #fff;
                border: 1px solid rgba(153, 102, 51, 0.16);
                border-radius: 8px;
                box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-8px);
                transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
            }

            body.nav-open .primary-navigation {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .primary-navigation a {
                display: flex;
                width: 100%;
                min-height: 46px;
                align-items: center;
                justify-content: flex-start;
                padding: 10px 14px;
                font-size: 15px;
                text-align: left;
                border-radius: 6px;
            }

            .primary-navigation a.active,
            .primary-navigation a:hover,
            .primary-navigation a:focus-visible {
                background: rgba(153, 102, 51, 0.08);
                color: var(--dark-brown);
                outline: none;
            }

            .primary-navigation .nav-item {
                width: 100%;
            }

            .primary-navigation [data-product-menu-trigger] {
                justify-content: space-between;
            }

            .primary-navigation [data-product-menu-trigger]::after {
                content: "+";
                margin-left: 12px;
                color: var(--dark-brown);
                font-size: 20px;
                font-weight: 600;
                line-height: 1;
            }

            .primary-navigation .nav-item.is-open [data-product-menu-trigger]::after {
                content: "-";
            }

            .primary-navigation .contact-btn {
                justify-content: center;
                margin-top: 6px;
                color: #fff;
                background: var(--dark-brown);
                font-size: 15px;
                padding: 10px 14px;
            }

            .primary-navigation .contact-btn:hover,
            .primary-navigation .contact-btn:focus-visible {
                color: #fff;
                background: var(--primary-brown);
            }

            .primary-navigation .mega-menu {
                position: static;
                display: none;
                width: 100%;
                max-width: none;
                max-height: 44vh;
                margin: 0 0 8px;
                padding: 4px 0 8px 14px;
                overflow-y: auto;
                background: transparent;
                border-left: 2px solid rgba(153, 102, 51, 0.16);
                border-radius: 0;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                transition: none;
            }

            .primary-navigation .nav-item.is-open .mega-menu {
                display: block;
            }

            .primary-navigation .mega-menu-head {
                display: none;
            }

            .primary-navigation .mega-menu-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .primary-navigation .mega-category {
                padding: 0;
                border-bottom: 1px solid rgba(153, 102, 51, 0.1);
            }

            .primary-navigation .mega-category:last-child {
                border-bottom: 0;
            }

            .primary-navigation .mega-category h4 {
                margin: 8px 0 4px;
                color: var(--dark-brown);
                font-size: 12px;
                line-height: 1.35;
                letter-spacing: 0;
                text-transform: none;
            }

            .primary-navigation .mega-category ul {
                display: grid;
                gap: 2px;
                margin: 0 0 8px;
                padding: 0;
                list-style: none;
            }

            .primary-navigation .mega-category a {
                min-height: 34px;
                padding: 7px 10px;
                color: var(--text-gray);
                font-size: 13px;
                line-height: 1.35;
                border-radius: 5px;
            }
        }

        @media (max-width: 640px) {
            .footer-container {
                padding: 0;
            }

            .footer-section[style] {
                min-width: 0 !important;
                max-width: none !important;
            }

            .footer-section > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                gap: 0 !important;
            }
        }

        @media (max-width: 1024px) {
            .primary-navigation {
                justify-items: stretch !important;
            }

            .primary-navigation > a,
            .primary-navigation > .nav-item,
            .primary-navigation .contact-btn {
                width: 100% !important;
                max-width: none !important;
            }

            .primary-navigation > a,
            .primary-navigation [data-product-menu-trigger] {
                justify-content: flex-start !important;
                text-align: left !important;
            }

            .primary-navigation [data-product-menu-trigger] {
                background: rgba(153, 102, 51, 0.08);
                color: var(--dark-brown);
            }

            .primary-navigation [data-product-menu-trigger]::after {
                margin-left: auto;
            }

            .primary-navigation .mega-menu {
                position: static !important;
                left: auto !important;
                display: none !important;
                width: 100% !important;
                max-width: none !important;
                max-height: none !important;
                margin: 8px 0 12px !important;
                padding: 12px !important;
                overflow: visible !important;
                background: #f8f4ef !important;
                border: 1px solid rgba(153, 102, 51, 0.16) !important;
                border-radius: 8px !important;
                box-shadow: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
            }

            .primary-navigation .nav-item.is-open .mega-menu {
                display: block !important;
            }

            .primary-navigation .mega-menu-grid {
                grid-template-columns: 1fr !important;
                gap: 10px !important;
            }

            .primary-navigation .mega-category {
                padding: 10px 12px !important;
                background: #fff !important;
                border: 1px solid rgba(153, 102, 51, 0.1) !important;
                border-radius: 6px !important;
            }

            .primary-navigation .mega-category h4 {
                margin: 0 0 6px !important;
                color: var(--dark-brown) !important;
                font-size: 13px !important;
                line-height: 1.3 !important;
            }

            .primary-navigation .mega-category ul {
                gap: 0 !important;
                margin: 0 !important;
            }

            .primary-navigation .mega-category a {
                min-height: 36px !important;
                padding: 8px 0 !important;
                color: var(--text-gray) !important;
                background: transparent !important;
                border-radius: 0 !important;
                font-size: 13px !important;
                text-align: left !important;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .header-container,
            .footer-container {
                width: min(100% - 48px, 900px);
                padding-left: 0 !important;
                padding-right: 0 !important;
            }

            .primary-navigation {
                left: 0;
                right: 0;
                width: 100%;
            }

            .footer-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 34px;
            }

            .footer-contact {
                width: auto;
            }
        }
