     * {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
    
  color: #333;
  line-height: 1.4;
}
.mobile-top-row{
  display: none;
}
.mobile-drawer{
  display: none;
}
.drawer-overlay{
  display: none;
}
/* ====== Top Header ====== */
.top-header {
  width: 100%;
  background: #f0f2f5;       /* light neutral gray */
  color: #555;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
}
.top-left .tagline {
  font-weight: 600;
  color: #333;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-right .divider {
  color: #999;
}
.top-right .social-icons a {
  color: #555;
  margin-left: 8px;
  transition: color 0.3s;
}
.top-right .social-icons a:hover {
  color: #1D435F;
}

/* ====== Main Header ====== */
.main-header {
    position: relative;  /* ADD THIS LINE */
    width: 100%;
    background: #fff;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.logo img {
  max-height: 60px;
  height: auto;
}

 
/* ====== Header Actions ====== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.language {
  display: flex;
  align-items: center;
  gap: 6px;
}
.language img {
  width: 20px;
  height: 14px;
}
.language select {
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}
.login-link:hover {
  color: #1D435F;
}

.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f5f5f5;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  transition: background 0.3s, color 0.3s;
}
.action-btn i {
  font-size: 16px;
}
.action-btn:hover {
  background: #1D435F;
  color: #fff;
}
.action-btn .count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 1px 6px;
  min-width: 18px;
  text-align: center;
  font-weight: 600;
  line-height: 16px;
}
.cart-btn {
  background: #1D435F;
  color: #fff;
}
.cart-btn:hover {
  background: #0056b3;
}

/* =========================================================
   CATEGORY + BANNER LAYOUT WITH TOP MENU
   ========================================================= */
   /* =========================
   Category Banner Layout
========================= */
.category-banner-layout {
  width: 100%;
  padding: 0 20px;
  margin-top: 5px;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* =========================
   Top Navigation Bar
========================= */
.banner-top-menu {
  background: #1D435F;
  position: relative;
  z-index: 10;
}

.banner-top-menu ul {
  display: flex; /* top-level links horizontal */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 12px 20px;
  gap: 20px;
}

.banner-top-menu li {
  position: relative;
}

.banner-top-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.banner-top-menu a:hover {
   
  color: #a3c1e0;
}


/* =========================
   All Categories Dropdown
========================= */
.categories-left {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background-color: #1D435F;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

/* Dropdown content hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  min-width: 250px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 100;
  padding: 0;
}




.banner-top-menu li {
  list-style: none;
  display: inline-block; /* Horizontal menu */
  margin-right: 5px; /* space between items */
}

.banner-top-menu a {
  display: flex;
  align-items: center; /* vertically center icon & text */
  text-decoration: none;
  color: #fff; /* or your menu text color */
  font-weight: 500;
  gap: 8px; /* space between icon and text */
  transition: color 0.3s ease;
}

.banner-top-menu a:hover {
  color: #ffd700; /* example hover color */
}

.banner-top-menu a .category-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* black → white */
  transition: filter 0.3s ease;
}

.banner-top-menu a:hover .category-icon {
  filter: brightness(0.8) invert(1);
}









/* Show dropdown on hover */
.categories-left:hover > .dropdown-content {
  display: block;
}

/* Force vertical lists */
.dropdown-content ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Main category items */
.main-categories > li {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}

.main-categories a,
.sub-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}

.main-categories a:hover,
.sub-menu a:hover {
  background-color: #1D435F;
  color: #fff;
}

/* Submenus hidden by default */
.has-sub > .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%; /* flyout to right */
  min-width: 220px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 200;
}

/* Sub-submenus hidden by default */
.sub-menu .has-sub > .sub-menu {
  display: none;
  left: 100%;
  top: 0;
}

/* Show submenus on hover */
.has-sub:hover > .sub-menu {
  display: block;
}

.sub-menu .has-sub:hover > .sub-menu {
  display: block;
}

/* Optional: nested link padding */
.sub-menu a {
  padding-left: 14px;
}

/* Optional: add small arrow for submenus */
.has-sub > a::after {
  content: "▸";
  margin-left: auto;
  font-size: 12px;
  color: #333;
}

.has-sub:hover > a::after {
  color: #fff;
}


/* ====== Search Bar ====== */
 /* Search container wrapper */
.custom-search-container {
  position: relative;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  z-index: 1005; /* above other sections */
}

/* Search form */
.custom-search-form {
  display: flex;
  flex: 1;
  margin: 0 40px;
  border: 2px solid #1D435F;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
}

