/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.4
	Stable tag: 3.4.4
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* Container alignment (optional – apne header ke layout ke hisab se adjust) */
.city-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Parent pill/button look */
.city-menu-parent > .city-trigger {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

/* Caret */
.city-menu-parent > .city-trigger::after {
  content: "▾";
  font-size: 12px;
  line-height: 1;
  transform: translateY(1px);
}

/* Hover/focus states */
.city-menu-parent > .city-trigger:hover,
.city-menu-parent > .city-trigger:focus {
  border-color: #cfcfcf;
  background: #f9f9f9;
}

/* Submenu dropdown */
.city-submenu {
  position: absolute;
  z-index: 9999;
  min-width: 180px;
  margin-top: .5rem;
  padding: .4rem;
  border: 1px solid #e6e6e6;
  border-radius: .6rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  list-style: none;
  display: none; /* hidden by default */
}

/* Show on hover */
.city-menu-parent:hover > .city-submenu {
  display: block;
}

/* Submenu items */
.city-submenu > .menu-item > a {
  display: block;
  padding: .5rem .6rem;
  border-radius: .4rem;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.city-submenu > .menu-item > a:hover {
  background: #f2f2f2;
}

/* Current city highlight in list */
.city-submenu > .menu-item.current-city > a {
  background: #f5f7ff;
  font-weight: 700;
}

/* Small screens: make dropdown full-width under the trigger (optional) */
@media (max-width: 767px) {
  .city-submenu {
    left: 0;
    right: auto;
    min-width: 220px;
  }
}
