:root {
  --gold: #D4AF37;
}

/* Barre livraison offerte */
.header-top {
  width: 100%;
  background: #faf3e3;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: .3rem 0 .1rem 0;
  letter-spacing: .01em;
  border-bottom: 1px solid #f5e7cb;
}

/* Logo + texte doré */
.brand-logo span {
  color: var(--gold);
  text-shadow: 1px 1px 6px #fff5cc;
  letter-spacing: 0.03em;
}
.brand-logo img {
  box-shadow: 0 2px 8px rgba(212,175,55,0.13);
}

/* Barre recherche */
.search-form {
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  background: #fff;
  border: 1.5px solid var(--gold);
  margin-left: 2rem;
  margin-right: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(212,175,55,0.07);
  transition: box-shadow .2s;
}
.search-form:focus-within {
  box-shadow: 0 4px 14px rgba(212,175,55,0.16);
}
.search-form input[type="text"] {
  border: none;
  outline: none;
  padding: .4rem 1rem;
  background: none;
  color: #222;
  font-size: 1rem;
  min-width: 130px;
}
.search-form button {
  border: none;
  background: none;
  color: var(--gold);
  padding: .4rem .9rem;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color .2s;
}
.search-form button:hover { color: #b48a14; }
:root { --gold: #D4AF37; }
.animate-bounce {
  animation: bounce 1.7s infinite alternate cubic-bezier(.6,0,.4,1.0);
}
@keyframes bounce {
  0%   { transform: translateY(0);}
  100% { transform: translateY(-15px);}
}
