.ase-search__mount {
  position: relative;
}

.ase-search__mount.open,
.search_form.ase-search__mount,
#search-form-desktop.ase-search__mount,
#search-form-mobile.ase-search__mount {
  overflow: visible;
}

.ase-search__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10050;
  width: 100%;
  max-width: 100%;
  max-height: 75vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .ase-search__dropdown {
    max-width: 75vw;
  }
}

.ase-search__columns {
  display: flex;
  gap: 20px;
}

.ase-search__column--products {
  flex: 2;
  min-width: 0;
}

.ase-search__column--categories {
  flex: 1;
  min-width: 0;
  border-left: 1px solid #e5e5e5;
  padding-left: 20px;
}

.ase-search__section-title {
  color: #666;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-weight: 600;
}

.ase-search__product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
}

.ase-search__product-image,
.ase-search__skeleton-box--image {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  object-fit: cover;
  border-radius: 4px;
}

.ase-search__product-body {
  min-width: 0;
}

.ase-search__product-title {
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.ase-search__product-price {
  font-weight: 700;
}

.ase-search__product-price-old {
  color: #717171;
  text-decoration: line-through;
  font-size: 0.9em;
  margin-left: 6px;
}

.ase-search__category {
  display: block;
  margin-bottom: 12px;
  color: inherit;
  text-decoration: none;
  line-height: 1.4;
}

.ase-search__articles {
  border-top: 1px solid #e5e5e5;
  margin-top: 16px;
  padding-top: 16px;
}

.ase-search__article {
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.ase-search__article-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.ase-search__article-excerpt {
  color: #717171;
  font-size: 0.92em;
}

.ase-search__footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 16px;
  padding-top: 16px;
  text-align: center;
}

.ase-search__footer a {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}

.ase-search__item--active {
  background: #f5f5f5;
  border-radius: 4px;
}

.ase-search__skeleton-box {
  background: linear-gradient(90deg, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
  background-size: 200% 100%;
  animation: ase-search-shimmer 1.2s ease-in-out infinite;
  border-radius: 4px;
}

.ase-search__skeleton-box--line {
  height: 12px;
  margin-bottom: 8px;
}

.ase-search__skeleton-box--line-short {
  width: 60%;
}

@keyframes ase-search-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 767px) {
  .ase-search__columns {
    flex-direction: column;
  }

  .ase-search__column--categories {
    border-left: 0;
    border-top: 1px solid #e5e5e5;
    padding-left: 0;
    padding-top: 16px;
  }
}
