/* ==========================================================================
   HEADER STYLES (Shopify'dan birebir)
   ========================================================================== */

/* Announcement Bar */
.mytheme-announcement-bar {
  background-color: var(--mytheme-color-secondary);
  color: white;
  text-align: center;
  padding: var(--mytheme-space-sm) var(--mytheme-space-lg);
  font-size: var(--mytheme-font-size-small);
  /* Full-bleed - Tam genişlik */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.mytheme-announcement-bar a {
  color: white;
  text-decoration: underline;
}

/* Header Wrapper */
.mytheme-header {
  position: relative;
  z-index: 999;
  background-color: white;
  transition: box-shadow 0.3s ease;
  /* Header full-bleed DEĞİL - container içinde kalmalı */
  width: 100%;
  left: auto;
  right: auto;
  margin-left: 0;
  margin-right: 0;
}

.mytheme-header--sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Row 1: Top Utility Bar */
.mytheme-header__top {
  background-color: white;
  border-bottom: 1px solid var(--mytheme-color-neutral-200);
  padding: var(--mytheme-space-md) 0;
}

.mytheme-header__top .mytheme-container {
  padding-left: 140px !important;
  /* Logo için sol padding */
  padding-right: 140px !important;
}

.mytheme-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--mytheme-space-xl);
  /* Daha fazla gap */
}

/* Logo */
.mytheme-header__logo {
  flex-shrink: 0;
}

.mytheme-header__logo-link {
  display: block;
}

.mytheme-header__logo-image {
  height: 40px;
  width: auto;
  display: block;
}

/* Search Bar */
.mytheme-header__search {
  flex: 1;
  max-width: 600px;
  /* Daha geniş search bar - Shopify'dan */
  position: relative;
  z-index: 10000;
  /* Live search için */
}

.mytheme-header__search-form {
  position: relative;
  width: 100%;
  height: 44px;
}

.mytheme-header__search-input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 var(--mytheme-space-md);
  border: 1px solid var(--mytheme-color-neutral-300);
  border-radius: var(--mytheme-border-radius);
  font-size: 15px;
  transition: var(--mytheme-transition-fast);
}

.mytheme-header__search-input:focus {
  outline: none;
  border-color: var(--mytheme-color-primary);
  box-shadow: 0 0 0 3px rgba(198, 104, 45, 0.1);
}

.mytheme-header__search-placeholder {
  position: absolute;
  left: var(--mytheme-space-md);
  top: 0;
  height: 44px;
  line-height: 44px;
  font-size: 15px;
  color: #9ca3af;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.mytheme-header__search-placeholder::after {
  content: '|';
  animation: searchCursorBlink 0.8s infinite;
  color: var(--mytheme-color-primary);
  font-weight: 300;
  margin-left: 1px;
}

@keyframes searchCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.mytheme-header__search-button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mytheme-color-primary);
  transition: var(--mytheme-transition-fast);
  background: none;
  border: none;
  cursor: pointer;
}

.mytheme-header__search-button:hover {
  color: var(--mytheme-color-accent);
}

/* Utility Links */
.mytheme-header__utilities {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Compact spacing - Shopify'dan */
}

.mytheme-header__utility-link {
  display: flex;
  align-items: center;
  gap: 6px;
  /* Icon ve text arası - Shopify'dan */
  font-size: 14px;
  font-weight: 500;
  color: var(--mytheme-color-text);
  transition: var(--mytheme-transition-fast);
  position: relative;
}

.mytheme-header__utility-link:hover {
  color: var(--mytheme-color-primary);
}

.mytheme-header__utility-icon {
  width: 20px;
  /* Biraz daha küçük - Shopify'dan */
  height: 20px;
}

/* Cart Count Badge - Positioned on top-right of the icon */
/* Cart icon wrapper - needed for counter positioning */
.mytheme-cart-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mytheme-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mytheme-color-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  padding: 0 4px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mytheme-cart-count:not(:empty) {
  opacity: 1;
  transform: scale(1);
}

.mytheme-cart-count--visible {
  opacity: 1;
  transform: scale(1);
}

/* Row 2: Main Navigation */
.mytheme-header__nav {
  background-color: white;
  padding: 0;
}

.mytheme-header__nav .mytheme-container {
  padding-left: 140px !important;
  /* Logo ile aynı hizada */
  padding-right: 140px !important;
  width: 100%;
  max-width: var(--mytheme-container-width);
}

.mytheme-header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Menü ortalı */
  overflow-x: visible;
  width: 100%;
}

.mytheme-header__menu {
  display: flex;
  align-items: center;
  gap: 0;
  /* Shopify'dan - gap yok, padding kullanılıyor */
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  /* Tek satırda kal */
  justify-content: center;
  /* Ortalı */
  width: auto;
  /* İçeriğe göre genişlik */
}

.mytheme-header__menu-item {
  position: relative;
}

.mytheme-header__menu-link {
  display: block;
  padding: var(--mytheme-space-md) 18px;
  /* Dengeli padding - Shopify'dan */
  font-size: 13px;
  /* Okunabilir */
  font-weight: 600 !important;
  /* text-transform: uppercase; KALDIRILDI - Menü başlıkları zaten uppercase olarak kaydediliyor */
  letter-spacing: 0.3px;
  color: var(--mytheme-color-text);
  transition: var(--mytheme-transition-fast);
  position: relative;
  white-space: nowrap;
}

.mytheme-header__menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--mytheme-color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mytheme-header__menu-link:hover,
.mytheme-header__menu-item--active .mytheme-header__menu-link {
  color: var(--mytheme-color-primary);
}

.mytheme-header__menu-link:hover::after,
.mytheme-header__menu-item--active .mytheme-header__menu-link::after {
  width: 100%;
}

/* Force bold on ALL templates */
body .mytheme-header__menu-link {
  font-weight: 600 !important;
}

/* Dropdown Menu */
.mytheme-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background-color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: var(--mytheme-border-radius);
  padding: var(--mytheme-space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.mytheme-header__menu-item:hover .mytheme-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mytheme-header__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mytheme-header__dropdown-item {
  margin: 0;
}

.mytheme-header__dropdown-link {
  display: block;
  padding: var(--mytheme-space-sm) var(--mytheme-space-md);
  font-size: 14px;
  color: var(--mytheme-color-text);
  transition: var(--mytheme-transition-fast);
  border-radius: var(--mytheme-border-radius);
}

.mytheme-header__dropdown-link:hover {
  background-color: var(--mytheme-color-neutral-200);
  color: var(--mytheme-color-primary);
}

.mytheme-header__dropdown-item--has-children {
  position: relative;
}

.mytheme-header__dropdown-arrow {
  float: right;
  margin-left: 12px;
  font-size: 18px;
  color: var(--mytheme-color-primary);
}

/* Nested Dropdown (2nd Level) */
.mytheme-header__dropdown-nested {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background-color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: var(--mytheme-border-radius);
  padding: var(--mytheme-space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.mytheme-header__dropdown-item--has-children:hover .mytheme-header__dropdown-nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mytheme-header__dropdown-nested-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mytheme-header__dropdown-nested-item {
  margin: 0;
}

.mytheme-header__dropdown-nested-link {
  display: block;
  padding: var(--mytheme-space-sm) var(--mytheme-space-md);
  font-size: 14px;
  color: var(--mytheme-color-text);
  transition: var(--mytheme-transition-fast);
  border-radius: var(--mytheme-border-radius);
}

.mytheme-header__dropdown-nested-link:hover {
  background-color: var(--mytheme-color-neutral-200);
  color: var(--mytheme-color-primary);
}

/* ========================================================================
   MEGAMENU STYLES - For categories with many products
   ======================================================================== */

/* Megamenu wrapper */
.mytheme-header__megamenu {
  position: fixed !important;
  /* Fixed to viewport */
  top: 185px;
  /* Will be dynamically updated by JavaScript based on menu item position */
  left: 50%;
  transform: translateX(-50%);
  width: 1200px !important;
  max-width: 92vw !important;
  max-height: calc(100vh - 205px) !important;
  /* Viewport minus header space */
  overflow-y: auto !important;
  background-color: white;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 var(--mytheme-border-radius) var(--mytheme-border-radius);
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transition: opacity 0.15s ease 0.15s, visibility 0.15s ease 0.15s;
  /* Delay before closing to allow mouse movement */
  z-index: 100;
  padding: 12px 24px 24px 24px;
  /* Reduced top padding to bring closer to menu item */
  margin-top: 0;
  /* Removed negative margin - JavaScript handles positioning */
}

/* Hover bridge - keep megamenu open when moving mouse down */
.mytheme-header__menu-item--has-megamenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 50px;
  /* Bridge gap between menu and megamenu - increased to prevent closing */
  background: transparent;
  z-index: 101;
  /* Above megamenu to catch hover */
  pointer-events: auto;
  /* Enable hover detection */
}

/* Keep megamenu open when hovering over the bridge */
.mytheme-header__menu-item--has-megamenu:hover::after,
.mytheme-header__menu-item--has-megamenu::after:hover {
  /* Bridge keeps parent hover state active */
}

.mytheme-header__menu-item--has-megamenu:hover .mytheme-header__megamenu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  /* Enable interaction when visible */
  transition: opacity 0.2s ease, visibility 0.2s ease;
  /* Faster opening, no delay */
}

/* Keep megamenu open when hovering over it directly */
.mytheme-header__megamenu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  /* Faster opening, no delay */
}

/* Admin bar adjustment - JavaScript will handle dynamic positioning */
.admin-bar .mytheme-header__megamenu {
  /* top will be dynamically updated by JavaScript */
  max-height: calc(100vh - 237px) !important;
}

/* Megamenu grid container */
/* Megamenu grid container - MASONRY LAYOUT via CSS Columns */
.mytheme-megamenu__grid {
  display: block !important;
  column-count: 4;
  column-gap: 20px;
  width: 100%;
}

/* Responsive grid */
@media (max-width: 1200px) {
  .mytheme-megamenu__grid {
    column-count: 4;
  }
}

@media (max-width: 900px) {
  .mytheme-megamenu__grid {
    column-count: 3;
  }
}

@media (max-width: 600px) {
  .mytheme-megamenu__grid {
    column-count: 2;
  }
}

/* Individual category column */
.mytheme-megamenu__column {
  min-width: 180px;
  display: block;
  width: 100%;
  break-inside: avoid;
  /* Prevent splitting categories! */
  page-break-inside: avoid;
  margin-bottom: 20px;
  /* vertical-align: top; - Not needed for block */
}

/* Category title */
.mytheme-megamenu__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mytheme-color-text);
  margin: 0 0 var(--mytheme-space-md) 0;
  padding-bottom: var(--mytheme-space-sm);
  border-bottom: 2px solid var(--mytheme-color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  break-after: avoid;
  /* Keep title with first item */
}

.mytheme-megamenu__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mytheme-megamenu__title-link:hover {
  color: var(--mytheme-color-primary);
}

/* Product list */
.mytheme-megamenu__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  /* Ensure normal list display */
  width: 100% !important;
}

.mytheme-megamenu__item {
  margin: 0;
  break-inside: avoid;
  /* Prevent splitting individual products */
}

.mytheme-megamenu__link {
  display: block;
  padding: var(--mytheme-space-xs) 0;
  font-size: 14px;
  color: var(--mytheme-color-text);
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.mytheme-megamenu__link:hover {
  color: var(--mytheme-color-primary);
  padding-left: var(--mytheme-space-xs);
}

.mytheme-megamenu__view-all .mytheme-megamenu__link {
  display: inline-block;
  color: #fff;
  background-color: var(--mytheme-color-primary);
  font-weight: 600;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-top: 6px;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mytheme-megamenu__view-all .mytheme-megamenu__link:hover {
  background-color: #a8552a;
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(198, 104, 45, 0.35);
  padding-left: 14px;
}

/* Scrollbar styling for megamenu wrapper */
.mytheme-header__megamenu::-webkit-scrollbar {
  width: 10px;
}

.mytheme-header__megamenu::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 5px;
}

.mytheme-header__megamenu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
  border: 2px solid #f5f5f5;
}

.mytheme-header__megamenu::-webkit-scrollbar-thumb:hover {
  background: var(--mytheme-color-primary);
}

/* Mobile Menu Toggle */
.mytheme-header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.mytheme-header__mobile-toggle-line {
  width: 100%;
  height: 2px;
  background-color: var(--mytheme-color-text);
  transition: var(--mytheme-transition);
}

/* Mobile Menu */
.mytheme-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background-color: white;
  box-shadow: var(--mytheme-shadow-lg);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  overflow-y: auto;
}

.mytheme-mobile-menu[aria-hidden="false"] {
  transform: translateX(0);
}

.mytheme-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--mytheme-space-lg);
  border-bottom: 1px solid var(--mytheme-color-neutral-200);
}

.mytheme-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.mytheme-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: var(--mytheme-space-lg);
}

.mytheme-mobile-menu__item {
  margin-bottom: 2px;
}

.mytheme-mobile-menu__item-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--mytheme-border-radius);
  transition: var(--mytheme-transition-fast);
}

.mytheme-mobile-menu__item-wrapper:hover {
  background-color: var(--mytheme-color-neutral-100);
}

.mytheme-mobile-menu__link {
  flex: 1;
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--mytheme-color-text);
  text-decoration: none;
}

.mytheme-mobile-menu__link:hover {
  color: var(--mytheme-color-primary);
}

.mytheme-mobile-menu__toggle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mytheme-color-text);
  transition: transform 0.3s ease;
}

