 body { font-family: 'Roboto', sans-serif; scroll-behavior: smooth; }

    /* Top Banner */
    .top-banner {
      background-color: #1D435F;
      color: #fff;
      text-align: center;
      padding: 8px 0;
      font-size: 0.9rem;
    }

    /* Navbar */
    /* Navbar Container */
.main-navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 10px 0;
}

/* Logo */


.nav-logo {
  height: 55px;
  max-height: 55px;
}

/* Nav Links */
.navbar .nav-link {
  color: #1D435F;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #4c6273;
}

/* WIDE Search Bar */
.search-bar {
  width: 100%;
  max-width: 800px;
  margin-right: 310px; /* Space between search bar & icons */
}

.search-bar .form-control {
  border-radius: 8px 0 0 8px;
  border: 2px solid #1D435F;
  padding-left: 15px;
  height: 45px;
}

.search-bar .search-btn {
  background-color: #1D435F;
  color: #fff;
  border-radius: 0 8px 8px 0;
  border: none;
  padding: 0 20px;
}
.search-bar .form-control:focus {
  background-color: #fff !important;     /* remove blue background */
  box-shadow: none !important;           /* remove blue glow */
  outline: none !important;              /* remove outline */
  border-color: #1D435F !important;      /* keep your border color */
}

#suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ccc;
    max-height: 350px;
    overflow-y: auto;
    width: 100%;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2000; /* high to appear above navbar */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
}

#suggestions li {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

#suggestions li:last-child {
    border-bottom: none;
}

#suggestions li img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 12px;
    border-radius: 4px;
}

#suggestions li .product-info {
    display: flex;
    flex-direction: column;
}

#suggestions li .product-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1D435F;
}

#suggestions li .product-model {
    font-size: 0.85rem;
    color: #555;
}
#suggestions li:hover {
    background-color: #f5f5f5;
}

/* Icons */
.navbar-nav .nav-link i {
  font-size: 22px;
  margin-right: 5px;
}

/* Flags */
.flag-icon {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  margin-right: 6px;
}

