
    :root {
      --bs-dark-bg: #111;
      --bs-accent: #f8f9fa;
      --bs-hover: rgba(255, 255, 255, 0.1);
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      padding-top: 72px;
      background-color: #f8f9fa;
    }

    .navbar {
      background-color: var(--bs-dark-bg);
      min-height: 72px;
    }

    .navbar-brand img {
      width: 140px;
      height: 40px;
      object-fit: contain;
    }

    .nav-link {
      color: var(--bs-accent) !important;
      padding: 0.75rem 1rem;
      transition: background-color 0.3s ease;
    }

    .nav-link:hover,
    .dropdown-menu a:hover {
      background-color: var(--bs-hover);
      color:white;
    }

    .dropdown-menu {
      background-color: var(--bs-dark-bg);
      border: none;
      padding: 0.5rem 0;
      max-height: 300px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #888 transparent;
    }

    .dropdown-menu::-webkit-scrollbar {
      width: 6px;
    }

    .dropdown-menu::-webkit-scrollbar-thumb {
      background-color: #888;
      border-radius: 4px;
    }

    .dropdown-menu::-webkit-scrollbar-track {
      background: transparent;
    }

    .dropdown-item {
      color: var(--bs-accent);
      padding: 0.65rem 1.5rem !important;
      font-size: 0.95rem;
    }

    .navbar-toggler {
      border: none;
      box-shadow: none;
    }

    .search-form-desktop {
      position: relative;
      width: 0;
      opacity: 0;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .search-form-desktop.active {
      width: 300px;
      opacity: 1;
      margin-left: 1rem;
    }

    .search-form-desktop input {
      padding: 0.4rem 1rem;
      border-radius: 8px;
      border: none;
      width: 100%;
      outline: none;
    }

    .search-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1055;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 2rem 1rem;
      color: #fff;
      transition: opacity 0.3s ease;
    }

    .search-overlay.show {
      display: flex;
    }

    .search-overlay .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 2rem;
      color: #fff;
      cursor: pointer;
    }

    .search-overlay h2 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    .search-overlay input {
      width: 100%;
      max-width: 600px;
      padding: 1rem;
      font-size: 1.2rem;
      border-radius: 8px;
      border: none;
      outline: none;
    }

    @media (max-width: 991.98px) {
      .d-lg-flex {
        display: none !important;
      }

      .mobile-search-icon {
        color: #fff;
        font-size: 1.5rem;
        margin-left: 1rem;
      }

      .navbar-collapse {
        background-color: var(--bs-dark-bg);
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        z-index: 1040;
        padding: 1rem;
      }

      .navbar-collapse.collapsing,
      .navbar-collapse.show {
        display: block;
      }
    }

    @media (min-width: 992px) {
      .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

.ui-autocomplete {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
  max-height: 300px;
  overflow-y: auto;
  padding: 4px 0;
  color: #333; /* Ensure base text color is always dark */
}

.ui-menu-item {
  padding: 0;
}

.ui-menu-item-wrapper {
  padding: 10px 16px;
  font-size: 15px;
  color: #333 !important; /* Ensure non-highlighted text stays black */
  transition: background-color 0.2s ease;
}

.ui-menu-item-wrapper:hover,
.ui-state-active {
  background-color: #f0f8ff !important;
  color: #333 !important; /* Maintain dark text color on hover */
}

/* Optional: styling for highlighted (matched) keyword */
.ui-menu-item-wrapper span {
  color: #1a73e8 !important;
  font-weight: bold;
}

/* Footer Section */ 
	    .footer {
      background-color: #111;
      color: #eee;
      padding: 60px 0;
      font-family: 'Segoe UI', sans-serif;
    }
    .footer a {
      color: #ccc;
      text-decoration: none;
    }
    .footer a:hover {
      color: #e0b04f;
      text-decoration: underline;
    }
    .footer-logo {
      font-size: 28px;
      font-weight: 700;
      color: #fff;
    }
    .footer-logo span {
      color: #e0b04f;
    }
    .social-icons a {
      color: #eee;
      margin-right: 12px;
      font-size: 20px;
    }
    .social-icons a:hover {
      color: #e0b04f;
    }
    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      font-size: 14px;
    }
    .payment-icons img {
      height: 36px;
      margin-right: 10px;
    }
    .footer .map {
      border-radius: 10px;
      overflow: hidden;
    }
.store-badge-wrapper {
  height: 50px;
  width: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px; /* Optional: smooth edges */
}

.store-badge {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.map-ratio {
   border-radius: 12px; overflow: hidden; 
}

   #map {
    height: 400px;
    width: 100%;
    border-radius: 12px;
  }

  .map-overlay {
    margin-top:60px;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    z-index: 100;
  }

  .map-wrapper {
    margin-top:-300px;
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
  }
  
  img.payment-icon {
  width: 48px;
  height: auto;
}