       :root {
            --primary: #fec200; /* Industrie Yellow */
            --primary-hover: #e0ab00;
            --secondary: #001d38; /* Industrie Dark Navy */
            --secondary-light: #002b54;
            --text-dark: #222222;
            --text-muted: #555555;
            --bg-light: #f5f5f5;
            --white: #ffffff;
            --border-color: #eeeeee;
            --transition: all 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Funnel Display', sans-serif;
            color: var(--text-muted);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Funnel Display', sans-serif;
            color: var(--secondary);
            font-weight: 700;
            line-height: 1.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Global Section Padding --- */
        .section { padding: 20px 0; }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 25px;
            font-weight: 800;
        }
        .section-subtitle {
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-family: 'Funnel Display', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-subtitle::before {
            content: '';
            display: inline-block;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
            margin-right: 15px;
        }

        /* --- Buttons --- */
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 35px;
            font-family: 'Funnel Display', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }
        .btn i { margin-left: 8px; transition: transform 0.3s ease; }
        .btn:hover i { transform: translateX(5px); }
        .btn-primary { background: var(--primary); color: var(--secondary); }
        .btn-primary:hover { background: var(--secondary); color: var(--white); }
        .btn-secondary { background: var(--secondary); color: var(--white); }
        .btn-secondary:hover { background: var(--primary); color: var(--secondary); }

        /* --- Top Bar --- */
        .top-bar {
            background-color: var(--secondary);
            color: #b0c4de;
            padding: 12px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; }
        .top-bar-right { display: flex; gap: 25px; align-items: center; }
        .top-bar i { color: var(--primary); margin-right: 8px; font-size: 1rem; }
        .social-links a { color: #b0c4de; margin-left: 15px; transition: var(--transition); }
        .social-links a:hover { color: var(--primary); }

        /* --- Header --- */
        header {
            background: var(--white);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
           position: sticky; 
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
            position: relative;
        }
        
        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo img {
            max-height: 50px;
            width: auto;
            object-fit: contain;
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: var(--secondary);
            cursor: pointer;
        }

        .header-right { display: flex; align-items: center; height: 100%; }

        .nav-links { display: flex; list-style: none; height: 100%; }
        .nav-links > li { height: 100%; display: flex; align-items: center; margin-right: 35px; }
        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-family: 'Funnel Display', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .nav-links a:hover { color: var(--primary); }

        /* Dropdown */
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 500px; /* Widened for 2 columns */
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 3px solid var(--primary);
            list-style: none;
            padding: 15px; /* Adjusted padding for grid */
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1001;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr; /* 2 Column Layout */
            gap: 5px;
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu li { width: 100%; }
        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: var(--text-muted);
            font-family: 'Funnel Display', sans-serif;
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition);
        }
        .dropdown-menu a:hover { 
            color: var(--primary); 
            background: var(--bg-light);
            padding-left: 25px; 
        }

        .header-btn {
            background: var(--primary);
            color: var(--secondary);
            height: 90px;
            display: flex;
            align-items: center;
            padding: 0 35px;
            font-family: 'Funnel Display', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition);
            margin-left: 20px;
        }
        .header-btn:hover { background: var(--secondary); color: var(--white); }

        /* --- Hero Slider Section --- */
        .hero-slider {
            position: relative;
            overflow: hidden;
            background-color: var(--secondary);
            height: clamp(650px, 80vh, 750px); /* Locks in a consistent height to prevent jumping */
        }
        .hero-slide {
            background-size: cover;
            background-position: center;
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0; visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s;
            display: flex; 
            align-items: center;
            padding-bottom: 80px; /* Pushes content up slightly above the overlapping boxes */
        }
        .hero-slide.active {
            opacity: 1; visibility: visible;
            z-index: 2; /* Ensures active slide stays on top */
        }
        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 29, 56, 0.75), rgba(0, 29, 56, 0.75));
            z-index: 1;
        }
        .hero-slide .container {
            position: relative;
            z-index: 2;
        }
        .hero-slide h1 {
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 25px;
            font-weight: 800;
            color: var(--white);
            max-width: 800px;
        }
        .hero-slide h1 span { color: var(--primary); }
        .hero-slide p {
            font-size: 1.15rem;
            max-width: 600px;
            margin-bottom: 40px;
            color: #d1d5db;
        }

        /* Slider Text Animations */
        .hero-slide h1, .hero-slide p, .hero-slide .hero-btns {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .hero-slide.active h1 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
        .hero-slide.active p { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
        .hero-slide.active .hero-btns { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 5;
            pointer-events: none;
        }
        .slider-nav button {
            width: 50px; height: 50px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            cursor: pointer;
            pointer-events: auto;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        .slider-nav button:hover {
            background: var(--primary);
            color: var(--secondary);
            border-color: var(--primary);
        }

        /* --- Overlapping Feature Boxes  --- */
        .feature-overlap {
            margin-top: -100px;
            position: relative;
            z-index: 10;
            margin-bottom: 100px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .f-box {
            background: var(--white);
            padding: 50px 40px;
            transition: var(--transition);
            border-right: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }
        .f-box:last-child { border-right: none; }
        .f-box::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 0; height: 3px;
            background: var(--primary);
            transition: width 0.4s ease;
        }
        .f-box:hover::before { width: 100%; }
        .f-box:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 2; }
        
        .f-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }
        .f-box h3 { font-size: 1.3rem; margin-bottom: 15px; }
        .f-box p { font-size: 0.95rem; margin-bottom: 0; }

        /* --- About Section --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-img-wrap {
            position: relative;
            padding-right: 30px;
            padding-bottom: 30px;
        }
        .about-img-wrap img {
            width: 100%;
            display: block;
        }
        .about-img-wrap::after {
            content: '';
            position: absolute;
            top: 30px; right: 0; bottom: 0; left: 30px;
            border: 10px solid var(--primary);
            z-index: -1;
        }
        .exp-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--secondary);
            color: var(--white);
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .exp-badge h2 { color: var(--primary); font-size: 3.5rem; line-height: 1; margin-bottom: 5px; }
        .exp-badge p { font-family: 'Funnel Display', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin: 0;}
        
        .about-content ul { list-style: none; margin: 25px 0 35px; }
        .about-content li { display: flex; align-items: center; margin-bottom: 15px; font-weight: 600; color: var(--secondary); }
        .about-content li i { color: var(--primary); margin-right: 15px; font-size: 1.2rem; }

        /* --- Products Section --- */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .product-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .product-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); transform: translateY(-5px); }
        .product-img { overflow: hidden; position: relative; }
        .product-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; display: block; }
        .product-card:hover .product-img img { transform: scale(1.1); }
        
        .product-info {
            padding: 30px 25px;
            background: var(--white);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .product-info h3 { font-size: 1.25rem; margin-bottom: 15px; color: var(--secondary); line-height: 1.4; min-height: 50px;}
        .product-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }
        
        .product-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; margin-top: auto;}
        .meta-num { font-size: 3.5rem; font-family: 'Funnel Display', sans-serif; font-weight: 800; color: transparent; -webkit-text-stroke: 1px #e5e5e5; line-height: 1; }
        .meta-line { flex: 1; height: 1px; background: #e5e5e5; }
        
        .product-bottom { display: flex; justify-content: space-between; align-items: center; }
        .view-details { font-family: 'Funnel Display', sans-serif; font-weight: 700; color: var(--text-dark); text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
        .view-details:hover { color: var(--primary); }
        .view-btn { width: 35px; height: 35px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
        .view-btn:hover { background: var(--primary); color: var(--white); }

        .product-nav { display: flex; gap: 10px; }
        .product-nav button { width: 45px; height: 45px; background: #fdf5e6; border: 1px solid #fde1b0; cursor: pointer; color: var(--text-dark); transition: var(--transition); display: flex; align-items: center; justify-content: center; font-size: 1rem;}
        .product-nav button:hover { background: var(--primary); border-color: var(--primary); color: var(--secondary); }

        /* --- Why Choose Us --- */
        .wcu-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        /* --- Testimonials --- */
        .testi-section {
            background: var(--secondary) url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48ZyBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiPjxjaXJjbGUgY3g9IjIwMCIgY3k9IjIwMCIgcj0iMiIvPjwvZz48L3N2Zz4=');
            color: var(--white);
            text-align: center;
        }
        .testi-section .section-title { color: var(--white); }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
            text-align: left;
        }
        .testi-card {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-left: 3px solid var(--primary);
            position: relative;
        }
        .testi-icon { position: absolute; top: 30px; right: 30px; color: rgba(254, 194, 0, 0.2); font-size: 3rem; }
        .testi-card p { font-size: 1.05rem; font-style: italic; margin-bottom: 25px; color: #ddd; line-height: 1.6;}
        .client-info { display: flex; align-items: center; gap: 20px; }
        .client-info img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--primary); }
        .client-info h4 { color: var(--white); margin: 0; font-size: 1.1rem; }
        .client-info span { color: var(--primary); font-size: 0.85rem; font-family: 'Funnel Display', sans-serif;}

        /* --- Achievements Banner --- */
        .achievements-banner {
            background: var(--primary);
            padding: 60px 0;
            color: var(--secondary);
        }
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }
        .achievement-box h3 { font-size: 3.5rem; margin-bottom: 5px; color: var(--secondary); line-height: 1;}
        .achievement-box p { font-family: 'Funnel Display', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.95rem; margin: 0; color: var(--secondary);}

        /* --- Gallery Section --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 40px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* --- Footer --- */
        footer {
            background: #011425;
            color: #a0abbf;
            padding-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-logo { display: inline-block; text-decoration: none; margin-bottom: 20px; }
        .footer-logo img { max-height: 50px; width: auto; object-fit: contain; }
        
        .footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; position: relative; padding-bottom: 10px;}
        .footer-col h4::after { content: ''; position: absolute; left:0; bottom:0; width: 30px; height: 2px; background: var(--primary); }
        
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { color: #a0abbf; text-decoration: none; transition: var(--transition); font-size: 0.95rem; display: flex; align-items: center;}
        .footer-links a i { margin-right: 10px; color: var(--primary); font-size: 0.8rem; transition: var(--transition);}
        .footer-links a:hover { color: var(--white); }
        .footer-links a:hover i { transform: translateX(5px); }

        .footer-contact li { display: flex; margin-bottom: 20px; }
        .footer-contact i { color: var(--primary); margin-right: 15px; font-size: 1.2rem; margin-top: 5px;}
        
        .footer-bottom {
            background: #000d1a;
            padding: 25px 0;
            text-align: center;
            font-size: 0.95rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 1024px) {
            .mobile-menu-toggle { display: block; }
            .header-right {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-top: 3px solid var(--primary);
                display: none;
                height: auto;
            }
            .header-right.active { display: flex; }
            
            .nav-links { flex-direction: column; width: 100%; height: auto; }
            .nav-links > li { width: 100%; margin-right: 0; display: block; }
            .nav-links > li > a { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
            
            .dropdown-menu {
                position: static;
                min-width: 100%;
                box-shadow: none;
                border-top: none;
                padding: 0;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                grid-template-columns: 1fr;
                margin-bottom: 10px;
            }
            .dropdown.active .dropdown-menu { display: grid; }
            .dropdown-menu a { padding: 10px 15px; border-bottom: 1px solid var(--bg-light); }
            
            .header-btn { display: inline-flex; margin-top: 20px; width: 100%; justify-content: center; height: 50px; margin-left: 0; }

            .feature-grid { grid-template-columns: 1fr; }
            .feature-overlap { margin-top: 0; }
            .about-grid, .wcu-grid, .testi-grid { grid-template-columns: 1fr; gap: 40px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .achievements-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .hero-slider { height: 650px; }
            .hero-slide { padding-bottom: 50px; }
            .slider-nav { padding: 0 15px; }
            .slider-nav button { width: 40px; height: 40px; font-size: 1rem; }
            .products-grid, .achievements-grid, .gallery-grid { grid-template-columns: 1fr; }
            .hero-slide h1 { font-size: 2.2rem; }
            .footer-grid { grid-template-columns: 1fr; }
        }









        /* Encapsulated styles for the product section */
        .js-product-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 1200px;
            margin: 20px auto;
            
            color: #333;
        }

        .productname-hero {
            margin-bottom: 30px;
            border-bottom: 2px solid #FFC107;
            padding-bottom: 10px;
        }

        .productname-hero h1 {
            color: #051829;
            margin: 0;
            font-size: 2.2rem;
        }

        .product-main-content {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .product-image-box {
            flex: 1;
        }

        .product-image-box img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }

        .product-text-box {
            flex: 1;
        }

        .quote-btn {
            display: inline-block;
            background-color: #051829;
            color: #FFC107;
            padding: 12px 24px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            border-radius: 4px;
        }

        .faq-section {
            margin-top: 40px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-item {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
        }

        .faq-item h3 {
            color: #051829;
            margin-top: 0;
            font-size: 1.1rem;
        }

        .faq-item p {
            margin-bottom: 0;
            font-size: 0.95rem;
            color: #555;
        }














        .eyebrow{
    display:flex;
    align-items:center;
    gap:8px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .eyebrow::before{
    content:"";
    width: 22px;
    height: 2px;
    background: var(--gold);
    display:inline-block;
  }

  /* ===== Wrapper ===== */
  .product-section{
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 24px 90px;
  }

  .breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 36px;
  }
  .breadcrumb a{
    color: var(--text-muted);
    text-decoration: none;
  }
  .breadcrumb a:hover{ color: var(--navy); }
  .breadcrumb span.current{ color: var(--navy); font-weight: 600; }

  /* ===== Top: Gallery + Info ===== */
  .product-top{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }

  /* Gallery */
  .gallery-main{
    position:relative;
    border-radius: var(--radius);
    overflow:hidden;
    background: var(--bg-light);
    aspect-ratio: 1/1;
    box-shadow: var(--shadow);
  }
  .gallery-main img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
  }
  .gallery-badge{
    position:absolute;
    top:18px;
    left:18px;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 100px;
  }

  .thumb-row{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
  }
  .thumb{
    border-radius: 8px;
    overflow:hidden;
    aspect-ratio: 1/1;
    background: var(--bg-light);
    border: 2px solid transparent;
    cursor:pointer;
    transition: border-color .2s ease;
  }
  .thumb.active{ border-color: var(--gold); }
  .thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

  /* Info */
  .product-info h1{
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--navy);
  }
  .product-info h1 span{ color: var(--gold-dark); }


.map-link{
    text-decoration: none;
    color: white;
}


  .rating-row{
    display:flex;
    align-items:center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .stars{ color: var(--gold); font-size: 15px; letter-spacing: 2px; }
  .rating-row .rcount{ font-size: 13px; color: var(--text-muted); }

  .price-row{
    display:flex;
    align-items:baseline;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-light);
  }
  .price-row .price{
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
  }
  .price-row .unit{
    font-size: 14px;
    color: var(--text-muted);
  }
  .price-row .stock{
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    color: #1a8a4d;
    display:flex;
    align-items:center;
    gap:6px;
  }
  .price-row .stock::before{
    content:"";
    width:8px; height:8px;
    border-radius:50%;
    background:#1a8a4d;
    display:inline-block;
  }

  .product-info p.desc{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 26px;
  }

  .spec-list{
    list-style:none;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin-bottom: 30px;
  }
  .spec-list li{
    font-size: 14px;
    color: var(--text-dark);
    display:flex;
    align-items:flex-start;
    gap: 10px;
  }
  .spec-list li::before{
    content:"✓";
    color: var(--white);
    background: var(--gold);
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    margin-top: 1px;
  }

  /* Quantity + CTA */
  .action-row{
    display:flex;
    align-items:center;
    gap: 16px;
    margin-bottom: 22px;
  }
  .qty-box{
    display:flex;
    align-items:center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow:hidden;
  }
  .qty-box button{
    width: 40px;
    height: 46px;
    border:none;
    background: var(--bg-light);
    color: var(--navy);
    font-size: 16px;
    cursor:pointer;
  }
  .qty-box input{
    width: 50px;
    height: 46px;
    border:none;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    text-align:center;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
  }
  .qty-box input:focus{ outline:none; }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration:none;
    cursor:pointer;
    border: none;
    white-space: nowrap;
  }
  .btn-primary{
    background: var(--gold);
    color: var(--navy);
    flex: 1;
  }
  .btn-primary:hover{ background: var(--gold-dark); }
  .btn-outline{
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
  }
  .btn-outline:hover{ background: var(--navy); color: var(--white); }

  .trust-row{
    display:flex;
    gap: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border-light);
  }
  .trust-item{
    display:flex;
    align-items:center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
  }
  .trust-item .ic{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-light);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--gold-dark);
    font-size: 15px;
    flex-shrink:0;
  }

  /* ===== Tabs: Description / Specification ===== */
  .tabs-wrap{
    margin-top: 80px;
  }
  .tab-headers{
    display:flex;
    gap: 40px;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 34px;
  }
  .tab-btn{
    background:none;
    border:none;
    padding: 14px 2px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    cursor:pointer;
    position:relative;
  }
  .tab-btn.active{ color: var(--navy); }
  .tab-btn.active::after{
    content:"";
    position:absolute;
    bottom:-2px; left:0;
    width:100%;
    height:2px;
    background: var(--gold);
  }

  .tab-panel{ display:none; }
  .tab-panel.active{ display:block; }

  .tab-panel p{
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 760px;
  }

  .spec-table{
    width: 100%;
    max-width: 700px;
    border-collapse: collapse;
    font-size: 14px;
  }
  .spec-table tr{ border-bottom: 1px solid var(--border-light); }
  .spec-table td{
    padding: 14px 10px;
    color: var(--text-muted);
  }
  .spec-table td:first-child{
    width: 40%;
    font-weight: 700;
    color: var(--navy);
  }

  /* ===== Responsive ===== */
  @media (max-width: 860px){
    .product-top{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .spec-list{ grid-template-columns: 1fr; }
    .product-info h1{ font-size: 28px; }
    .trust-row{ flex-direction:column; gap: 14px; }
    .tab-headers{ gap: 24px; }
  }

  :root{
    --navy: #001D38;
    --navy-soft: #0B2A4A;
    --gold: #FEC200;
    --gold-dark: #E5AE00;
    --text-dark: #001D38;
    --text-muted: #6B7789;
    --border-light: #E7EAEE;
    --bg-light: #F7F8FA;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(0, 29, 56, 0.08);
  }



 .gallery-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
           
        }

       

        .gallery-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
        }

        .gallery-header p {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            align-items: start;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background-color: var(--secondary-bg);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            cursor: pointer;
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            aspect-ratio: 4 / 3; /* Maintain a consistent aspect ratio */
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform var(--transition-speed) ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
            opacity: 0;
            transition: opacity var(--transition-speed) ease;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .overlay-content {
            color: white;
            transform: translateY(20px);
            transition: transform var(--transition-speed) ease;
        }

        .gallery-item:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .overlay-category {
            font-size: 0.875rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: var(--modal-bg);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.3s ease;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content-wrapper {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .modal-img {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .modal.active .modal-img {
            transform: scale(1);
        }

        .modal-caption {
            color: white;
            margin-top: 1rem;
            font-size: 1.25rem;
            text-align: center;
            font-weight: 500;
        }

        .modal-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            cursor: pointer;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            transition: all 0.2s ease;
            font-size: 24px;
            line-height: 1;
        }

        .modal-btn:hover {
            background: white;
            color: var(--text-main);
            border-color: white;
            transform: scale(1.1);
        }

        .close-btn {
            top: -60px;
            right: -60px;
        }

        .prev-btn {
            left: -80px;
            top: 50%;
            transform: translateY(-50%);
        }

        .next-btn {
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
        }

        .prev-btn:hover, .next-btn:hover {
             transform: translateY(-50%) scale(1.1);
        }

        @media (max-width: 1200px) {
            .prev-btn { left: 20px; }
            .next-btn { right: 20px; }
            .close-btn { top: 20px; right: 20px; }
            .modal-content-wrapper { max-width: 100vw; }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 1rem;
            }
            .gallery-section { padding: 2rem 1rem; }
            .modal-btn { width: 40px; height: 40px; font-size: 20px; }
        }
        
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utility class to prevent body scrolling when modal is open */
        body.modal-open {
            overflow: hidden;
        }
        :root {
            --primary-bg: #f9fafb;
            --secondary-bg: #ffffff;
            --text-main: #111827;
            --text-muted: #6b7280;
            --border-color: #e5e7eb;
            --modal-bg: rgba(17, 24, 39, 0.95);
            --transition-speed: 0.3s;
        }

        /* Mobile horizontal overflow fixes */
@media (max-width: 768px) {

    /* Prevent mobile horizontal scrolling */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Top bar */
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-right {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Founder section */
    .wcu-content > div[style*="display: flex"] {
        flex-direction: column;
        text-align: center;
        gap: 15px !important;
    }

    .wcu-content > div[style*="display: flex"] img {
        width: 140px !important;
        height: 140px !important;
    }

    /* Make all images responsive */
    img {
        max-width: 100%;
    }

    /* Prevent grid/flex children from forcing width */
    .container,
    .products-grid,
    .about-grid,
    .wcu-grid,
    .testi-grid,
    .footer-grid {
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}