/* Mobile View */
@media (max-width: 991px) {

  .search-bar {
    display: none !important;
  }

  .nav-logo {
    height: 45px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 18px;
  }

  .navbar-nav .nav-link i {
    font-size: 24px;
  }
}

 /* Main Header */
 /* ========================
   MAIN HEADER
======================== */
.main-headerw {
  background: white;
  padding: 10px 20px;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

/* ------------------------
   LEFT MENU: All Categories
------------------------- */
.menu-left {
  width: 20%;
}

.menu-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-left li {
  position: relative;
}

.menu-left a {
  color: #1D435F;
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

/* ------------------------
   DROPDOWN MENUS
------------------------- */
.dropdown-menu,
.sub-menu,
.sub-sub-menu {
  display: none;
  
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 99;
}

.menu-left > ul > li > .dropdown-menu {
  top: 100%;
  left: 0;
}

/* SHOW ON HOVER */
.menu-left li:hover > .dropdown-menu,
.menu-left li:hover > .sub-menu,
.menu-left li:hover > .sub-sub-menu {
  display: block;
}

/* Submenu Links */
.sub-menu a,
.sub-sub-menu a {
  padding: 10px 15px;
  font-weight: 500;
  white-space: nowrap;
}

/* Arrows */
.dropdown-menu li > a i,
.sub-menu li > a i {
  font-size: 12px;
  margin-left: 5px;
}

/* Flyout positioning for nested */
.sub-menu {
  top: 0;
  left: 100%;
}

.sub-sub-menu {
  top: 0;
  left: 100%;
}

/* Optional hover effect */
.menu-left li a:hover {
  background: #f0f0f0;
}

/* ------------------------
   RIGHT MENU
------------------------- */
.menu-right {
  width: 80%;
   
  display: flex;
  justify-content: flex-end;
}

.menu-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-right li {
  margin-left: 20px;
}

.menu-right a {
  color: #1D435F;
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  font-weight: 600;
}
/* WhatsApp Button in Navbar */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  background-color: #25D366; /* WhatsApp green */
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  font-size: 1.1rem; /* Icon size */
}

.whatsapp-btn:hover {
  background-color: #1ebe57; /* Darker green on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Optional: For mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* WhatsApp Button */
.menu-right a.whatsapp-btn {
  background: #25D366;
  color: #fff;
  border-radius: 6px;
  padding: 8px 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.menu-right a.whatsapp-btn i {
  margin-right: 8px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px) {
.menu-right {
  width: 80%;
  font-size: 13px;
  display: flex;
  justify-content: flex-end;
}
  }
@media (max-width: 991px) {
  .main-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-left,
  .menu-right {
    width: 100%;
  }

  .menu-left ul,
  .menu-right ul {
    flex-direction: column;
  }

  .menu-right li {
    margin-left: 0;
    margin-top: 10px;
  }

  /* Mobile dropdown toggle (click to open) */
  .dropdown-menu,
  .sub-menu,
  .sub-sub-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}


    /* Hero Section */
      /* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 20px;
  overflow: hidden;
}

/* VIDEO BACKGROUND */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.site-header-fixed{
  display: none !important;
}
 @media (max-width: 991px) {
.main-navbar {
    display: none !important;
  }
  /* Hide the hamburger toggle button */
   .site-header-fixed {
  background: #ffffff;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ROW 1 Logic */
.header-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px; /* Spacing between rows on mobile */
}

.header-logo img {
  height: 40px;
  width: auto;
}

.wa-action-btn {
  background-color: #25d366;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ROW 2 Logic */
.header-search-bar {
  width: 100%;
}

.search-wrapper {
  position: relative;
  display: flex;
}

.search-field {
  width: 100%;
  padding: 10px 45px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.search-icon-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45px;
  background: none;
  border: none;
  color: #555;
}

/* Search Results Dropdown */
.results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  border: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

/* Desktop Alignment (Over 992px) */
@media (min-width: 992px) {
  .site-header-fixed .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .header-top-bar {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .header-search-bar {
    max-width: 600px; /* Limits search width on wide screens */
  }

  .header-right {
    order: 3; /* Puts WhatsApp at the far right */
  }
}
.mobile-navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.mobile-navbar .search-bar input {
  border-radius: 8px;
}

/* Mobile specific: hide text on very small screens if needed */
@media (max-width: 400px) {
  .btn-text {
    display: none;
  }
  .wa-action-btn {
    padding: 8px 12px;
  }
}
}
@media (max-width: 991px) {
  .mobile-navbar .search-bar {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .mobile-navbar .search-bar .form-control {
    width: 100%;
  }
}
.mobile-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
}
.drawer-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #1D435F;
}

 /* ================= MOBILE DRAWER ================= */

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 10000;
  transition: left 0.35s ease;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}

.mobile-drawer.active {
  left: 0;
}

/* ================= OVERLAY ================= */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 9999;
}

.drawer-overlay.active {
  display: block;
}

/* ================= HEADER ================= */

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 14px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

#closeDrawer {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= BODY ================= */

.drawer-body {
  padding: 10px 6px;
}

/* ================= CATEGORY LIST ================= */

.mobile-category-menu a {
  display: block;
  padding: 10px 6px;
  color: #1D435F;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
}

.mobile-category-menu a:active {
  background: #f1f5f9;
}

/* ================= ROWS ================= */

.mobile-cat-title,
.mobile-sub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= ACCORDION ================= */

.mobile-sub,
.mobile-subsub {
  display: none;
  padding-left: 14px;
  margin-left: 6px;
  border-left: 2px solid #e5e7eb;
}

.mobile-sub.open,
.mobile-subsub.open {
  display: block;
}

/* ================= TOGGLE ARROWS ================= */

.toggle-sub,
.toggle-subsub {
  cursor: pointer;
  font-size: 16px;
  color: #1D435F;
  padding: 6px;
  border-radius: 6px;
  user-select: none;
  transition: background 0.2s ease;
}

.toggle-sub:active,
.toggle-subsub:active {
  background: #eef2f7;
}

/* ================= MOBILE TOUCH POLISH ================= */

@media (hover: hover) {
  .mobile-category-menu a:hover {
    background: #f5f7fa;
  }
}
