/* Reserved for site-wide KingJet styles loaded from the public asset path. */


/* ============================================================================
   KINGJET WEBSITE - MAIN STYLESHEET ENTRYPOINT
   This file is organized by: Page and Section.

   ============================================================================
   SECTIONS:
   1. Base theme import (global, components, sections, and pages)
   2. Header & Navigation Styles (header.html)
   3. Homepage (index.html) Styles
   4. Products List Page (products-list.html)
   5. Products Printers Page (products-printers.html)
   6. Products Plotters Page (products-plotters.html)
   7. Products Spare Parts Page (products-spare-parts.html)
   8. Product View Page (product-view.html)
   9. About Us Page (aboutus.html)
   10. Contact Us Page (contactus.html)
   11. Footer Styles (footer.html)

   Core, fully organized styles live in `css/kingjet-style.css`,
   which is structured section-wise (hero, categories, products,
   why-choose-us, CTA, contact, etc.) and page-wise.
   ============================================================================ */

/* 1. BASE THEME IMPORT
   -------------------------------------------------------------------------- */
   @import url('kingjet-style.css');

   /* 2. HEADER & NAVIGATION STYLES (header.html)
      -------------------------------------------------------------------------- */
   :root {
       --kingjet-primary: #26ab4b;
       --kingjet-primary-dark: #1e8e3e;
       --kingjet-secondary: #020202;
       --kingjet-light: #f8f9fa;
       --kingjet-gray: #6c757d;
       --hero-gradient: linear-gradient(135deg, rgba(38, 171, 75, 0.1) 0%, rgba(30, 142, 62, 0.3) 100%);
       --hero-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
       --hero-button-gradient: linear-gradient(135deg, #26ab4b 0%, #1e8e3e 100%);
       --hero-button-hover: linear-gradient(135deg, #1e8e3e 0%, #26ab4b 100%);
   }
   
   *, *::before, *::after {
       box-sizing: border-box;
   }
   
   html {
       scrollbar-width: none;
       -ms-overflow-style: none;
   }
   
   html::-webkit-scrollbar {
       display: none;
   }
   
   body {
       margin: 0;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       background-color: #fdfdfd;
       color: #333333;
       overflow-x: hidden;
   }
   
   .container {
       max-width: 1400px;
       margin-left: auto;
       margin-right: auto;
       padding-left: 2.5rem;
       padding-right: 2.5rem;
   }
   
   @media (max-width: 768px) {
       .container {
           padding-left: 1.25rem;
           padding-right: 1.25rem;
       }
   }
   
   /* Navigation wrapper */
   .navigation {
       background-color: #ffffff;
       box-shadow: none;
       border-bottom: none;
       position: relative;
       z-index: 1000;
   }
   
   .navigation-content {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 0.75rem 0;
   }
   
   /* Header Left - Logo */
   .header-left {
       flex-shrink: 0;
   }
   
   .logo a {
       display: inline-block;
   }
   
   .logo img {
       height: 55px;
       width: auto;
       vertical-align: middle;
       transition: opacity 0.3s;
   }
   
   .logo a:hover img {
       opacity: 0.85;
   }
   
   /* Header Right - Nav + CTA */
   .header-right {
       display: flex;
       align-items: center;
       gap: 1.5rem;
       flex-grow: 1;
       justify-content: flex-end;
   }
   
   /* Navbar */
   .navbar {
       display: flex;
       align-items: center;
   }
   
   #navbar {
       flex-grow: 1;
   }
   
   /* Nav menu - HORIZONTAL layout */
   .navbar-nav {
       margin: 0;
       padding: 0;
       list-style: none;
       display: flex;
       align-items: center;
       gap: 0.5rem;
       flex-direction: row;
   }
   
   /* Nav items */
   .navbar-nav > li {
       position: relative;
   }
   
   /* Nav links */
   .navbar-nav a {
       font-weight: 600;
       font-size: 0.95rem;
       color: #000000;
       padding: 0.6rem 1rem;
       display: inline-block;
       border-radius: 4px;
       transition: all 0.25s ease;
       text-decoration: none;
   }
   
   .navbar-nav a:hover,
   .navbar-nav a:focus {
       background-color: #e8f5e9;
       color: #2e7d32;
       text-decoration: none;
   }
   
   /* Active state */
   .navbar-nav > li.active > a {
       color: #2e7d32;
   }
   
   /* Dropdown indicator icon */
   .navbar-nav > li > a > .fa-angle-down {
       margin-left: 0.3rem;
       font-size: 0.7rem;
       transition: transform 0.3s ease;
   }
   
   .navbar-nav li:hover > a > .fa-angle-down {
       transform: rotate(180deg);
   }
   
   /* Navbar CTA - Contact & Enquiry */
   .navbar-cta {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-left: 1rem;
       padding-left: 1.5rem;
       border-left: 1px solid #e0e0e0;
   }
   
   /* Call Link - Simple clickable style */
   .call-link {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       text-decoration: none;
       color: #000000;
       transition: all 0.2s ease;
   }
   
   .call-link i {
       font-size: 1.1rem;
       color: #2e7d32;
   }
   
   .call-number {
       font-weight: 700;
       color: #000000;
       font-size: 0.95rem;
   }
   
   .call-link:hover,
   .call-link:focus {
       color: #1b5e20;
       text-decoration: underline;
   }
   
   .call-link:hover i,
   .call-link:focus i {
       color: #1b5e20;
   }
   
   .call-link:hover .call-number,
   .call-link:focus .call-number {
       color: #1b5e20;
   }
   
   /* Enquiry Button - Black with Green Accent */
   .enquiry-btn {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
       padding: 0.7rem 1.5rem;
       border-radius: 4px;
       font-size: 0.95rem;
       font-weight: 700;
       background-color: #2e7d32;
       color: #fff;
       text-decoration: none;
       transition: all 0.3s ease;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   
   .enquiry-btn i {
       font-size: 1rem;
       color: #ffffff;
   }
   
   .enquiry-btn:hover,
   .enquiry-btn:focus {
       background-color: #2e7d32;
       color: #ffffff;
       text-decoration: none;
       box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
       transform: translateY(-2px);
   }
   
   .enquiry-btn:hover i,
   .enquiry-btn:focus i {
       color: #1a1a1a;
   }
   
   /* Mobile Menu Toggle Button */
   .mobile-menu-toggle {
       display: none;
       flex-direction: column;
       justify-content: space-around;
       width: 30px;
       height: 24px;
       background: transparent;
       border: none;
       cursor: pointer;
       padding: 0;
       z-index: 1001;
   }
   
   .mobile-menu-toggle span {
       width: 100%;
       height: 3px;
       background-color: #333;
       border-radius: 2px;
       transition: all 0.3s ease;
   }
   
   .mobile-menu-toggle.active span:nth-child(1) {
       transform: rotate(45deg) translate(6px, 6px);
   }
   
   .mobile-menu-toggle.active span:nth-child(2) {
       opacity: 0;
   }
   
   .mobile-menu-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(6px, -6px);
   }
   
   /* ================= HERO BANNER SECTION (from index1.html) ================= */
   .hero-slider,
   .hero-slide {
       min-height: 500px;
       max-height: 550px;
   }
   .hero-slide {
       position: relative;
       height: 100%;
       display: flex;
       align-items: center;
       justify-content: flex-start;
   }
   
   .hero-slide::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 0, 0, 0.4);
       z-index: 1;
   }
   
   .hero-content {
       position: relative;
       z-index: 2;
       max-width: 600px;
       margin-left: 5%;
       padding: 0;
       text-align: left;
   }
   
   .hero-badge {
       display: inline-block;
       background: rgba(38, 171, 75, 0.9);
       color: white;
       padding: 8px 16px;
       border-radius: 20px;
       font-size: 0.85rem;
       font-weight: 700;
       letter-spacing: 1px;
       text-transform: uppercase;
       margin-bottom: 1.5rem;
       box-shadow: 0 4px 12px rgba(38, 171, 75, 0.3);
   }
   
   .hero-content h1 {
       font-size: clamp(2rem, 5vw, 3.5rem);
       line-height: 1.2;
       margin-bottom: 1.5rem;
       color: #000000;
       font-weight: 800;
       letter-spacing: -0.5px;
       text-shadow: 0 2px 4px rgba(0,0,0,0.1);
   }
   
   .hero-content h1 span {
       background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       font-weight: 900;
       text-shadow: none;
   }
   
   .hero-content p {
       font-size: clamp(0.9rem, 2vw, 1.1rem);
       line-height: 1.6;
       margin-bottom: 2rem;
       color: #282828;
       font-weight: 500;
       opacity: 0.9;
   }
   
   .hero-buttons {
       display: flex;
       gap: 1rem;
       justify-content: flex-start;
       flex-wrap: wrap;
   }
   
   .btn-hero {
       padding: 14px 28px;
       border-radius: 8px;
       font-weight: 700;
       text-decoration: none;
       transition: all 0.3s ease;
       border: none;
       cursor: pointer;
       font-size: 1rem;
   }
   
   .btn-primary-hero {
       background: linear-gradient(135deg, var(--kingjet-primary), var(--kingjet-primary-dark));
       color: white;
       box-shadow: 0 6px 20px rgba(38, 171, 75, 0.4);
   }
   
   .btn-primary-hero:hover {
       transform: translateY(-3px);
       box-shadow: 0 10px 25px rgba(38, 171, 75, 0.6);
   }
   
   .btn-secondary-hero {
       background: rgba(255, 255, 255, 0.9);
       color: #333333;
       border: 1px solid rgba(38, 171, 75, 0.3);
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   }
   
   .btn-secondary-hero:hover {
       background: white;
       border-color: var(--kingjet-primary);
       transform: translateY(-3px);
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   }
   
   @media (max-width: 768px) {
       .hero-slider,
       .hero-slide {
           height: 400px;
           min-height: 300px;
           max-height: 400px;
       }
   }
      -------------------------------------------------------------------------- */
   :root {
       --kingjet-primary: #26ab4b;
       --kingjet-primary-dark: #1e8e3e;
       --kingjet-secondary: #020202;
       --kingjet-light: #f8f9fa;
       --kingjet-gray: #6c757d;
   }
   
   *, *::before, *::after {
       box-sizing: border-box;
   }
   
   html {
       scrollbar-width: none;
       -ms-overflow-style: none;
   }
   
   html::-webkit-scrollbar {
       display: none;
   }
   
   body {
       margin: 0;
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       background-color: #fdfdfd;
       color: #333333;
       overflow-x: hidden;
   }
   
   .container {
       max-width: 1400px;
       margin-left: auto;
       margin-right: auto;
       padding-left: 2.5rem;
       padding-right: 2.5rem;
   }
   
   @media (max-width: 768px) {
       .container {
           padding-left: 1.25rem;
           padding-right: 1.25rem;
       }
   }
   
   /* Navigation wrapper */
   .navigation {
       background-color: #ffffff;
       box-shadow: none;
       border-bottom: none;
       position: relative;
       z-index: 1000;
   }
   
   .navigation-content {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 0.75rem 0;
   }
   
   /* Header Left - Logo */
   .header-left {
       flex-shrink: 0;
   }
   
   .logo a {
       display: inline-block;
   }
   
   .logo img {
       height: 55px;
       width: auto;
       vertical-align: middle;
       transition: opacity 0.3s;
   }
   
   .logo a:hover img {
       opacity: 0.85;
   }
   
   /* Header Right - Nav + CTA */
   .header-right {
       display: flex;
       align-items: center;
       gap: 1.5rem;
       flex-grow: 1;
       justify-content: flex-end;
   }
   
   /* Navbar */
   .navbar {
       display: flex;
       align-items: center;
   }
   
   #navbar {
       flex-grow: 1;
   }
   
   /* Nav menu - HORIZONTAL layout */
   .navbar-nav {
       margin: 0;
       padding: 0;
       list-style: none;
       display: flex;
       align-items: center;
       gap: 0.5rem;
       flex-direction: row;
   }
   
   /* Nav items */
   .navbar-nav > li {
       position: relative;
   }
   
   /* Nav links */
   .navbar-nav a {
       font-weight: 600;
       font-size: 0.95rem;
       color: #000000;
       padding: 0.6rem 1rem;
       display: inline-block;
       border-radius: 4px;
       transition: all 0.25c ease;
       text-decoration: none;
   }
   
   .navbar-nav a:hover,
   .navbar-nav a:focus {
       background-color: #e8f5e9;
       color: #2e7d32;
       text-decoration: none;
   }
   
   /* Active state */
   .navbar-nav > li.active > a {
       color: #2e7d32;
   }
   
   /* Dropdown indicator icon */
   .navbar-nav > li > a > .fa-angle-down {
       margin-left: 0.3rem;
       font-size: 0.7rem;
       transition: transform 0.3s ease;
   }
   
   .navbar-nav li:hover > a > .fa-angle-down {
       transform: rotate(180deg);
   }
   
   /* Navbar CTA - Contact & Enquiry */
   .navbar-cta {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-left: 1rem;
       padding-left: 1.5rem;
       border-left: 1px solid #e0e0e0;
   }
   
   /* Call Link - Simple clickable style */
   .call-link {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       text-decoration: none;
       color: #000000;
       transition: all 0.2s ease;
   }
   
   .call-link i {
       font-size: 1.1rem;
       color: #2e7d32;
   }
   
   .call-number {
       font-weight: 700;
       color: #000000;
       font-size: 0.95rem;
   }
   
   .call-link:hover,
   .call-link:focus {
       color: #1b5e20;
       text-decoration: underline;
   }
   
   .call-link:hover i,
   .call-link:focus i {
       color: #1b5e20;
   }
   
   .call-link:hover .call-number,
   .call-link:focus .call-number {
       color: #1b5e20;
   }
   
   /* Enquiry Button - Black with Green Accent */
   .enquiry-btn {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
       padding: 0.7rem 1.5rem;
       border-radius: 4px;
       font-size: 0.95rem;
       font-weight: 700;
       background-color: #2e7d32;
       color: #fff;
       text-decoration: none;
       transition: all 0.3s ease;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   
   .enquiry-btn i {
       font-size: 1rem;
       color: #ffffff;
   }
   
   .enquiry-btn:hover,
   .enquiry-btn:focus {
       background-color: #2e7d32;
       color: #ffffff;
       text-decoration: none;
       box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
       transform: translateY(-2px);
   }
   
   .enquiry-btn:hover i,
   .enquiry-btn:focus i {
       color: #1a1a1a;
   }
   
   /* Mobile Menu Toggle Button */
   .mobile-menu-toggle {
       display: none;
       flex-direction: column;
       justify-content: space-around;
       width: 30px;
       height: 24px;
       background: transparent;
       border: none;
       cursor: pointer;
       padding: 0;
       z-index: 1001;
   }
   
   .mobile-menu-toggle span {
       width: 100%;
       height: 3px;
       background-color: #333;
       border-radius: 2px;
       transition: all 0.3s ease;
   }
   
   .mobile-menu-toggle.active span:nth-child(1) {
       transform: rotate(45deg) translate(6px, 6px);
   }
   
   .mobile-menu-toggle.active span:nth-child(2) {
       opacity: 0;
   }
   
   .mobile-menu-toggle.active span:nth-child(3) {
       transform: rotate(-45deg) translate(6px, -6px);
   }
   
   /* Hide slicknav */
   #slicknav-mobile {
       display: none;
   }
   
   /* Responsive Navigation - Tablet */
   @media (max-width: 1024px) {
       .navbar-cta {
           padding-left: 1rem;
           gap: 0.75rem;
       }
   
       .call-number {
           display: none;
       }
   
       .navbar-nav a {
           padding: 0.5rem 0.75rem;
           font-size: 0.9rem;
       }
   }
   
   /* Responsive Navigation - Mobile (keep horizontal) */
   @media (max-width: 768px) {
       .navigation-content {
           position: static;
       }
   
       .header-left {
           z-index: 1;
       }
   
       .logo img {
           height: 45px;
       }
   
       /* Hide hamburger icon – keep horizontal nav */
       .mobile-menu-toggle {
           display: none;
       }
   
       .header-right {
           position: static;
           top: auto;
           right: auto;
           width: auto;
           height: auto;
           flex-direction: row;
           align-items: center;
           background-color: transparent;
           box-shadow: none;
           padding: 0;
           gap: 1.5rem;
       }
   
       .header-right.active {
           right: auto;
       }
   
       .navbar {
           width: auto;
       }
   
       #navbar {
           width: auto;
           margin-left: 0;
       }
   
       .navbar-nav {
           flex-direction: row;
           flex-wrap: wrap;
           gap: 0.5rem;
           width: auto;
       }
   
       .navbar-nav > li {
           width: auto;
           border-bottom: none;
       }
   
       .navbar-nav > li:last-child {
           border-bottom: none;
       }
   
       .navbar-nav a {
           display: inline-block;
           justify-content: center;
           align-items: center;
           padding: 0.6rem 1rem;
           font-size: 0.95rem;
           border-radius: 4px;
       }
   
       .navbar-nav ul {
           position: absolute;
           box-shadow: none;
           border: none;
           margin: 0;
           padding-left: 0;
           display: none;
           background: #f8f8f8;
           border-radius: 4px;
       }
   
       .navbar-nav li.open > ul {
           display: block;
       }
   
       .navbar-nav ul li a {
           padding: 0.6rem 1rem;
       }
   
       .navbar-cta {
           flex-direction: row;
           width: auto;
           margin-left: 1rem;
           padding-left: 1.5rem;
           border-left: 1px solid #e0e0e0;
           padding-top: 0;
           border-top: none;
           gap: 0.75rem;
       }
   
       .call-link,
       .enquiry-btn {
           width: auto;
           justify-content: center;
           padding: 0.5rem 0.75rem;
       }
   
       .call-number {
           display: inline;
       }
   }
   
   /* Focus styles */
   a:focus,
   button:focus {
       outline: 2px solid #2e7d32;
       outline-offset: 2px;
   }
   
   /* Hide Scroll Progress Bar */
   .scroll-progress-container {
       display: none !important;
   }
   
   /* Hide Top Bar / Green Ribbon */
   #sp-top-bar, .sp-top-bar, .top-bar, [class*="topbar"] {
       display: none !important;
   }
   
   /* 3. HOMEPAGE (index.html) STYLES — CATEGORY SECTION (CENTERED HEADINGS) */
   
   /* ── UNIVERSAL CATEGORY HEADING CENTERING (All Pages) ── */
   .cat-section-header,
   .cat-section-header h2,
   .cat-section-header p,
   .categories-section h2,
   #categories h2,
   #recent-products h2,
   #products h2,
   #spare-products h2 {
       text-align: center !important;
       margin-left: auto !important;
       margin-right: auto !important;
   }
   
   .cat-section-header {
       display: flex !important;
       flex-direction: column !important;
       align-items: center !important;
       justify-content: center !important;
   }
   
   /* ── CATEGORY NAME SPANS (ECOSOLVENT PRINTERS etc.) ── */
   .cat-name,
   .categories-grid .cat-name,
   .cat-overlay .cat-name {
       text-align: center !important;
       display: block !important;
       margin: 0 auto !important;
       width: 100% !important;
       padding: 0 8px !important;
   }
   
   /* ── RESPONSIVE: Force center on ALL screen sizes ── */
   @media (max-width: 1200px), (max-width: 992px), (max-width: 768px), (max-width: 576px) {
       .cat-section-header h2,
       .cat-section-header p,
       .cat-name {
           text-align: center !important;
       }
   }
   
   /* Redesigned Category Section */
   .categories-section {
       padding: 95px 0 !important;
       background: linear-gradient(180deg, #f7fbf8 0%, #eef7f1 100%);
   }
   
   .categories-section .cat-section-header {
       text-align: center;
       margin-bottom: 2.1rem;
   }
   
   .categories-section .cat-section-header h2 {
       font-size: clamp(1.8rem, 3vw, 2.6rem);
       font-weight: 800;
       color: #121212;
       letter-spacing: -0.2px;
       margin-bottom: 0.55rem;
   }
   
   /* Remove green line under Product Categories heading */
   .categories-section .cat-section-header h2::after,
   .categories-section h2::after {
       display: none !important;
       content: none !important;
   }
   
   .categories-section .cat-section-header p {
       color: #121212;
       font-size: 1rem;
       margin: 0;
   }
   
   .categories-section .categories-grid,
   .categories-grid {
       display: grid !important;
       grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
       gap: 18px !important;
   }
   
   .categories-section .cat-card,
   .categories-grid .cat-card {
       min-height: 230px !important;
       width: 100% !important;
       margin: 0 !important;
       border-radius: 20px !important;
       border: 1px solid #d9ebdf !important;
       background: #ffffff !important;
       box-shadow: 0 10px 24px rgba(14, 60, 29, 0.08) !important;
       padding: 20px 14px 16px !important;
       display: flex !important;
       flex-direction: column !important;
       align-items: center !important;
       justify-content: center !important;
       gap: 14px !important;
       transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
   }
   
   .categories-section .cat-card:hover,
   .categories-grid .cat-card:hover {
       transform: translateY(-8px) !important;
       border-color: rgba(38, 171, 75, 0.45) !important;
       box-shadow: 0 16px 34px rgba(22, 80, 41, 0.16) !important;
   }
   
   .categories-section .cat-circle,
   .categories-grid .cat-circle {
       width: 98px !important;
       height: 98px !important;
       border-radius: 50% !important;
       background: linear-gradient(145deg, #f3fbf6, #e7f7ed) !important;
       border: 1px solid #d6ecdd !important;
       box-shadow: inset 0 0 0 6px #ffffff, 0 10px 16px rgba(31, 108, 56, 0.1);
   }
   
   .categories-section .cat-name,
   .categories-grid .cat-name {
       font-size: 0.8rem !important;
       line-height: 1.45 !important;
       letter-spacing: 0.8px !important;
       font-weight: 800 !important;
       color: #1f2f24 !important;
       text-align: center !important;
       min-height: 2.4em;
   }
   
   .cat-arrow,
   .categories-section .cat-arrow,
   .categories-grid .cat-arrow {
       display: none !important;
   }
   
   @media (max-width: 1100px) {
       .categories-section {
           padding: 75px 0 !important;
       }
   
       .categories-section .categories-grid,
       .categories-grid {
           grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
           gap: 14px !important;
       }
   }
   
   @media (max-width: 576px) {
       .hero-slider,
       .hero-slide {
           height: 260px;
           min-height: 260px;
           max-height: 260px;
       }
       .hero-content h1 { font-size: 1.5rem; }
   }
   
   @media (max-width: 576px) {
       .categories-section .cat-card,
       .categories-grid .cat-card {
           min-height: 190px !important;
           padding: 16px 12px 14px !important;
       }
   
       .categories-section .cat-circle,
       .categories-grid .cat-circle {
           width: 82px !important;
           height: 82px !important;
       }
   }
   
   /* 4. PRODUCTS LIST PAGE (products-list.html)
      -------------------------------------------------------------------------- */
   
   /* ── FIX: Override kingjet-style.css conflicts on product list pages ── */
   .products-page .product-card-featured,
   .products-page .product-card-small {
       opacity: 1 !important;
       animation: none !important;
       border-radius: 12px !important;
       box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
       transition: transform .18s ease, box-shadow .18s ease !important;
       min-height: 380px;
       display: flex;
       flex-direction: column;
       height: 100%;
   }
   
   /* ── FILTER SECTION STYLES ── */
   /* Unified filter styles for all product pages */
   .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end {
       background: transparent !important;
       padding: 14px 18px !important;
       border-radius: 16px !important;
       border: none !important;
       display: flex !important;
       flex-wrap: wrap !important;
       gap: 12px !important;
       justify-content: flex-end !important;
       align-items: center !important;
       width: 100% !important;
       max-width: 100% !important;
       box-shadow: none !important;
       backdrop-filter: none !important;
   }
   
   /* Filter buttons - all product pages */
   .product-filters-section .btn.btn-outline-success.btn-sm.active {
       background: linear-gradient(135deg, #26ab4b, #1e8e3e) !important;
       border-color: #26ab4b !important;
       color: #fff !important;
       font-weight: 700 !important;
       transform: translateY(-2px) !important;
       box-shadow: 0 6px 20px rgba(38,171,75,0.4) !important;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
       border: none !important;
       position: relative;
       overflow: hidden;
   }
   
   .product-filters-section .btn.btn-outline-success.btn-sm.active::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
       transition: left 0.6s;
   }
   
   .product-filters-section .btn.btn-outline-success.btn-sm.active:hover::before {
       left: 100%;
   }
   
   .product-filters-section .btn.btn-outline-secondary.btn-sm {
       background: linear-gradient(135deg, #24282c, #34495e) !important;
       border-color: #2c3e50 !important;
       color: #fff !important;
       font-weight: 700 !important;
       cursor: pointer !important;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
       transform: translateY(0) !important;
       box-shadow: 0 4px 15px rgba(0,0,0,0.25) !important;
       border: none !important;
       position: relative;
       overflow: hidden;
   }
   
   .product-filters-section .btn.btn-outline-secondary.btn-sm::after {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
       pointer-events: none;
   }
   
   .product-filters-section .btn.btn-outline-secondary.btn-sm:hover {
       background: linear-gradient(135deg, #34495e, #2c3e50) !important;
       border-color: #34495e !important;
       color: #ecf0f1 !important;
       transform: translateY(-4px) !important;
       box-shadow: 0 8px 25px rgba(44,62,80,0.4) !important;
   }
   
   .product-filters-section .btn.btn-outline-success.btn-sm:hover {
       background: linear-gradient(135deg, #2e7d32, #1e8e3e) !important;
       border-color: #2e7d32 !important;
       color: #fff !important;
       transform: translateY(-4px) !important;
       box-shadow: 0 8px 25px rgba(38,171,75,0.5) !important;
   }
   
   /* Responsive filter container - consistent across all pages */
   @media (max-width: 768px) {
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end {
           padding: 12px 14px !important;
           gap: 10px !important;
           justify-content: flex-start !important;
           flex-wrap: nowrap !important;
           overflow-x: auto !important;
           overflow-y: hidden !important;
           scrollbar-width: thin !important;
           scrollbar-color: #26ab4b #f8f9fa !important;
       }
   
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end::-webkit-scrollbar {
           height: 6px !important;
       }
   
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end::-webkit-scrollbar-track {
           background: #f8f9fa !important;
       }
   
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end::-webkit-scrollbar-thumb {
           background: #26ab4b !important;
           border-radius: 3px !important;
       }
   }
   
   @media (max-width: 576px) {
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end {
           padding: 10px 12px !important;
           gap: 8px !important;
           justify-content: flex-start !important;
           flex-wrap: nowrap !important;
           overflow-x: auto !important;
           overflow-y: hidden !important;
           scrollbar-width: thin !important;
           scrollbar-color: #26ab4b #f8f9fa !important;
       }
   
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end::-webkit-scrollbar {
           height: 6px !important;
       }
   
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end::-webkit-scrollbar-track {
           background: #f8f9fa !important;
       }
   
       .product-filters-section .d-flex.flex-wrap.gap-2.justify-content-end::-webkit-scrollbar-thumb {
           background: #26ab4b !important;
           border-radius: 3px !important;
       }
   }
   
   .products-page .product-card-featured:hover,
   .products-page .product-card-small:hover {
       transform: translateY(-6px) !important;
       box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
   }
   
   .products-page .product-card-featured .product-image-wrapper,
   .products-page .product-card-small .product-image-wrapper {
       height: 220px !important;
       min-height: 220px !important;
       flex: 0 0 220px;
       border-radius: 12px 12px 0 0 !important;
       overflow: hidden;
       position: relative;
       background: #e9ecef;
       display: flex;
       align-items: center;
       justify-content: center;
   }
   
   .products-page .product-card-featured .product-image-wrapper img,
   .products-page .product-card-small .product-image-wrapper img,
   .products-page .product-card-featured .product-image,
   .products-page .product-card-small .product-image {
       width: 100% !important;
       height: 100% !important;
       max-height: none !important;
       object-fit: contain !important;
       border-radius: 0 !important;
       transition: none !important;
       transform: none !important;
   }
   
   .products-page .product-card-featured:hover .product-image-wrapper img,
   .products-page .product-card-small:hover .product-image-wrapper img {
       transform: none !important;
   }
   
   .products-page .product-card-featured .product-overlay,
   .products-page .product-card-small .product-overlay {
       display: none !important;
   }
   
   .products-page .product-card-featured .product-content,
   .products-page .product-card-small .product-content {
       padding: 1rem !important;
       padding-bottom: 52px !important;
       display: flex !important;
       flex-direction: column !important;
       gap: .5rem !important;
       flex: 1 !important;
   }
   
   .products-page .product-card-featured .product-footer,
   .products-page .product-card-small .product-footer {
       display: flex !important;
       grid-template-columns: unset !important;
       margin: 0 !important;
       padding: 0 !important;
       position: absolute !important;
       left: 0 !important;
       right: 0 !important;
       bottom: 0 !important;
       gap: 0 !important;
   }
   
   .products-page .product-footer .product-footer-btn {
       flex: 1 !important;
       padding: 0 !important;
       height: 44px !important;
       min-height: 44px !important;
       margin-bottom: 0 !important;
       border-radius: 0 !important;
       display: flex !important;
       align-items: center !important;
       justify-content: center !important;
       gap: .35rem !important;
       font-size: 0.82rem !important;
       font-weight: 600 !important;
       border: 0 !important;
       transform: none !important;
       transition: transform .16s ease, box-shadow .16s ease, background .16s, color .16s !important;
   }
   
   .products-page .product-footer .product-footer-btn:first-child {
       border-bottom-left-radius: 12px !important;
       background: #000 !important;
       color: #fff !important;
       box-shadow: none !important;
   }
   
   .products-page .product-footer .product-footer-btn:last-child {
       border-bottom-right-radius: 12px !important;
       background: #26ab4b !important;
       color: #fff !important;
       box-shadow: none !important;
   }
   
   .products-page .product-footer .product-footer-btn + .product-footer-btn {
       border-left: 1px solid rgba(255,255,255,0.06) !important;
   }
   
   .products-page .product-footer .product-footer-btn:hover {
       transform: translateY(-4px) !important;
       box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
   }
   
   .products-page .product-footer .product-footer-btn:first-child:hover {
       background: #111 !important;
       color: #fff !important;
   }
   
   .products-page .product-footer .product-footer-btn:last-child:hover {
       background: #fff !important;
       color: #26ab4b !important;
       border-color: var(--cta);
       box-shadow: 0 8px 20px rgba(0,0,0,0.08);
   }
   
   /* badge-new: defined and styled in kingjet-style.css — no override needed here */
   
   .category-filter {
       gap: .5rem;
       display: flex;
       flex-wrap: wrap;
   }
   
   .hero-controls{
       display:flex;
       flex-wrap:wrap;
       gap: .5rem;
       justify-content:flex-end;
       background: transparent;
       padding: 0;
       border-radius: 0;
       max-width: 100%;
       font-weight: 700;
   }
   
   .hero-controls .btn{
       white-space: nowrap;
       font-weight: 700;
   }
   
   .gallery-hero .hero-controls .btn-outline-secondary,
   .gallery-hero .hero-controls .btn-outline-success,
   .products-controls-bar .hero-controls .btn-outline-secondary,
   .products-controls-bar .hero-controls .btn-outline-success{
       background: #2b2f36; /* dark gray */
       border-color: #2b2f36;
       color: #fff;
   }
   
   .gallery-hero .hero-controls .btn-outline-secondary:hover,
   .gallery-hero .hero-controls .btn-outline-success:hover,
   .products-controls-bar .hero-controls .btn-outline-secondary:hover,
   .products-controls-bar .hero-controls .btn-outline-success:hover{
       background: #1f2329;
       border-color: #1f2329;
       color: #fff;
   }
   
   .gallery-hero .hero-controls .btn-outline-secondary.active,
   .gallery-hero .hero-controls .btn-outline-success.active,
   .products-controls-bar .hero-controls .btn-outline-secondary.active,
   .products-controls-bar .hero-controls .btn-outline-success.active{
       background: rgba(38,171,75,0.95);
       border-color: rgba(38,171,75,0.95);
       color: #fff;
   }
   
   .products-controls-bar{
       margin-top: -1.5rem;
       margin-bottom: 0.75rem;
   }
   
   .products-controls-bar .hero-controls{
       justify-content: flex-end;
   }
   
   .product-grid {
       display: grid;
       grid-template-columns: repeat(4, minmax(0, 1fr));
       column-gap: 1rem;
       row-gap: 1.5rem;
       align-items: stretch;
   }
   
   .product-item {
       display: flex;
       height: 100%;
       width: 100%;
   }
   
   .badge-cat {
       text-transform: capitalize;
   }
   
   @media (min-width: 768px) {
       .product-image {
           height: 220px;
       }
   }
   
   @media (max-width: 1199.98px) {
       .product-grid {
           grid-template-columns: repeat(3, minmax(0, 1fr));
       }
   }
   
   @media (max-width: 991.98px) {
       .product-grid {
           grid-template-columns: repeat(2, minmax(0, 1fr));
       }
   }
   
   @media (max-width: 575.98px) {
       .product-grid {
           grid-template-columns: 1fr;
       }
       .product-item {
           width: 100%;
       }
   }
   
   /* 5. PRODUCTS PRINTERS PAGE (products-printers.html)
      -------------------------------------------------------------------------- */
   /* Uses same styles as products-list.html */
   
   /* 6. PRODUCTS PLOTTERS PAGE (products-plotters.html)
      -------------------------------------------------------------------------- */
   /* Uses same styles as products-list.html */
   
   /* 7. PRODUCTS SPARE PARTS PAGE (products-spare-parts.html)
      -------------------------------------------------------------------------- */
   /* Uses same styles as products-list.html */
   
   /* 8. PRODUCT VIEW PAGE (product-view.html)
      -------------------------------------------------------------------------- */
   body.product-view-page {
       background: #f8f9fa;
   }
   
   /* Product detail styles */
   
   /* 9. ABOUT US PAGE (aboutus.html)
      -------------------------------------------------------------------------- */
   :root {
       --kingjet-primary: #26ab4b;
       --kingjet-primary-dark: #1e8e3e;
       --kingjet-secondary: #020202;
       --kingjet-light: #f8f9fa;
       --kingjet-gray: #6c757d;
   }
   
   /* About page specific styles */
   
   /* 10. CONTACT US PAGE (contactus.html)
      -------------------------------------------------------------------------- */
   
   body.contactus-page {
       background: #f8f9fa;
       font-family: 'Poppins', 'Segoe UI', sans-serif;
   }
   
   /* ── HERO ── */
   
   /* ── INFO CARDS ── */
   .cu-info-section {
       padding: 60px 0;
       background: #fff;
   }
   
   .cu-info-card {
       background: #fff;
       border: 2px solid #e8f5e9;
       border-radius: 16px;
       padding: 36px 24px;
       text-align: center;
       box-shadow: 0 4px 18px rgba(38,171,75,0.07);
       transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
       position: relative;
       overflow: hidden;
   }
   
   .cu-info-card::before {
       content: '';
       position: absolute;
       top: 0; left: 0; right: 0;
       height: 3px;
       background: linear-gradient(90deg, #26ab4b, #1e8e3e);
       border-radius: 16px 16px 0 0;
       opacity: 0;
       transition: opacity 0.3s ease;
   }
   
   .cu-info-card:hover::before { opacity: 1; }
   
   .cu-info-card:hover {
       transform: translateY(-6px);
       box-shadow: 0 16px 36px rgba(38,171,75,0.14);
       border-color: rgba(38,171,75,0.25);
   }
   
   .cu-info-icon {
       width: 64px;
       height: 64px;
       background: linear-gradient(135deg, #26ab4b, #1e8e3e);
       border-radius: 50%;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       color: #fff;
       font-size: 1.5rem;
       margin-bottom: 14px;
       box-shadow: 0 8px 20px rgba(38,171,75,0.25);
   }
   
   .cu-info-title {
       font-weight: 700;
       font-size: 1rem;
       color: #1a1a1a;
       margin-bottom: 4px;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   
   .cu-info-value {
       font-weight: 700;
       font-size: 1.05rem;
       color: #000000;
       margin-bottom: 4px;
   }
   
   .cu-info-desc {
       color: #000000;
       font-size: 0.85rem;
       margin: 0;
       line-height: 1.5;
   }
   
   /* ── FORM SECTION ── */
   .cu-form-section {
       padding: 60px 0 70px;
       background: #f8f9fa;
   }
   
   /* Contact Card (white) */
   .cu-contact-card {
       background: #fff;
       border-radius: 20px;
       padding: 40px;
       box-shadow: 0 8px 30px rgba(0,0,0,0.07);
       height: 100%;
   }
   
   .cu-card-header h4 {
       font-size: 1.5rem;
       font-weight: 700;
       color: #1a1a1a;
       margin-bottom: 4px;
   }
   
   .cu-card-header p {
       color: #666;
       font-size: 0.9rem;
       margin-bottom: 28px;
   }
   
   .cu-label {
       display: block;
       font-size: 0.82rem;
       font-weight: 600;
       color: #444;
       margin-bottom: 6px;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   
   .cu-input {
       width: 100%;
       background: #f8f9fa;
       border: 2px solid #e8e8e8;
       border-radius: 10px;
       padding: 13px 16px;
       font-size: 0.95rem;
       color: #1a1a1a;
       transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
       font-family: inherit;
   }
   
   .cu-input:focus {
       border-color: #26ab4b;
       box-shadow: 0 0 0 4px rgba(38,171,75,0.12);
       background: #fff;
       outline: none;
   }
   
   .cu-input::placeholder { color: #aaa; }
   
   .cu-textarea { resize: vertical; min-height: 130px; }
   
   /* Submit Button — matches site CTA style */
   .cu-submit-btn {
       background: linear-gradient(135deg, #26ab4b, #1e8e3e);
       color: #fff;
       border-radius: 10px;
       font-weight: 700;
       font-size: 0.97rem;
       padding: 14px 36px;
       border: none;
       transition: all 0.3s ease;
       letter-spacing: 0.3px;
   }
   
   .cu-submit-btn:hover {
       background: linear-gradient(135deg, #1e8e3e, #26ab4b);
       color: #fff;
       transform: translateY(-2px);
       box-shadow: 0 10px 28px rgba(38,171,75,0.35);
   }
   
   /* Newsletter Card — black like hero */
   .cu-newsletter-card {
       background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
       color: #fff;
       border-radius: 20px;
       padding: 32px;
       box-shadow: 0 8px 30px rgba(0,0,0,0.15);
       flex: 1;
   }
   
   .cu-nl-icon {
       width: 52px;
       height: 52px;
       background: rgba(38,171,75,0.15);
       border: 1px solid rgba(38,171,75,0.4);
       border-radius: 50%;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       color: #26ab4b;
       font-size: 1.2rem;
       margin-bottom: 14px;
   }
   
   .cu-newsletter-card h5 {
       color: #fff;
       font-weight: 700;
       margin-bottom: 8px;
   }
   
   .cu-newsletter-card p {
       color: #9ca3af;
       font-size: 0.9rem;
       line-height: 1.65;
       margin-bottom: 18px;
   }
   
   .cu-nl-input {
       width: 100%;
       background: rgba(255,255,255,0.08);
       border: 1.5px solid rgba(255,255,255,0.15);
       border-radius: 10px;
       padding: 12px 16px;
       font-size: 0.9rem;
       color: #fff;
       font-family: inherit;
       transition: border-color 0.3s ease;
       display: block;
   }
   
   .cu-nl-input:focus {
       border-color: #26ab4b;
       box-shadow: 0 0 0 3px rgba(38,171,75,0.2);
       outline: none;
   }
   
   .cu-nl-input::placeholder { color: #666; }
   
   .cu-nl-btn {
       background: linear-gradient(135deg, #26ab4b, #1e8e3e);
       color: #fff;
       border-radius: 10px;
       font-weight: 700;
       font-size: 0.9rem;
       padding: 12px;
       border: none;
       transition: all 0.3s ease;
   }
   
   .cu-nl-btn:hover {
       background: linear-gradient(135deg, #1e8e3e, #26ab4b);
       color: #fff;
       transform: translateY(-2px);
       box-shadow: 0 8px 20px rgba(38,171,75,0.3);
   }
   
   /* Working Hours Card */
   .cu-hours-card {
       background: #fff;
       border-radius: 20px;
       padding: 28px;
       box-shadow: 0 4px 18px rgba(0,0,0,0.06);
       border: 2px solid #e8f5e9;
   }
   
   .cu-hours-title {
       font-weight: 700;
       color: #1a1a1a;
       font-size: 0.95rem;
       margin-bottom: 18px;
       text-transform: uppercase;
       letter-spacing: 0.5px;
   }
   
   .cu-hours-title i { color: #26ab4b; }
   
   .cu-hours-list {
       list-style: none;
       padding: 0;
       margin: 0;
   }
   
   .cu-hours-list li {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 9px 0;
       border-bottom: 1px solid #f0f0f0;
       font-size: 0.88rem;
       color: #444;
   }
   
   .cu-hours-list li:last-child { border-bottom: none; }
   
   .cu-hours-time {
       font-weight: 600;
       color: #26ab4b;
   }
   
   .cu-closed {
       color: #e74c3c !important;
   }
   
   /* ── MAP ── */
   .cu-map-section {
       padding: 0 0 70px;
       background: #f8f9fa;
   }
   
   .cu-map-wrapper {
       border-radius: 20px;
       overflow: hidden;
       box-shadow: 0 8px 30px rgba(0,0,0,0.1);
       border: 3px solid #e8f5e9;
   }
   
   .cu-map-wrapper iframe {
       width: 100%;
       height: 400px;
       border: none;
       display: block;
   }
   
   /* ── Responsive ── */
   @media (max-width: 992px) {
       .cu-hero-title { font-size: 1.9rem; }
   }
   
   @media (max-width: 768px) {
       .cu-hero { padding: 30px 0 28px; }
       .cu-hero-title { font-size: 1.6rem; }
       .cu-info-section { padding: 40px 0; }
       .cu-form-section { padding: 40px 0 50px; }
       .cu-contact-card { padding: 28px 22px; }
       .cu-map-section { padding: 0 0 50px; }
       .cu-map-wrapper iframe { height: 300px; }
   }
   
   /* ============================================================================
      12. ENQUIRY PAGE (enquiry.html) - Contact Section
      ============================================================================ */
   
   /* SECTION */
   .contact-section {
       padding: 60px 20px;
       background: #f5f5f5;
       font-family: 'Poppins', 'Segoe UI', sans-serif;
   }
   
   /* CONTAINER */
   .contact-container {
       max-width: 1100px;
       margin: auto;
       display: flex;
       gap: 40px;
       align-items: flex-start;
   }
   
   /* LEFT SIDE */
   .contact-info {
       flex: 1;
   }
   
   .contact-info h2 {
       font-size: 36px;
       font-weight: 800;
       margin-bottom: 20px;
       color: #1a1a1a;
   }
   
   .contact-info .description {
       color: #666;
       line-height: 1.7;
       margin-bottom: 30px;
       font-size: 0.97rem;
   }
   
   .info-item {
       margin-bottom: 22px;
   }
   
   .info-item .label {
       font-weight: 700;
       display: block;
       margin-bottom: 5px;
       color: #26ab4b;
       font-size: 0.82rem;
       text-transform: uppercase;
       letter-spacing: 1px;
   }
   
   .info-item p {
       color: #444;
       margin: 0;
       font-size: 0.95rem;
       line-height: 1.6;
   }
   
   .info-item a {
       color: #444;
       text-decoration: none;
       transition: color 0.2s;
   }
   
   .info-item a:hover {
       color: #26ab4b;
   }
   
   /* SOCIAL */
   .social {
       margin-top: 30px;
   }
   
   .social span {
       font-weight: 700;
       display: block;
       margin-bottom: 12px;
       color: #1a1a1a;
       font-size: 0.9rem;
       text-transform: uppercase;
       letter-spacing: 1px;
   }
   
   .icons {
       display: flex;
       gap: 12px;
   }
   
   .icons a {
       text-decoration: none;
       width: 38px;
       height: 38px;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       border-radius: 50%;
       background: #1a1a1a;
       color: #fff;
       font-size: 0.9rem;
       transition: background 0.25s, transform 0.25s;
   }
   
   .icons a:hover {
       background: #26ab4b;
       transform: translateY(-3px);
   }
   
   /* RIGHT FORM */
   .contact-form {
       flex: 1;
       background: #fff;
       padding: 36px 32px;
       box-shadow: 0 10px 40px rgba(0,0,0,0.08);
       border-radius: 12px;
   }
   
   .contact-form h3 {
       font-size: 1.5rem;
       font-weight: 700;
       margin-bottom: 6px;
       color: #1a1a1a;
   }
   
   .form-description {
       color: #888;
       margin-bottom: 24px;
       font-size: 0.93rem;
   }
   
   /* FORM INPUTS */
   .contact-form form input,
   .contact-form form select,
   .contact-form form textarea {
       width: 100%;
       padding: 13px 15px;
       margin-bottom: 16px;
       border: 1.5px solid #ddd;
       border-radius: 8px;
       outline: none;
       font-size: 0.95rem;
       font-family: inherit;
       color: #1a1a1a;
       background: #fafafa;
       transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
       box-sizing: border-box;
   }
   
   .contact-form form input:focus,
   .contact-form form select:focus,
   .contact-form form textarea:focus {
       border-color: #26ab4b;
       box-shadow: 0 0 0 4px rgba(38,171,75,0.1);
       background: #fff;
   }
   
   .contact-form form textarea {
       height: 130px;
       resize: vertical;
   }
   
   .contact-form .row {
       display: flex;
       gap: 15px;
       margin-bottom: 0;
   }
   
   .contact-form .row input {
       flex: 1;
   }
   
   /* Submit Button */
   .submit-btn {
       width: 100%;
       background: linear-gradient(135deg, #26ab4b, #1e8e3e);
       color: #fff;
       padding: 14px 28px;
       border: none;
       border-radius: 8px;
       cursor: pointer;
       transition: all 0.3s;
       font-size: 1rem;
       font-weight: 700;
       letter-spacing: 0.3px;
       font-family: inherit;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 8px;
   }
   
   .submit-btn:hover {
       background: linear-gradient(135deg, #1e8e3e, #26ab4b);
       transform: translateY(-2px);
       box-shadow: 0 8px 24px rgba(38,171,75,0.35);
   }
   
   /* Form validation states */
   .contact-form form input.valid,
   .contact-form form select.valid,
   .contact-form form textarea.valid {
       border-color: #26ab4b;
   }
   
   .contact-form form input.error,
   .contact-form form select.error,
   .contact-form form textarea.error {
       border-color: #e74c3c;
       box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
   }
   
   /* Alert */
   #formAlert {
       border-radius: 8px;
       font-size: 0.95rem;
   }
   
   /* RESPONSIVE */
   @media (max-width: 900px) {
       .contact-container {
           flex-direction: column;
           gap: 30px;
       }
   
       .contact-info h2 {
           font-size: 28px;
       }
   }
   
   @media (max-width: 576px) {
       .contact-section {
           padding: 40px 16px;
       }
   
       .contact-form {
           padding: 24px 18px;
       }
   
       .contact-form .row {
           flex-direction: column;
           gap: 0;
       }
   }
   
   /* ============================================================================
      13. INDUSTRIES / APPLICATIONS SECTION (index.html)
      ============================================================================ */
   
   .industries-section {
       background: #f4f6f9;
       padding: 80px 0 60px;
       font-family: 'Poppins', 'Segoe UI', sans-serif;
   }
   
   /* ── Header ── */
   .industries-header {
       text-align: center;
       margin-bottom: 48px;
   }
   
   .industries-eyebrow {
       display: inline-flex;
       align-items: center;
       gap: 7px;
       color: #26ab4b;
       font-size: 0.78rem;
       font-weight: 700;
       letter-spacing: 2px;
       text-transform: uppercase;
       margin-bottom: 10px;
   }
   
   .industries-title {
       font-size: clamp(1.75rem, 3.5vw, 2.5rem);
       font-weight: 800;
       color: #111;
       line-height: 1.2;
       margin: 0;
       letter-spacing: -0.3px;
   }
   
   .industries-title-accent {
       color: #26ab4b;
   }
   
   .industries-sub {
       color: #6b7280;
       font-size: 0.97rem;
       max-width: 600px;
       margin: 12px auto 0;
       line-height: 1.7;
   }
   
   /* ── Tile Grid — 3 cols ── */
   .industries-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 16px;
       margin-bottom: 40px;
   }
   
   /* ── Single Tile ── */
   .ind-tile {
       background: #ffffff;
       border-radius: 16px;
       padding: 28px 20px 22px;
       display: flex;
       flex-direction: column;
       align-items: flex-start;
       gap: 10px;
       border: 1.5px solid #e8edf2;
       transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
       opacity: 0;
       transform: translateY(20px);
       transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease, box-shadow 0.25s ease;
   }
   
   .ind-tile.industry-card--visible {
       opacity: 1;
       transform: translateY(0);
   }
   
   .ind-tile:hover {
       border-color: #26ab4b;
       box-shadow: 0 8px 28px rgba(38,171,75,0.12);
       transform: translateY(-4px) !important;
   }
   
   /* ── Icon ── */
   .ind-icon {
       width: 48px;
       height: 48px;
       background: linear-gradient(135deg, #26ab4b, #1e8e3e);
       border-radius: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.2rem;
       color: #fff;
       flex-shrink: 0;
       transition: transform 0.25s ease, box-shadow 0.25s ease;
   }
   
   .ind-tile:hover .ind-icon {
       transform: scale(1.1) rotate(-4deg);
       box-shadow: 0 6px 18px rgba(38,171,75,0.32);
   }
   
   /* ── Title ── */
   .ind-tile h5 {
       font-size: 0.97rem;
       font-weight: 700;
       color: #1a1a1a;
       margin: 0;
       line-height: 1.3;
   }
   
   /* ── Description ── */
   .ind-desc {
       font-size: 0.82rem;
       color: #6b7280;
       line-height: 1.65;
       margin: 0;
       flex: 1;
   }
   
   /* ── Tags row ── */
   .ind-tags {
       display: flex;
       flex-wrap: wrap;
       gap: 5px;
   }
   
   .ind-tags span {
       background: #f0faf4;
       border: 1px solid #c8ebd4;
       color: #1e7e34;
       border-radius: 20px;
       padding: 2px 10px;
       font-size: 0.72rem;
       font-weight: 600;
       letter-spacing: 0.2px;
       white-space: nowrap;
   }
   
   /* ── Footer row ── */
   .industries-footer-row {
       display: flex;
       justify-content: center;
   }
   
   .industries-cta-btn {
       display: inline-flex;
       align-items: center;
       gap: 9px;
       background: linear-gradient(135deg, #26ab4b, #1e8e3e);
       color: #ffffff;
       text-decoration: none;
       border-radius: 10px;
       padding: 13px 30px;
       font-size: 0.92rem;
       font-weight: 700;
       letter-spacing: 0.3px;
       transition: all 0.3s ease;
       box-shadow: 0 4px 18px rgba(38,171,75,0.28);
   }
   
   .industries-cta-btn:hover {
       color: #ffffff;
       text-decoration: none;
       transform: translateY(-2px);
       box-shadow: 0 10px 28px rgba(38,171,75,0.4);
   }
   
   /* ── Responsive ── */
   @media (max-width: 1100px) {
       .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
   }
   
   @media (max-width: 900px) {
       .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
       .industries-section { padding: 60px 0 48px; }
   }
   
   @media (max-width: 520px) {
       .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
       .ind-tile { padding: 20px 14px 16px; }
       .ind-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
       .industries-section { padding: 48px 0 40px; }
   }
   
   /* ============================================================================
      14. ABOUT US PAGE (aboutus.html) - migrated inline styles
      ============================================================================ */
   .about-page { background: #ffffff; color: #1d1d1d; }
   .about-page .section-gap { padding: 80px 0; }
   .about-page .about-tag { display:inline-block; font-size:.75rem; letter-spacing:1.5px; text-transform:uppercase; color:#26ab4b; font-weight:700; margin-bottom:.65rem; }
   .about-page .about-title { font-weight:800; line-height:1.2; margin-bottom:1rem; }
   .about-page .about-lead { color:#6c757d; line-height:1.8; }
   .about-page .about-title .highlight { color:#1e8e3e; background:linear-gradient(transparent 62%, rgba(38,171,75,.2) 62%); padding:0 .08em; }
   .about-page .about-visual-wrap { position:relative; max-width:470px; margin-inline:auto; }
   .about-page .about-visual-wrap--brush { width:min(520px,100%); aspect-ratio:1/1; isolation:isolate; }
   .about-page .about-visual-wrap--brush::before { content:""; position:absolute; inset:4% 2% 10% 6%; border-radius:50%; z-index:0; pointer-events:none; background:radial-gradient(circle at 70% 30%, rgba(255,255,255,.34), transparent 48%), radial-gradient(circle at 35% 70%, rgba(255,255,255,.2), transparent 52%), linear-gradient(135deg,#bdeccc 0%,#65d789 55%,#2faa54 100%); }
   .about-page .about-visual-bg { position:absolute; inset:25px 25px -20px; border-radius:36px; background:radial-gradient(circle at 30% 30%, #cef2d8 0%, #8edfa8 55%, #39b95f 100%); z-index:0; }
   .about-page .about-visual-wrap--brush .about-visual-bg { inset:8%; border-radius:50%; background:radial-gradient(circle at 28% 28%, #def8e6 0%, #9ae4b0 48%, #2ea952 100%); box-shadow:inset 0 0 0 10px rgba(255,255,255,.24), 0 28px 40px rgba(20,88,42,.22); z-index:1; }
   .about-page .about-visual-img { position:relative; z-index:1; width:100%; border-radius:24px; box-shadow:0 18px 40px rgba(45,26,94,.2); }
   .about-page .about-visual-wrap--brush .about-visual-img { position:absolute; top:50%; left:50%; width:78%; height:78%; transform:translate(-50%,-50%); object-fit:cover; border-radius:50%; z-index:2; box-shadow:0 16px 26px rgba(12,55,28,.2); border:8px solid rgba(255,255,255,.7); }
   .about-page [data-reveal] { opacity:0; transform:translate3d(0,28px,0); transition:opacity 1.6s cubic-bezier(.22,.61,.36,1), transform 1.6s cubic-bezier(.22,.61,.36,1); }
   .about-page [data-reveal][data-reveal-dir="left"] { transform:translate3d(-72px,0,0); }
   .about-page [data-reveal][data-reveal-dir="right"] { transform:translate3d(72px,0,0); }
   .about-page [data-reveal].is-visible { opacity:1; transform:translate3d(0,0,0); }
   .about-page .metric-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:1.5rem; }
   .about-page .metric-item { background:#fff; border:1px solid #ddefe2; border-radius:14px; padding:.85rem .9rem; }
   .about-page .choose-points { list-style:none; margin:1.5rem 0 0; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
   .about-page .choose-points li { background:#fff; border:1px solid #ddefe2; border-radius:12px; padding:.65rem .75rem; font-weight:600; font-size:.92rem; }
   .about-page .testimonial-card { background:#fff; border:1px solid #ddefe2; border-radius:18px; padding:1.2rem; height:100%; color:#333; }
   @media (max-width:767.98px){ .about-page .section-gap{padding:56px 0;} .about-page .choose-points,.about-page .metric-grid{grid-template-columns:1fr;} }
   
   /* ============================================================================
      15. FAQ SECTION (aboutus.html)
      ============================================================================ */
   .faq-section {
       background: linear-gradient(180deg, #f7fbf8 0%, #eef7f1 100%);
       border-radius: 20px;
       padding: 60px 20px;
       margin-top: 80px;
       position: relative;
       overflow: hidden;
   }
   
   .faq-section::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 4px;
       background: linear-gradient(90deg, #26ab4b, #1e8e3e);
       border-radius: 20px 20px 0 0;
   }
   
   .faq-section .about-tag {
       color: #26ab4b;
   }
   
   .faq-section .about-title {
       color: #1a1a1a;
       margin-bottom: 2rem;
   }
   
   .faq-section .about-title::after {
       content: '';
       display: block;
       width: 60px;
       height: 3px;
       background: linear-gradient(90deg, #26ab4b, #1e8e3e);
       margin: 12px auto 0;
       border-radius: 2px;
   }
   
   .faq-accordion {
       background: #ffffff;
       border-radius: 16px;
       box-shadow: 0 8px 30px rgba(38,171,75,0.12);
       border: 1px solid rgba(38,171,75,0.15);
       overflow: hidden;
   }
   
   .faq-accordion .accordion-item {
       border-bottom: 1px solid rgba(38,171,75,0.08);
   }
   
   .faq-accordion .accordion-item:last-child {
       border-bottom: none;
   }
   
   .faq-accordion .accordion-header {
       padding: 0;
       border: none;
       background: transparent;
   }
   
   .faq-accordion .accordion-button {
       padding: 1.25rem 2rem;
       font-weight: 600;
       font-size: 1rem;
       color: #1a1a1a;
       background: #ffffff;
       border: none;
       border-radius: 0;
       transition: all 0.3s ease;
       text-align: left;
       position: relative;
   }
   
   .faq-accordion .accordion-button:hover {
       background: #f0faf4;
       color: #26ab4b;
   }
   
   .faq-accordion .accordion-button:focus {
       box-shadow: 0 0 0 3px rgba(38,171,75,0.15);
       border-color: transparent;
   }
   
   .faq-accordion .accordion-button::after {
       /* content: '\f067'; */
       font-family: 'Font Awesome 6 Free';
       font-weight: 900;
       position: absolute;
       right: 2rem;
       top: 50%;
       transform: translateY(-50%);
       font-size: 0.8rem;
       color: #26ab4b;
       transition: transform 0.3s ease;
   }
   
   .faq-accordion .accordion-button:not(.collapsed)::after {
       /* content: '\f068'; */
       transform: translateY(-50%) rotate(180deg);
   }
   
   .faq-accordion .accordion-collapse {
       background: #f0faf4;
   }
   
   .faq-accordion .accordion-body {
       padding: 0 2rem 1.25rem;
       color: #333333;
       line-height: 1.7;
       font-size: 0.95rem;
   }
   
   .faq-accordion .accordion-item.show .accordion-button {
       background: #e7f7ed;
       color: #26ab4b;
   }
   
   /* ============================================================================
      14. ABOUT US PAGE (aboutus.html) - migrated inline styles
      ============================================================================ */
   .about-page { background: #ffffff; color: #1d1d1d; }
   .about-page .section-gap { padding: 80px 0; }
   .about-page .about-tag { display:inline-block; font-size:.75rem; letter-spacing:1.5px; text-transform:uppercase; color:#26ab4b; font-weight:700; margin-bottom:.65rem; }
   .about-page .about-title { font-weight:800; line-height:1.2; margin-bottom:1rem; }
   .about-page .about-lead { color:#6c757d; line-height:1.8; }
   .about-page .about-title .highlight { color:#1e8e3e; background:linear-gradient(transparent 62%, rgba(38,171,75,.2) 62%); padding:0 .08em; }
   .about-page .about-visual-wrap { position:relative; max-width:470px; margin-inline:auto; }
   .about-page .about-visual-wrap--brush { width:min(520px,100%); aspect-ratio:1/1; isolation:isolate; }
   .about-page .about-visual-wrap--brush::before { content:""; position:absolute; inset:4% 2% 10% 6%; border-radius:50%; z-index:0; pointer-events:none; background:radial-gradient(circle at 70% 30%, rgba(255,255,255,.34), transparent 48%), radial-gradient(circle at 35% 70%, rgba(255,255,255,.2), transparent 52%), linear-gradient(135deg,#bdeccc 0%,#65d789 55%,#2faa54 100%); }
   .about-page .about-visual-bg { position:absolute; inset:25px 25px -20px; border-radius:36px; background:radial-gradient(circle at 30% 30%, #cef2d8 0%, #8edfa8 55%, #39b95f 100%); z-index:0; }
   .about-page .about-visual-wrap--brush .about-visual-bg { inset:8%; border-radius:50%; background:radial-gradient(circle at 28% 28%, #def8e6 0%, #9ae4b0 48%, #2ea952 100%); box-shadow:inset 0 0 0 10px rgba(255,255,255,.24), 0 28px 40px rgba(20,88,42,.22); z-index:1; }
   .about-page .about-visual-img { position:relative; z-index:1; width:100%; border-radius:24px; box-shadow:0 18px 40px rgba(45,26,94,.2); }
   .about-page .about-visual-wrap--brush .about-visual-img { position:absolute; top:50%; left:50%; width:78%; height:78%; transform:translate(-50%,-50%); object-fit:cover; border-radius:50%; z-index:2; box-shadow:0 16px 26px rgba(12,55,28,.2); border:8px solid rgba(255,255,255,.7); }
   .about-page [data-reveal] { opacity:0; transform:translate3d(0,28px,0); transition:opacity 1.6s cubic-bezier(.22,.61,.36,1), transform 1.6s cubic-bezier(.22,.61,.36,1); }
   .about-page [data-reveal][data-reveal-dir="left"] { transform:translate3d(-72px,0,0); }
   .about-page [data-reveal][data-reveal-dir="right"] { transform:translate3d(72px,0,0); }
   .about-page [data-reveal].is-visible { opacity:1; transform:translate3d(0,0,0); }
   .about-page .metric-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:1.5rem; }
   .about-page .metric-item { background:#fff; border:1px solid #ddefe2; border-radius:14px; padding:.85rem .9rem; }
   .about-page .choose-points { list-style:none; margin:1.5rem 0 0; padding:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
   .about-page .choose-points li { background:#fff; border:1px solid #ddefe2; border-radius:12px; padding:.65rem .75rem; font-weight:600; font-size:.92rem; }
   .about-page .testimonial-card { background:#fff; border:1px solid #ddefe2; border-radius:18px; padding:1.2rem; height:100%; color:#333; }
   @media (max-width:767.98px){ .about-page .section-gap{padding:56px 0;} .about-page .choose-points,.about-page .metric-grid{grid-template-columns:1fr;} }
   
   /* ============================================================================
      15. ENQUIRY PAGE (enquiry.html) - migrated inline styles
      ============================================================================ */
   .enq-section { padding:60px 20px 80px; background:#f5f5f5; font-family:'Poppins','Segoe UI',sans-serif; }
   .enq-big-card { max-width:1080px; margin:0 auto; display:flex; border-radius:20px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,.18); min-height:600px; }
   .enq-left { flex:0 0 370px; background:linear-gradient(160deg, rgba(13,17,23,.88) 0%, rgba(26,26,26,.82) 55%, rgba(15,35,24,.9) 100%), url('../images/Banner/business man.webp') center center / cover no-repeat; padding:48px 36px; display:flex; flex-direction:column; position:relative; overflow:hidden; }
   .enq-right { flex:1; background:#fff; padding:48px 44px; display:flex; flex-direction:column; }
   .enq-info-row { display:flex; align-items:flex-start; gap:14px; margin-bottom:24px; }
   .enq-info-icon { width:40px; height:40px; border-radius:10px; background:rgba(38,171,75,.15); border:1px solid rgba(38,171,75,.35); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
   .enq-social-icons { display:flex; gap:10px; }
   .enq-social-icons a { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; color:#9ca3af; text-decoration:none; }
   .enq-form-row { display:flex; gap:14px; }
   .enq-form-row input { flex:1; }
   .enq-submit-btn { width:100%; padding:14px; background:linear-gradient(135deg,#26ab4b,#1e8e3e); color:#fff; border:none; border-radius:8px; font-size:1rem; font-weight:700; }
   .enq-right form input.field-ok,.enq-right form select.field-ok,.enq-right form textarea.field-ok { border-color:#26ab4b; background:#f0fdf4; }
   .enq-right form input.field-error,.enq-right form select.field-error,.enq-right form textarea.field-error { border-color:#e74c3c; box-shadow:0 0 0 3px rgba(231,76,60,.08); background:#fff5f5; }
   @media (max-width:900px){ .enq-big-card{flex-direction:column;} .enq-left{flex:none; padding:36px 28px;} .enq-right{padding:36px 28px;} }
   @media (max-width:576px){ .enq-section{padding:40px 14px 60px;} .enq-left,.enq-right{padding:28px 20px;} .enq-form-row{flex-direction:column; gap:0;} }
   
   /* ============================================================================
      16. PRODUCT VIEW PAGE (product-view.html) - migrated inline styles
      ============================================================================ */
   .product-view-wrapper { display:flex; height:100vh; gap:0; }
   .product-images-side { flex:0 0 45%; background:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:2rem; position:sticky; top:0; height:100vh; overflow:hidden; }
   .product-images-side img { width:100%; max-height:60%; object-fit:contain; border-radius:.5rem; }
   .thumbs { display:flex; gap:.5rem; justify-content:center; margin-top:1rem; flex-wrap:wrap; }
   .thumbs img { width:80px; height:60px; object-fit:cover; cursor:pointer; border-radius:.25rem; border:2px solid transparent; transition:border-color .2s; }
   .thumbs img.active { border-color:#26ab4b; }
   .product-details-side { flex:1; overflow-y:auto; padding:3rem 2rem; background:#fff; }
   .specs th { width:160px; }
   .trending-section { margin-top:2.5rem; }
   .trending-slider { position:relative; overflow:hidden; }
   .trending-grid { display:flex; gap:1rem; transition:transform .55s ease; will-change:transform; }
   .trending-grid .trending-card { flex:0 0 calc(25% - .75rem); }
   .trending-card { border:1px solid #e9ecef; border-radius:.75rem; background:#fff; overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,.05); }
   .trending-card img { width:100%; height:150px; object-fit:cover; display:block; }
   .trending-card-body { padding:.9rem; }
   .trending-card-title { font-size:.95rem; font-weight:600; margin-bottom:.75rem; min-height:2.6em; }
   @media (max-width:992px){ .trending-grid .trending-card{flex:0 0 calc(50% - .5rem);} .product-view-wrapper{flex-direction:column; height:auto;} .product-images-side{flex:0 0 auto; height:auto; position:relative; width:100%;} .product-details-side{flex:1; overflow-y:visible;} }
   @media (max-width:576px){ .trending-grid .trending-card{flex:0 0 100%;} }
   
       /* -----------------------------------------------------
          NEW CATEGORIES SECTION (Full image cards w/ dark slide-up overlay)
          Replaces circle icon design with hero-after full-bleed images
       -------------------------------------------------------- */
       .categories-section {
           padding: 95px 0 !important;
           background: linear-gradient(180deg, #f7fbf8 0%, #eef7f1 100%);
           font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
       }
   
       .categories-section .cat-section-header {
           text-align: center;
           margin-bottom: 2.1rem;
       }
   
       .categories-section .cat-section-header h2 {
           font-size: clamp(1.8rem, 3vw, 2.6rem);
           font-weight: 800;
           color: #1a1a1a;
           letter-spacing: -0.2px;
           margin-bottom: 0.55rem;
       }
   
       /* Remove green line under Product Categories heading */
       .categories-section .cat-section-header h2::after,
       .categories-section h2::after {
           display: none !important;
           content: none !important;
       }
   
       .categories-section .cat-section-header p {
           color: #5f6f64;
           font-size: 1rem;
           margin: 0;
       }
   
       /* ---------- GRID with INCREASED GAP (24px desktop) ---------- */
       .categories-section .categories-grid {
           display: grid !important;
           grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
           gap: 24px !important;
           max-width: 1280px;
           margin: 0 auto;
           padding: 0 1rem;
       }
   
       /* ---------- CARD BASE (exact rules from your snippet) ---------- */
       .categories-section .cat-card {
           min-height: 230px !important;
           width: 100% !important;
           margin: 0 !important;
           border-radius: 20px !important;
           border: 1px solid #d9ebdf !important;
           background: #ffffff !important;
           box-shadow: 0 10px 24px rgba(14, 60, 29, 0.08) !important;
           padding: 0 !important;
           display: flex !important;
           flex-direction: column !important;
           align-items: center !important;
           justify-content: flex-end !important;
           transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease !important;
           position: relative !important;
           overflow: hidden !important;
           text-decoration: none;
       }
   
       /* ------- IMAGE : full bleed background ------- */
       .categories-section .cat-card img {
           position: absolute !important;
           top: 0 !important;
           left: 0 !important;
           width: 100% !important;
           height: 100% !important;
           object-fit: cover !important;
           z-index: 1 !important;
           display: block;
           mix-blend-mode: normal;
           opacity: 1;
           transition: opacity 0.25s, transform 0.2s;
       }
   
       /* remove image overlays */
       .categories-section .cat-card::before {
           content: none;
           display: none;
       }
   
       /* ---------- remove dark image overlay ---------- */
       .categories-section .cat-card::after {
           content: none !important;
           display: none !important;
       }
   
       /* ---------- CONTENT OVERLAY (slides from bottom on hover) ---------- */
       .categories-section .cat-card .cat-overlay {
           position: relative;
           z-index: 10;
           width: 100%;
           background: rgba(24, 24, 24, 0.85);      /* dark semi-transparent */
           padding: 16px 10px 14px;
           border-top: 1px solid rgba(255, 255, 255, 0.2);
           box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
           transform: translateY(100%);              /* hidden off screen by default */
           transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.1, 1);
           border-radius: 0 0 20px 20px;             /* matches card border radius bottom */
           display: flex;
           flex-direction: column;
           align-items: center;
       }
   
       /* cat-name inside overlay – light color to stand out on dark */
       .categories-section .cat-card .cat-name {
           font-size: 0.8rem !important;
           line-height: 1.45 !important;
           letter-spacing: 0.8px !important;
           font-weight: 800 !important;
           color: #ffffff !important;                 /* white text on dark overlay */
           text-align: center !important;
           margin: 0;
           background: transparent;
           backdrop-filter: none;
           border: none;
           padding: 0;
           box-shadow: none;
           min-height: auto;
           text-shadow: 0 2px 4px rgba(0,0,0,0.3);
       }
   
       /* On hover, slide the overlay up from bottom */
       .categories-section .cat-card:hover .cat-overlay {
           transform: translateY(0);
       }
   
       /* subtle image scale on hover */
       .categories-section .cat-card:hover img {
           opacity: 1;
           transform: scale(1.03);
           mix-blend-mode: normal;
       }
   
       /* no circle, no arrow, no extra elements */
       .cat-arrow,
       .categories-section .cat-arrow,
       .categories-grid .cat-arrow,
       .cat-hover-hint {
           display: none !important;
       }
   
       /* responsive breakpoints */
       @media (max-width: 1100px) {
           .categories-section {
               padding: 75px 0 !important;
           }
           .categories-section .categories-grid {
               grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
               gap: 20px !important;
           }
       }
   
       @media (max-width: 640px) {
           .categories-section {
               padding: 54px 0 !important;
           }
           .categories-section .categories-grid {
               grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
               gap: 18px !important;
           }
           .categories-section .cat-card {
               min-height: 190px !important;
           }
           .categories-section .cat-card .cat-name {
               font-size: 0.75rem !important;
           }
           .categories-section .cat-card .cat-overlay {
               padding: 12px 8px 10px;
           }
       }
   
       /* image tuning (kept) */
       .categories-section .cat-card img[alt*="Ink"] {
           mix-blend-mode: normal;
       }
       .categories-section .cat-card img[alt*="Head"] {
           mix-blend-mode: normal;
       }
       .categories-section .cat-card img[alt*="Plotter"] {
           object-position: center 30%;
       }
   
       .categories-section .cat-card {
           isolation: isolate;
       }
   
   