@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add any other search-specific styles here */
.search-fullscreen {
  overflow: hidden;
  height: 100%;
}

/* Mobile top actions container */
.mobile-top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
}

/* Mobile menu buttons (globe, user menu) */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  color: #222222;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
  background: #ebebeb;
  border-color: #d0d0d0;
}

.mobile-menu-btn .fa-user-circle {
  font-size: 20px;
  color: #717171;
}

.mobile-menu-btn .fa-bars {
  font-size: 14px;
  color: #222222;
}

.mobile-menu-btn .fa-globe {
  font-size: 16px;
  color: #222222;
}

/* Mobile dropdown positioning */
.header-dropdown-menu.mobile-dropdown {
  position: fixed;
  top: 60px;
  right: 12px;
  min-width: 200px;
  max-width: 240px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 1001;
}

/* Dropdown overlay */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1000;
}

/* Dropdown menu items */
.dropdown-menu-header {
  padding: 12px 16px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #717171;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-menu-item {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: #222222;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.dropdown-menu-item:hover {
  background-color: #f7f7f7;
}

.dropdown-menu-divider {
  height: 1px;
  background-color: #ebebeb;
  margin: 8px 0;
}


/* ============================================
   SEO Page Header - H1 at top of page
   ============================================ */
.seo-page-header {
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.seo-page-header .page-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.seo-page-header .page-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: #717171;
}

/* Mobile SEO header - more compact */
.seo-page-header.mobile {
  padding: 12px 0;
  background: transparent;
  border-bottom: none;
}

.seo-page-header.mobile .page-title {
  font-size: 18px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .seo-page-header:not(.mobile) {
    padding: 12px 16px;
  }

  .seo-page-header:not(.mobile) .page-title {
    font-size: 20px;
  }

  .seo-page-header:not(.mobile) .page-subtitle {
    font-size: 13px;
  }
}

/* SEO Interactive App Mobile Layout */
.seo-interactive-app.mobile {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.seo-interactive-app.mobile .seo-page-header.mobile {
  padding: 12px 16px;
  background: #fff;
  z-index: 100;
}

.seo-interactive-app.mobile .seo-page-header.mobile .page-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.seo-interactive-app.mobile .search-capsule-floating {
  padding: 8px 16px;
  background: #fff;
  z-index: 100;
}

.seo-interactive-app.mobile .map-wrapper {
  flex: 1;
  position: relative;
  min-height: 300px;
}
