/* Búsqueda rápida en navbar */
.nav-search {
  position: relative;
  width: 100%;
}

.nav-search-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px 8px 36px;
  font-size: 0.88rem;
  outline: none;
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.1a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 12px center;
}

.nav-search-input:focus {
  border-color: var(--brand-color, #7D2A3C);
  background-color: #fff;
}

.nav-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 2000;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
  max-height: min(70vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
}

.nav-search-dropdown.is-open {
  display: block;
}

.nav-search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.12s;
}

.nav-search-item:hover {
  background: #f8fafc;
}

.nav-search-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.nav-search-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
}

.nav-search-item-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-search-meta {
  font-size: 0.7rem;
  color: var(--brand-color, #7D2A3C);
}

.nav-search-code {
  font-weight: 700;
}

.nav-search-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search-empty {
  padding: 12px;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

.nav-search-more-wrap {
  display: block !important;
  border-top: 1px solid #e2e8f0;
  padding: 10px 12px;
  text-align: center;
  background: #f8fafc;
}

.nav-search-more {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--brand-color, #7D2A3C) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.nav-search-more:hover {
  color: var(--brand-dark, #5C1F2D) !important;
  text-decoration: underline !important;
}

@media (min-width: 992px) {
  .navbar .navbar-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
  }

  .navbar-search-slot {
    position: absolute;
    left: 56%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(400px, 36vw);
    min-width: 220px;
    z-index: 20;
    pointer-events: none;
  }

  .navbar-search-slot .nav-search {
    pointer-events: auto;
  }

  .navbar-inner > .navbar-brand {
    flex: 0 1 auto;
    max-width: 42%;
    margin-right: 0;
    z-index: 2;
  }

  .navbar-inner > .navbar-toggler {
    display: none !important;
  }

  .navbar-inner > .navbar-collapse {
    flex: 0 0 auto !important;
    margin-left: auto !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    z-index: 2;
  }

  .navbar-inner > .navbar-collapse .navbar-nav {
    margin-left: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-search-slot {
    display: none !important;
  }
  .nav-search {
    width: 100%;
    margin: 10px 0 4px;
  }
}
