  :root {
            /* === CORE BRAND (DARK PREMIUM) === */
            --primary: #0b0b0c;              /* deep charcoal black */
            --primary-dark: #050505;
            --primary-light: #141416;

            /* === PREMIUM ACCENT (NOT YELLOW, NOT BLUE) === */
            --accent: #c89b3c;              /* rich gold */
            --accent-hover: #e0b85c;
            --accent-soft: rgba(200,155,60,0.12);

            /* === TEXT (SOFT PREMIUM WHITE SCALE) === */
            --text-dark: #f5f5f5;
            --text-medium: #cfcfcf;
            --text-light: #8a8a8a;

            /* === BACKGROUND SYSTEM === */
            --bg-main: #0b0b0c;
            --bg-card: #121214;
            --bg-glass: rgba(255,255,255,0.04);

            /* === BORDER / DEPTH === */
            --border: rgba(255,255,255,0.08);

            /* === STATUS === */
            --success: #22c55e;

            /* === SHADOWS (DEEP PREMIUM) === */
            --shadow-sm: 0 2px 6px rgba(0,0,0,0.4);
            --shadow: 0 8px 20px rgba(0,0,0,0.5);
            --shadow-md: 0 12px 30px rgba(0,0,0,0.6);
            --shadow-lg: 0 20px 50px rgba(0,0,0,0.7);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-main);

            /* PREMIUM TEXTURE */
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(200,155,60,0.05), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03), transparent 40%);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        /*header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            z-index: 1000;
        }*/

       /* .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 10px;
        }*/
        .logo {
            display: flex;
            align-items: center;
            margin-left: 30px;
            overflow: visible; 
        }
         .logo img {
            height: 50px;
            transform: scale(2.0);
            width: auto;
            object-fit: contain;
            transform-origin: left center;
        }

        /*.logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--white);
            font-size: 16px;
        }*/

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center; 
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.25s ease;
        }
        .btn i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #c89b3c, #e0b85c);
            color: #111;
            border: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(200,155,60,0.5);
        }

        .btn-dark {
            background: #1a1a1a;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
        }

        .btn-dark:hover {
			background: #262626;
            transform: translateY(-3px);
			box-shadow: 0 18px 45px rgba(0,0,0,0.6);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(200,155,60,0.4);
            color: #c89b3c;
            padding: 12px 22px;
        }

        .btn-outline:hover {
            background: #c89b3c;
            color: #111;
        }

        .btn-whatsapp {
            background: #25D366;
            color: white;
        }

        /*.btn-whatsapp:hover {
            background: #128C7E;
        }*/
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 80px;
            background: rgba(10,10,10,0.6);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
		.nav.scrolled {
            background: rgba(5,5,5,0.85);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 10px 40px rgba(0,0,0,0.7);
            -webkit-backdrop-filter: blur(12px);
        }

        /*.nav.scrolled {
            background: var(--white);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }*/

        .nav.scrolled .nav-links > li > a,
        .nav.scrolled .logo {
            color: #ffffff;
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
			padding: 10px 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1002;
            height: 100%;
        }
		.nav-links {
            display: flex;
            gap: 0;
            list-style: none;
            margin: 0 auto;
            flex: 1;
            justify-content: center;
        }

        .nav-links a {
            display: block;
            padding: 12px 14px;
            color: var(--text-medium);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s;
            border-bottom: 2px solid transparent;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
        }

        /*.nav-links a:hover::after,
        .nav-links a.active::after {
            width: 70%;
        }*/
		.nav-cta {
            display: block;
            margin-right: 10px;
        }
        .mobile-toggle {
            display: none;
            font-size: 22px;
            background: none;
            border: none;
            transition: transform 0.3s;
            position: relative;
            z-index: 10001;
            cursor: pointer;
            color: var(--text-medium);
        }
		
		/* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 260px;
            height: 100vh;
            background: rgba(15,15,15,0.95);
            backdrop-filter: blur(14px);
            border-left: 1px solid rgba(255,255,255,0.08);
            z-index: 1001;
            transition: right 0.4s ease;
            padding: 80px 20px;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--text-medium);
            font-size: 28px;
            cursor: pointer;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            list-style: none;
        }

        .mobile-menu-links a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }
        .mobile-menu-links a:hover {
            color: var(--accent);
        }
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;   /* IMPORTANT FIX */
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);  /* dark overlay */
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }
       /* nav {
            border-top: 1px solid var(--border);
        }*/
        
        /* Dropdown container */
        .dropdown {
            position: relative;
        }

        /* Hide menu initially */
        .dropdown-menu {
            position: absolute;
            top: 110%;
            left: 0;
            background: rgba(20,20,20,0.95);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            min-width: 230px;
            display: none;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            padding: 10px 0;
            z-index: 999;
        }
        .dropdown.active .dropdown-menu {
            display: block;
        }
        .dropdown.active .dropdown-toggle i {
            transform: rotate(180deg);
        }
        /* Dropdown links */ 
        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu li a {
            color: var(--text-medium);
            padding: 12px 18px;
            display: block;
            transition: all 0.25s ease;
            text-decoration: none;
            font-size: 14px;
        }

        .dropdown-menu li a:hover {
            background: rgba(200,155,60,0.08);
            color: var(--accent);
            padding-left: 22px;
        }
        .dropdown-menu li a.active {
            background: rgba(200,155,60,0.08);
        }

        /* Show on hover */
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        /* ACTIVE CATEGORY ITEM */
        .mobile-menu .dropdown-menu li a.active {
            background: linear-gradient(
                135deg,
                rgba(200,155,60,0.18),
                rgba(200,155,60,0.05)
            );
            color: var(--accent);
            border-left: 3px solid var(--accent);
            padding-left: 16px;
            border-radius: 6px;
            font-weight: 500;
        }
        .mobile-menu  .mobile-menu-links li a.active {
		   color: var(--accent);
		 }
        .mobile-menu .dropdown.active > .dropdown-toggle {
			color: var(--accent);
		}
        /*.mobile-menu .mobile-menu-links .dropdown .dropdown-toggle {
		   color: var(--accent);
        }*/
        .category-intro {
            padding-bottom: 40px;
            text-align: center;
        }
        .category-intro h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .category-intro p {
            max-width: 700px;
            margin: auto;
            color: var(--text-medium);
        }

       .page-header {
            padding: 105px 0 40px; background: var(--off-white);
            border-bottom: 1px solid var(--border);
        }
        .page-header .breadcrumbs {
            display: flex; align-items: center; gap: 8px; font-size: 14px;
            color: var(--text-light); margin-bottom: 12px;
        }
        .page-header .breadcrumbs a { color: var(--text-medium); text-decoration: none; }
        .page-header .breadcrumbs a:hover { color: var(--accent); }
        .page-header h1 {
            font-family: 'Outfit', sans-serif; font-size: 34px; font-weight: 700;
            color: #ffffff; margin-bottom: 8px;
        }
        .page-header p { color: var(--text-medium); font-size: 15px; }

        .products-section { padding: 60px 0; }
        
        .products-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
        }

        .product-card {
            background: var(--white); border: 1px solid var(--border); border-radius: 16px;
            overflow: hidden; transition: all 0.3s ease;
        }
        .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

        .product-image {
            height: 200px; background: var(--off-white); display: flex;
            align-items: center; justify-content: center; position: relative; overflow: hidden;
        }
        .product-image img { width: 100%; height: 100%; object-fit: cover; }
        .product-image .placeholder-icon { font-size: 48px; color: var(--text-light); }

        .product-info { padding: 20px; }
        .product-info h3 { font-size: 16px; font-weight: 600; color: #ffffff; margin-bottom: 6px; }
        .product-info p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
        .product-info .specs { font-size: 12px; color: var(--text-medium); margin-bottom: 16px; }
        .product-info .btn { width: 100%; justify-content: center; padding: 12px; font-size: 13px; }

        .cta-section {
            padding: 60px 0; background: var(--off-white);
            text-align: center;
        }
        .cta-section h3 { font-size: 24px; font-weight: 700; color: #ffffff; margin-bottom: 12px; }
        .cta-section p { color: var(--text-medium); margin-bottom: 24px; }
        .cta-section .btn { padding: 14px 28px; font-size: 15px; }

       /* Footer */
        footer {
            position: relative;
            background: linear-gradient(135deg, #0b0b0c, #121214);
            padding: 80px 0 30px;
            color: #e5e5e5;
            overflow: hidden;
        }
        footer .container {
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-about .logo {
            color: var(--white);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            margin-left: 0;
            overflow: visible;
        }
       .footer-about .logo img {
            height: 50px;
            transform: scale(2.0);
            width: auto;
            object-fit: contain;
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(6px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.35s ease;
            border: 1px solid rgba(255,255,255,0.08);
            text-decoration: none;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, #ff8c00, #ffb347);
            color: #111;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 25px rgba(255,140,0,0.4);
        }

        .footer-links h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            position: relative;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffb347;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 25px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-cta .btn {
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 50px;
            padding: 14px 20px;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            transition: all 0.35s ease;
            white-space: nowrap;
        }
        /* HOVER EFFECT (PREMIUM) */
        .floating-cta .btn:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
        }

        @media (max-width: 1024px) {
            .nav-links, .nav-cta {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .products-grid { 
                grid-template-columns: repeat(3, 1fr); 
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 769px) {
            /* Show dropdown on hover */
            .dropdown:hover .dropdown-menu {
                display: block;
            }
            /* Smooth arrow animation */
            .dropdown-toggle i {
                transition: transform 0.3s ease;
            }
            /* Rotate arrow UP on hover */
            .dropdown:hover .dropdown-toggle i {
                transform: rotate(180deg);
            }
            .feature-item:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-lg);
            }

        }
        @media (max-width: 768px) {
            .category-intro h1 {
                font-size: 22px;
            }
            .products-grid { 
                grid-template-columns: repeat(2, 1fr); 
            }
            * {
                -webkit-tap-highlight-color: transparent;
            }

           /* Remove focus background */
            a:focus,
            a:active,
            button:focus,
            button:active {
                outline: none;
                background: transparent !important;
            }
            .logo {
                margin-left: 0;   
            }

            .logo img {
                height: 40px;           
                transform: scale(1.8);  
                transform-origin: left center;
            }
            /*.nav.scrolled {
                backdrop-filter: none;       
                -webkit-backdrop-filter: none;
                background: var(--white);    
                box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            }*/
            .nav.scrolled {
                background: rgba(5,5,5,0.85);
                backdrop-filter: blur(18px);
                border-bottom: 1px solid rgba(255,255,255,0.08);
                box-shadow: 0 10px 40px rgba(0,0,0,0.7);
                -webkit-backdrop-filter: blur(12px);
            }
            .nav.scrolled .mobile-toggle i {
                color: var(--text-medium);
            }
            .nav-content {
                padding: 8px 15px;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .nav-links {
                display: none; /* hide desktop menu */
            }
            .nav-links a {
                font-size: 13px;
            }
            .nav-cta {
                display: none; /* hide button */
            }
            .mobile-toggle {
                display: block;
                -webkit-tap-highlight-color: transparent;
                outline: none;
                margin-left: auto;
                color: var(--text-medium);
            }
            .mobile-menu .dropdown .dropdown-menu {
                width: 100%;
                background: rgba(255,255,255,0.02); /* subtle glass */
                border-radius: 10px;
                padding: 8px 0;
                margin-top: 8px;
                border: 1px solid rgba(255,255,255,0.05);
            }
            .mobile-menu .dropdown-menu li a {
                display: block;
                padding: 6px 10px;
                border-radius: 6px;
                color: var(--text-medium);
                font-size: 14px;
                transition: all 0.25s ease;
            }
            .mobile-menu .dropdown-menu li a:hover {
                background: rgba(200,155,60,0.08);
                color: var(--accent);
                padding-left: 16px;
            }
            .mobile-menu a:active,
            .mobile-menu a:focus {
                color: var(--accent);
            }
            .mobile-menu a,
            .mobile-menu button {
                -webkit-tap-highlight-color: transparent;
            }
            
            .mobile-menu .dropdown-menu {
                display: none;
                position: static !important;
                width: 100%;
                padding-left: 15px;
                margin-top: 8px;
                border: none;
                box-shadow: none;
                background: transparent;
            }
            .mobile-menu .dropdown.active .dropdown-menu {
                display: block !important;
            }
            .dropdown-menu {
                display: none;
                position: static;
                box-shadow: none;
                border: none;
            }
             .dropdown.active .dropdown-menu {
                display: block;
            }
            .dropdown:hover .dropdown-menu {
                display: none !important; /* disable hover in mobile */
            }
            .dropdown-toggle i {
                transition: transform 0.3s ease;
            }
            .dropdown.active .dropdown-toggle i {
                transform: rotate(180deg);
            }
           footer {
                padding: 60px 0 20px;
            }
            .footer-about .logo {
                justify-content: center;   
                margin-bottom: 15px;
            }

            .footer-about .logo img {
                height: 40px;              
                transform: scale(1.8);     
                transform-origin: center;
                width: auto;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                 gap: 22px;
            }
            .footer-social {
                justify-content: center;
            }
            .footer-links h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .floating-cta {
                bottom: 16px;
                right: 16px;
            }
        }
        @media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }