/*
Theme Name: Divi Child
Theme URI: https://tienda.hogarinteligenteia.es
Description: Child theme para Divi
Author: Ángel Rodríguez
Author URI: https://hogarinteligenteia.es
Template: Divi
Version: 1.0.0
*/
.hero-search-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0;
}

.hero-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 2px solid rgba(47, 93, 80, 0.18);
  border-radius: 16px;
  padding: 8px 10px 8px 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.hero-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex: 0 0 auto;
}

.hero-search-icon svg {
  width: 20px;
  height: 20px;
}

.hero-search-input {
  flex: 1 1 auto;
  border: 0 !important;
  outline: none !important;
  background: transparent;
  font-size: 15px;
  color: #1f2937;
  padding: 10px 4px;
  box-shadow: none !important;
}

.hero-search-input::placeholder {
  color: #8a8f98;
}

.hero-search-button {
  border: 0;
  border-radius: 12px;
  background: #5d7f49;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.hero-search-button:hover {
  background: #4f6d3e;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .hero-search-form {
    gap: 10px;
    padding: 8px;
  }

  .hero-search-input {
    font-size: 14px;
  }

  .hero-search-button {
    padding: 11px 16px;
    font-size: 14px;
  }
}