/* ═══════════════════════════════════════════════════════════════════════════
   App-specific styles (cookie banner, form validation, etc.)
   ═══════════════════════════════════════════════════════════════════════════ */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 16px 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.cookie-banner a {
  color: #aad4ff;
  text-decoration: underline;
}

.cookie-banner__btn {
  background: #fff;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color var(--transition);
}

.cookie-banner__btn:hover {
  background: #f0f0f0;
}

/* Honeypot field (hidden) */
[name="_gotcha"] {
  display: none;
}

.honeypot-wrapper {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Review avatars (dynamic colors via CSS custom properties) */
.review-avatar[style*="--avatar-bg"] {
  background-color: var(--avatar-bg);
}

@media (max-width: 680px) {
  .cookie-banner {
    padding: 12px 16px;
    font-size: 13px;
  }

  .cookie-banner__btn {
    padding: 8px 16px;
    font-size: 13px;
    width: 100%;
  }
}
