/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: waPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(44, 36, 32, 0.95);
  backdrop-filter: blur(16px);
  padding: 20px 28px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { max-width: 700px; line-height: 1.6; }
.cookie-banner a { color: var(--rose-gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 24px;
  background: var(--rose-gold);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-accept:hover { background: var(--wood); }
.cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