.custom-search-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.custom-search-form button {
  background: #1D435F;
  border: none;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.custom-search-form button:hover {
  background: #0056b3;
}

/* Dropdown */
 .custom-search-dropdown {
  position: absolute;        /* relative to container */
  top: 100%;                 /* directly below search bar */
  left: 0;                   /* start from the left of container */
  width: 100%;               /* same width as the search bar */
  background: #fff;
  border: 1px solid #ccc;
  display: none;             /* hidden by default */
  max-height: 400px;
  overflow-y: auto;
  z-index: 1100;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border-radius: 6px;        /* optional for nice rounded corners */
}


.custom-search-dropdown .row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.custom-search-dropdown .product {
  flex: 1;
  border: 1px solid #eee;
  padding: 5px;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 0.2s;
}

.custom-search-dropdown .product:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-search-dropdown .product img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.custom-search-dropdown .name {
  font-size: 0.9em;
  margin: 5px 0;
}

.custom-search-dropdown .price {
  color: green;
  font-weight: bold;
}

.custom-search-dropdown .compare-price {
  text-decoration: line-through;
  color: red;
  font-size: 0.85em;
}

/* ================= MOBILE HEADER ================= */
@media (max-width: 1000px) {

  /* Hide everything not needed on mobile */
   
  .header-actions,
  .language,
  .login-link {
    display: none !important;
  }
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0f2f5;
    padding: 4px 4px;
  
  }

  /* Left tagline */
  .top-left {
    flex: 1;
  }

  .top-left .tagline {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
  }

  /* Hide unnecessary items */
  .top-right .email,
  .top-right .contact,
  .top-right .divider {
    display: none !important;
  }

  /* Right side: only social icons */
  .top-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .top-right .social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .top-right .social-icons a {
    color: #1D435F;
    font-size: 16px;
    transition: color 0.3s;
  }

  .top-right .social-icons a:hover {
    color: #a3c1e0;
  }
  /* Main header becomes vertical */
  .main-header {
    display: block;
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
  }

  /* Logo hidden, replaced by mobile text row */
  .logo {
    display: none;
  }

  /* ---------- Mobile Header Row ---------- */
  /* ===== Mobile Header Container ===== */
.mobile-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 12px;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* ===== Top: Menu Icon Above Logo ===== */
.mobile-menu-top {
  text-align: left;
  margin-bottom: 5px;
}

.mobile-menu-top .menu-icon {
  font-size: 24px;
  color: #1D435F;
  cursor: pointer;
}

/* ===== Second Row: Logo + Icons ===== */
.mobile-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* ===== Logo ===== */
 .mobile-left {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* ⬅️ Align items to the left */
  flex: 1;
  gap: 8px; /* optional: space between icon and text */
}

.mobile-menu-icon {
  font-size: 24px;
  color: #1D435F;
  cursor: pointer;
}

.mobile-title {
  font-size: 18px;
  font-weight: 700;
  color: #1D435F;
}

.mobile-logo {
  text-align: left; /* optional: if you use a logo image */
}

.logo-mobile {
  width: 120px;
  height: auto;
}

.whatsapp-btn-mob {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px;
    margin-left: 10px;
    font-size: 12px;          /* slightly larger than 9px for readability */
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn-mob i {
    font-size: 16px;           /* icon size */
}

/* Hover effect */
.whatsapp-btn-mob:hover {
    background-color: #128C7E; /* darker WhatsApp green */
    transform: translateY(-2px);
}

/* ===== Icons (Wishlist + Cart) ===== */
.mobile-icons {
  display: flex;
  gap: 10px;
}

.mobile-icons a {
  width: 38px;
  height: 38px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  color: #1D435F;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
}

.mobile-icons a:hover {
  color: #a3c1e0;
   background-color: white;
}

/* ===== Notification Count (Wishlist/Cart) ===== */
.mobile-icons a .count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  padding: 1px 5px;
  line-height: 12px;
}

  /* ---------- Search Row ---------- */
  .custom-search-form {
    display: flex;
    width: 100%;
    margin: 0;
    border: 2px solid #1D435F;
    border-radius: 8px;
    background: #f9f9f9;
    overflow: hidden;
  }

  .custom-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 14px;
    background: transparent;
  }

  .custom-search-form button {
    background: #1D435F;
    border: none;
    color: #fff;
    padding: 0 16px;
    font-size: 16px;
  }
  /* Hide everything inside main layout except video */
 
  .left-categories,
  .banner-top-menu,
  .category-section,
  .category-grid,
  .category-box,
  .all-categories-btn,
  .categories-scroll {
    display: none !important;
  }

   

  /*  */
  /* =========================
   Menu Drawer
========================= */
 
.mobile-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-icon i {
  font-size: 24px;
  color: #1D435F;
  cursor: pointer;
}

.mobile-logo img {
  width: 120px;
}

.mobile-icons a {
  color: #1D435F;
  font-size: 20px;
  margin-left: 10px;
  position: relative;
}

.mobile-icons .count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 2px 4px;
}

/* =========================
   MOBILE DRAWER
========================= */
.mobile-drawer {
  display: block;
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #1D435F;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

.drawer-close {
  font-size: 26px;
  cursor: pointer;
}

.drawer-content {
  padding: 10px 15px;
}

/* =========================
   CATEGORY LISTS & BULLETS REMOVAL
========================= */

/* Remove bullets, spacing & markers from all lists */
.categories-list,
.categories-list ul,
.categories-list li,
.sub-menu,
.sub-menu li {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove ::marker for modern browsers */
.categories-list li::marker,
.sub-menu li::marker {
  content: "" !important;
  display: none !important;
}

/* Category Items */
.category-item {
  border-bottom: 1px solid #eee;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.category-header a {
  color: #1D435F;
  text-decoration: none;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-icon {
  width: 22px;
  height: 22px;
}

.dropdown-toggle {
  cursor: pointer;
  color: #1D435F;
  font-weight: bold;
}

/* Submenu */
.sub-menu {
  display: none;
  padding-left: 15px;
  transition: all 0.3s ease;
}

.category-item.open > .sub-menu,
li.open > .sub-menu {
  display: block;
}

/* Optional: Smooth slide-down animation */
.sub-menu li {
  padding: 5px 0;
}

/* =========================
   OVERLAY
========================= */
.drawer-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   RESPONSIVE VISIBILITY
========================= */

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-top-row,
  .mobile-drawer,
  .drawer-overlay {
    display: none !important;
  }
}

/* Show on mobile */
@media (max-width: 768px) {
  .mobile-top-row {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }
}

   
}