 /* ------------------------------------------
           NAVBAR WRAPPER
        ------------------------------------------ */
        .navbar-wrapper {
            position: relative;
            width: 100%;
            background: #1a1f2e;
            z-index: 500;
        }

        /* Top utility bar — ENGLISH / SUPPORT / ABOUT */
        .top-bar {
            background: #f0f2f4;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            height: 36px;
            font-size: 12px;
            color: #333;
            border-bottom: 1px solid #dde0e4;
			padding-left: 11%;
  padding-right: 11%;
        }
        .top-bar-left { display: flex; align-items: center; gap: 6px; color: #333; font-weight: 600; }
        .top-bar-right { display: flex; align-items: center; gap: 24px; }
        .top-bar-right a { text-decoration: none; color: #005ea1; font-weight: 700; font-size: 12px; letter-spacing: 0.03em; }

        /* Main navbar row */
        .navbar {
            display: flex;
            align-items: stretch;
            padding: 0 40px; 
            height: 110px;
			padding-left: 11%;
  padding-right: 11%;/* tall header like Epson */
        }
.navbar-mobile-right{display: none;}
        /* EPSON logo area — left side */
        .nav-logo {
            display: flex;
            align-items: center;
            margin-right: auto;     /* pushes nav items to the right */
            flex-shrink: 0;
        }
        .nav-logo img {
            height: 42px;
            width: auto;
            display: block;
        }
        /* Fallback text logo if no image */
        .nav-logo-text {
            font-size: 32px;
            font-weight: 900;
            color: white;
            letter-spacing: -1px;
            line-height: 1;
        }
        .nav-logo-text sup { font-size: 11px; font-weight: 400; vertical-align: super; }

        /* Nav items — right side, aligned to bottom of header */
        .nav-items-group {
            display: flex;
            align-items: stretch;
            height: 100%;
        }

        /* ------------------------------------------
           TOP-LEVEL NAV ITEMS (desktop)
           On hover: white background box that fills
           the item height — matching Epson's style
        ------------------------------------------ */
        .nav-item {
            position: static;
            padding: 0 20px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: white;
            white-space: nowrap;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            transition: background 0.15s, color 0.15s; 
			background: url(../Content/images/seperator.png) right bottom no-repeat;
        }
        .nav-item:last-of-type { background: none; }
		.nav-item:last-child { background: none;}

        /* Hover + active: white box, dark text — Epson style */
        .nav-item:hover,
        .nav-item.hovered {
            background: white;
            color: #1a1f2e;
        }

        /* Search icon — right of nav items */
        .nav-search {
            /* display: flex;*/
			display: none;
            align-items: center;
            padding: 0 16px;
            cursor: pointer;
            color: white;
            transition: color 0.15s;
        }
        .nav-search:hover { color: #aac8e0; }
        .nav-search svg {
            width: 20px; height: 20px;
            stroke: currentColor; fill: none;
            stroke-width: 2; stroke-linecap: round;
        }

        /* ------------------------------------------
           DESKTOP MEGA MENU DROPDOWN
           Full-width panel, two zones:
           - .mega-menu-main  : white, holds regular columns
           - .mega-menu-discover : grey bg, "Discover More" column
        ------------------------------------------ */
        .mega-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            width: 100%;
            background: white;
            color: #222;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            z-index: 1000;
            flex-direction: row;
            align-items: stretch;  /* let discover panel stretch full height */
        }
        .mega-menu.visible { display: flex; }

        /* Left zone — white background, regular columns — pushed to RIGHT */
        .mega-menu-main {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: flex-start;
            padding: 28px 32px 32px 40px;
            gap: 0;
            flex: 0 0 auto;   /* shrink-wrap to content width */
            margin-left: auto; /* ? pushes content to the right, empty space on left */
        }

        /* Right zone — grey background, Discover More column */
        .mega-menu-discover {
            background: #f2f2f2;
            padding: 28px 40px 32px 28px;
            flex: 0 0 auto;    /* natural width, does NOT fill remaining space */
            min-width: 200px;
            max-width: 260px;
        }

        /* -- Regular category columns -- */
        .category-column {
            flex: 0 0 auto;
            width: 160px;       /* fixed width — consistent, no overflow */
            padding: 0 28px 0 0;
            border-right: 1px solid #e8e8e8;
			text-align: left;
  font-weight: 500;
			height: 325px;
        }
        .category-column:not(:first-child) {
            padding-left: 28px;
        }
        /* last regular column has no right border */
        .mega-menu-main .category-column:last-child {
            border-right: none;
        }
        /* discover column has no separator */
        .mega-menu-discover .category-column {
            width: 100%;
            padding: 0;
            border-right: none;
        }

        .category-column h3 {  
            margin: 0 0 14px 0;
            font-size: 14px;
            font-weight: 700;
            color: #111;
            white-space: nowrap;   /* heading stays on one line */
            text-transform: none;  /* Title Case — not all caps */
        }
        .category-column img {
            width: 100%;
            height: 110px;
            object-fit: cover;
            margin-bottom: 12px;
            border-radius: 4px;
            display: block;
        }
        .category-links { list-style: none; padding: 0; margin: 0; }
        .category-links li { margin: 7px 0; }
        .category-links a {
            text-decoration: none;
            color: #333;
            font-size: 13px;
            line-height: 1.45;
            white-space: normal;   /* allow wrapping — no overflow into next column */
            display: block;
            transition: color 0.15s;
            text-transform: none;  /* use CMS text as-is, no forced caps */
        }
        .category-links a:hover { color: #005ea1; text-decoration: underline; }

        /* ------------------------------------------
           HAMBURGER BUTTON (hidden on desktop)
        ------------------------------------------ */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 20px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            min-height: 60px;
        }
        .hamburger-btn .bar {
            display: block;
            width: 22px;
            height: 2px;
            background: white;
            border-radius: 2px;
        }
        .hamburger-btn .menu-label {
            font-size: 9px;
            color: white;
            letter-spacing: 0.05em;
            margin-top: 2px;
        }

        /* ------------------------------------------
           MOBILE FULL-SCREEN PANEL
           Matches Epson: dark overlay, drill-in style
        ------------------------------------------ */
        .mobile-panel {
            display: none; /* shown via JS */
            position: fixed;
            inset: 0;
            background: #1a1f2e;
            z-index: 2000;
            flex-direction: column;
            overflow: hidden;
        }
        .mobile-panel.open { display: flex; }

        /* Panel header: X | EPSON logo | Search */
        .mobile-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            min-height: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            flex-shrink: 0;
        }
        .mobile-panel-header .m-close {
            background: none; border: none; cursor: pointer;
            color: white; font-size: 20px; padding: 8px;
            display: flex; align-items: center;
        }
        .mobile-panel-header .m-logo {
            font-size: 22px; font-weight: 900;
            color: white; letter-spacing: -0.5px;
        }
        .mobile-panel-header .m-search {
            color: white; font-size: 18px; cursor: pointer;
            padding: 8px;
        }

        /* Scrollable content area */
        .mobile-panel-body {
            flex: 1;
            overflow-y: auto;
            position: relative;
        }

        /* Each "screen" inside the panel */
        .m-screen {
            position: absolute;
            inset: 0;
            overflow-y: auto;
            transition: transform 0.25s ease;
        }
        /* Root screen visible by default */
        .m-screen.root  { transform: translateX(0); }
        .m-screen.sub   { transform: translateX(100%); }
        /* Slide states */
        .m-screen.slide-out { transform: translateX(-100%); }
        .m-screen.slide-in  { transform: translateX(0); }

        /* Row item — e.g. PRINTERS › */
        .m-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            cursor: pointer;
            font-size: 13.5px;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: white;
            transition: background 0.15s;
        }
        .m-row:hover { background: rgba(255,255,255,0.05); }
        .m-row .m-chevron { font-size: 16px; color: rgba(255,255,255,0.5); }
        .m-row a {
            color: white; text-decoration: none;
            display: block; flex: 1;
        }

        /* Back row — ‹ PRINTERS */
        .m-back-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            font-size: 13.5px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: white;
            transition: background 0.15s;
        }
        .m-back-row:hover { background: rgba(255,255,255,0.05); }
        .m-back-row .m-back-chevron { font-size: 16px; }

        /* Secondary section (SUPPORT, ABOUT, ENGLISH) — lighter bg */
        .m-section-light { background: #f0f0f0; }
        .m-section-light .m-row { color: #1a1f2e; border-bottom-color: rgba(0,0,0,0.08); }
        .m-section-light .m-row .m-chevron { color: rgba(0,0,0,0.35); }
        .m-section-light .m-row a { color: #1a1f2e; }

        /* Language row */
        .m-lang-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 24px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
            font-size: 13.5px;
            font-weight: 700;
            color: #005ea1;
            letter-spacing: 0.06em;
            background: #f0f0f0;
        }

        /* ------------------------------------------
           DESKTOP ONLY / MOBILE ONLY
        ------------------------------------------ */
        @media (min-width: 769px) {
            .hamburger-btn { display: none !important; }
            .mobile-panel  { display: none !important; }
        }

        @media (max-width: 768px) {
            .top-bar        { display: none; }
            .navbar {
                padding: 0 16px;
                height: 60px;
                background: #1a1f2e;
                justify-content: space-between;
                align-items: center;
            }
            /* Hide desktop elements */
            .nav-items-group { display: none !important; }
            .mega-menu       { display: none !important; }
            .nav-logo        { margin-right: 0; position: absolute; left: 50%; transform: translateX(-50%); }

            .hamburger-btn { display: flex !important;
				left: 0;
  				position: absolute;}

            .navbar-mobile-right {
                display: flex;
                align-items: center;
                gap: 4px;
            }
            .navbar-mobile-search {
                color: white;
                font-size: 18px;
                cursor: pointer;
                padding: 8px;
            }
        }