/* Enhanced Global Search Bar Styles */
.ano-global-search-container {
/*   background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%); */
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
/*   box-shadow: 0 15px 30px -10px rgba(79, 70, 229, 0.4); */
  border-radius: 12px;
  transition: all 0.3s ease;
  z-index: 10;
	margin-top: 20px;
}

.ano-global-search-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*   background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E"); */
  opacity: 0.3;
  z-index: 1;
}

.ano-global-search-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
/*   background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 60%); */
  opacity: 0.4;
  z-index: 1;
  transform: rotate(30deg);
  pointer-events: none;
  animation: shine 15s infinite linear;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.3;
  }
}

.ano-global-search-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.ano-global-search-title {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ano-global-search-form {
  display: flex;
  position: relative;
  z-index: 2;
  gap: 15px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
/*   background: rgba(255, 255, 255, 0.15); */
  padding: 6px;
}

.ano-global-search-input-wrapper {
  flex: 1;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 50px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ano-global-search-input-wrapper:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ano-global-search-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  background-color: white;
  color: #333;
}

.ano-global-search-input:focus {
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05), 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.ano-global-search-input::placeholder {
  color: #6b7280;
  opacity: 0.7;
}

.ano-global-search-clear {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s ease;
  border-radius: 50%;
  z-index: 2;
}

.ano-global-search-clear:hover {
  opacity: 1;
  color: #1e293b;
  background-color: rgba(0, 0, 0, 0.05);
}

.ano-global-search-btn {
  padding: 0 30px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 140px;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.ano-global-search-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.ano-global-search-btn:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

.ano-global-search-btn:hover::before {
  left: 100%;
}

.ano-global-search-btn svg {
  transition: transform 0.3s ease;
}

.ano-global-search-btn:hover svg {
  transform: translateX(5px);
}

.ano-global-search-btn .ano-btn-text {
  position: relative;
}

.ano-global-search-btn .ano-btn-text::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.ano-global-search-btn:hover .ano-btn-text::after {
  width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .ano-global-search-container {
    padding: 25px 20px;
    max-width: 90%;
    border-radius: 20px;
	  margin-top: 20px;
	  margin-bottom: 10px;
  }

  .ano-global-search-title {
    font-size: 1.5rem;
  }

  .ano-global-search-form {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 10px;
  }

  .ano-global-search-input-wrapper {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .ano-global-search-btn {
    width: 100%;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .ano-global-search-container {
    padding: 20px 15px;
    max-width: 85%;
    margin: 0 auto 25px;
    border-radius: 16px;
/*     background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%); */
  }

  .ano-global-search-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .ano-global-search-input {
    padding: 14px 15px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .ano-global-search-input-wrapper {
    border-radius: 12px;
  }

  .ano-global-search-clear {
    right: 12px;
  }

  .ano-global-search-btn {
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  }
}

/* Ripple effect */
.ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Focus state */
.ano-global-search-input-wrapper.focused {
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.3), 0 4px 12px rgba(0, 0, 0, 0.08);
}
