/* No Results Found - Artistic Design */
.no-results-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.no-results-illustration {
  margin-bottom: 2rem;
  position: relative;
}

.search-icon-art {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  color: #fc385c;
  margin-bottom: 1rem;
  z-index: 2;
}

.search-decorative {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.search-circle {
  position: absolute;
  border: 3px solid rgba(252, 56, 92, 0.4);
  border-radius: 50%;
  animation: searchPulse 1.8s ease-in-out infinite;
}

.search-circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  animation-delay: 0s;
}

.search-circle:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin: -60px 0 0 -60px;
  animation-delay: 0.3s;
}

.search-circle:nth-child(3) {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  margin: -80px 0 0 -80px;
  animation-delay: 0.6s;
}

@keyframes searchPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.search-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 1rem 0;
}

.search-dot {
  width: 12px;
  height: 12px;
  background: #fc385c;
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite both;
}

.search-dot:nth-child(1) {
  animation-delay: -0.32s;
}
.search-dot:nth-child(2) {
  animation-delay: -0.16s;
}
.search-dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes dotBounce {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.no-results-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.no-results-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 400px;
}

.no-results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-clear,
.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-clear {
  background-color: #fc385c;
  color: white;
  box-shadow: 0 4px 15px rgba(252, 56, 92, 0.2);
}

.btn-clear:hover {
  background-color: #e91e63;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 56, 92, 0.3);
  color: white;
  text-decoration: none;
}

.btn-browse {
  background-color: transparent;
  color: #fc385c;
  border: 2px solid #fc385c;
}

.btn-browse:hover {
  background-color: #fc385c;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .search-icon-art {
    font-size: 4rem;
  }

  .no-results-text h2 {
    font-size: 1.5rem;
  }

  .no-results-text p {
    font-size: 1rem;
  }

  .no-results-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-clear,
  .btn-browse {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}
