.hero-search {
  width: 100%;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(240,230,210,0.1);
  border: 1.5px solid rgba(240,230,210,0.25);
  border-radius: var(--r-lg);
  padding: 6px 6px 6px 20px;
  gap: 12px;
  width: 680px;
  max-width: 100%;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-search-box:focus-within {
  background: rgba(240,230,210,0.18);
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,222,0,0.15);
}

.hero-search-icon {
  color: rgba(240,230,210,0.55);
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 17px;
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1;
  padding: 10px 0;
}

.hero-search-input::placeholder { color: rgba(240,230,210,0.45); }

.hero-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue);
  border: none;
  border-radius: var(--r-md);
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-body);
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.25s ease;
}

.hero-search-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255,222,0,0.35);
}

