/* Amazon Search++ — ExoPetFoods theme */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0b1320;
  color: #e9eef7;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

main {
  max-width: 720px;
  width: 90%;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #0e1828, #121f36);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

h1 {
  color: #dff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #aee;
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1.8rem;
}

/* ✨ ExoPetFoods naranja sin glow permanente */
.brand-glow {
  color: #ff7a00; /* Naranja ExoPetFoods */
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease-in-out;
  text-shadow: none; /* sin brillo por defecto */
}

/* Hover: glow activado */
.brand-glow:hover {
  color: #ffae00;
  text-shadow: 
      0 0 12px #ffd27d,
      0 0 22px #ffc45e,
      0 0 34px #ffef9a,
      0 0 48px #fff5c8;
}

/* Estrellita apagada inicialmente */
.brand-glow::after {
  content: "";
  margin-left: 4px;
  opacity: 0.45;
  transform: scale(0.85);
  transition: all 0.35s ease-in-out;
  color: #ffbb55;
}

/* Estrellita encendida solo en hover */
.brand-glow:hover::after {
  opacity: 1;
  transform: scale(1.3);
  color: gold;
  text-shadow: 
      0 0 10px gold,
      0 0 16px rgba(255, 215, 0, 0.8),
      0 0 30px rgba(255, 230, 150, 0.9);
}

form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

input[type="search"] {
  min-width: 320px;
  max-width: 560px;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(180, 200, 230, 0.24);
  background: #0f1b2f;
  color: #e9eef7;
  outline: none;
  transition: border 0.2s ease;
}

input[type="search"]:focus {
  border-color: #8ef8f1;
}

button {
  padding: 0.85rem 1.05rem;
  border: 2px solid #89e6df;
  border-radius: 10px;
  background: transparent;
  color: #c9fff8;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}

button:hover {
  background: #1c2f49;
  border-color: #b2fff4;
}

.note {
  color: #9ab;
  font-size: 0.9rem;
  margin-top: 1rem;
}

