/* Konoyek — búsqueda de productos v1.1 */

.konoyek-search-page .search-page-hero {
  padding: 2rem 0 1.5rem;
}

.konoyek-search-page .search-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.konoyek-search-page .search-page-breadcrumb a {
  color: #3D3069 !important;
  text-decoration: none !important;
}

.konoyek-search-page .search-page-breadcrumb a:hover {
  color: #e61485 !important;
}

.konoyek-search-page .search-page-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #3D3069;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.konoyek-search-page .search-page-query {
  margin: 0 0 0.35rem;
  color: #6c757d;
  font-size: 0.95rem;
}

.konoyek-search-page .search-page-query strong {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #f3f1f8;
  border: 1px solid #e8e4f0;
  color: #3D3069;
  font-weight: 600;
}

.konoyek-search-page .search-page-count {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e61485;
}

.konoyek-search-results {
  padding: 2rem 0 3rem;
}

.konoyek-search-results .search-results-grid {
  margin-bottom: 0.5rem;
}

.konoyek-product-card {
  margin-bottom: 0;
}

.konoyek-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 8px 28px rgba(61, 48, 105, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.konoyek-product-card__link:hover {
  transform: translateY(-4px);
  border-color: #d8d2e6;
  box-shadow: 0 14px 36px rgba(61, 48, 105, 0.12);
}

.konoyek-product-card__image {
  position: relative;
  background: linear-gradient(180deg, #faf9fc 0%, #fff 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow: hidden;
}

.konoyek-product-card__img,
.konoyek-product-card__image img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 12px;
}

.konoyek-product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #3D3069;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.konoyek-product-card__badge--sale {
  background: #e61485;
}

.konoyek-product-card__badge--out {
  background: #adb5bd;
}

.konoyek-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.15rem 1.25rem;
  flex: 1;
}

.konoyek-product-card__title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #212529;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4rem;
}

.konoyek-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
}

.konoyek-product-card__price-regular {
  font-size: 0.82rem;
  color: #adb5bd;
  text-decoration: line-through;
}

.konoyek-product-card__price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3D3069;
  line-height: 1.2;
}

.konoyek-product-card__price-current small {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.25rem;
  color: #6c757d;
}

.konoyek-search-page .search-empty-state {
  max-width: 520px;
  margin: 1rem auto 2.5rem;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(61, 48, 105, 0.08);
}

.konoyek-search-page .search-empty-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #faf9fc 0%, #f3f1f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3D3069;
  font-size: 1.75rem;
}

.konoyek-search-page .search-empty-state h2 {
  color: #3D3069;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.konoyek-search-page .search-empty-state p {
  color: #6c757d;
  margin-bottom: 1.25rem;
}

.konoyek-search-page .search-empty-cta {
  border-radius: 12px !important;
  padding: 0.85rem 1.5rem !important;
  font-weight: 600 !important;
  background: #3D3069 !important;
  border-color: #3D3069 !important;
}

.konoyek-search-page .search-recommendations {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #ececf1;
}

.konoyek-search-page .search-recommendations-header {
  margin-bottom: 1.25rem;
}

.konoyek-search-page .search-recommendations-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: #3D3069;
}

.konoyek-search-page .search-recommendations-subtitle {
  margin: 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.konoyek-404-page .search-empty-cta.btn-outline-primary {
  border-radius: 12px !important;
  padding: 0.85rem 1.5rem !important;
  font-weight: 600 !important;
  border: 1px solid #3D3069 !important;
  color: #3D3069 !important;
  background: #fff !important;
  text-decoration: none !important;
}

.konoyek-404-page .search-empty-cta.btn-outline-primary:hover {
  background: #3D3069 !important;
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .konoyek-product-card__image {
    padding: 1rem;
  }

  .konoyek-product-card__title {
    min-height: auto;
    -webkit-line-clamp: 2;
  }
}