.mytheme-mobile-menu__toggle:hover {
  color: var(--mytheme-color-primary);
}

.mytheme-mobile-menu__toggle.active {
  transform: rotate(180deg);
  color: var(--mytheme-color-primary);
}

.mytheme-mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  /* Slight background for depth */
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  /* For animation */
}

.mytheme-mobile-menu__submenu .mytheme-mobile-menu__item-wrapper {
  padding-left: 16px;
}

.mytheme-mobile-menu__link--product {
  font-weight: 400;
  font-size: 14px;
  color: #4b5563;
  /* Gray-600 */
  padding: 10px 16px 10px 32px;
  /* Extra indent for products */
}

.mytheme-mobile-menu__link--product:hover {
  color: var(--mytheme-color-primary);
  background-color: rgba(0, 0, 0, 0.02);
}

.mytheme-megamenu__view-all .mytheme-mobile-menu__link,
.mytheme-megamenu__view-all .mytheme-mobile-menu__link--product {
  display: inline-block;
  color: #fff !important;
  background-color: var(--mytheme-color-primary);
  font-weight: 600;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 3px;
  margin: 4px 0 4px 32px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.mytheme-megamenu__view-all .mytheme-mobile-menu__link:hover,
.mytheme-megamenu__view-all .mytheme-mobile-menu__link--product:hover {
  background-color: #a8552a;
}

.mytheme-mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9999;
}

.mytheme-mobile-menu[aria-hidden="false"]~.mytheme-mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Announcement bar mobile'da full-bleed kalabilir */

  /* Fix container padding on mobile - was 140px! */
  .mytheme-header__top .mytheme-container {
    padding-left: var(--mytheme-space-md) !important;
    padding-right: var(--mytheme-space-md) !important;
  }

  .mytheme-header__top-inner {
    flex-wrap: wrap;
  }

  .mytheme-header__logo {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .mytheme-header__mobile-toggle {
    display: flex;
    order: 0;
  }

  .mytheme-header__utilities {
    order: 2;
    gap: var(--mytheme-space-md);
  }

  /* Hide only text labels on mobile */
  .mytheme-header__utility-link > span {
    display: none;
  }
  
  /* Ensure cart icon wrapper (now a div) stays visible */
  .mytheme-cart-icon-wrapper {
    display: inline-flex !important;
  }
  
  /* Cart count badge stays visible */
  .mytheme-cart-count {
    display: flex !important;
  }

  .mytheme-header__search {
    order: 3;
    flex-basis: 100%;
    max-width: none;
    margin-top: var(--mytheme-space-md);
  }

  .mytheme-header__nav {
    display: none;
  }
}

@media (max-width: 425px) {
  .mytheme-header__search {
    display: none;
  }
}

/* ==========================================================================
   LIVE SEARCH AUTOCOMPLETE
   ========================================================================== */

.live-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-height: 600px;
  overflow-y: auto;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.live-search-results::-webkit-scrollbar {
  width: 8px;
}

.live-search-results::-webkit-scrollbar-track {
  background: #F3F4F6;
  border-radius: 10px;
}

.live-search-results::-webkit-scrollbar-thumb {
  background: #C6682D;
  border-radius: 10px;
}

.live-search-header {
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6B7280;
}

.live-search-products {
  padding: 8px;
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.live-search-item:hover {
  background: #FEF3E7;
}

.live-search-image {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #F9FAFB;
}

.live-search-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-search-info {
  flex: 1;
  min-width: 0;
}

.live-search-title {
  font-size: 15px;
  font-weight: 600;
  color: #0D1117;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-search-price {
  font-size: 16px;
  font-weight: 700;
  color: #C6682D;
}

.live-search-loading {
  padding: 40px 20px;
  text-align: center;
  color: #6B7280;
}

.live-search-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #F3F4F6;
  border-top-color: #C6682D;
  border-radius: 50%;
  animation: liveSearchSpin 0.8s linear infinite;
  margin: 0 auto 12px;
}

@keyframes liveSearchSpin {
  to {
    transform: rotate(360deg);
  }
}

.live-search-empty {
  padding: 40px 20px;
  text-align: center;
}

.live-search-empty-text {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.live-search-view-all {
  display: block;
  padding: 16px 20px;
  text-align: center;
  border-top: 1px solid #F3F4F6;
  font-size: 14px;
  font-weight: 600;
  color: #C6682D;
  text-decoration: none;
  transition: background 0.2s ease;
}

.live-search-view-all:hover {
  background: #FEF3E7;
  color: #C6682D;
}

.search-highlight {
  background: #FEF3E7;
  color: #C6682D;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}