/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  background: #25D366;
  color: var(--white);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #1E1E1E;
  color: rgba(255,255,255,0.82);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 2000;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: .82rem; margin: 0; flex: 1; }
.cookie-banner a { color: var(--gold-l); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
}
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
}

@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; }
  .cookie-buttons { width: 100%; justify-content: flex-end; }
}
