/* ========== COOKIE CONSENT BANNER ========== */
/* Fixed bottom bar shown on first visit until the user accepts or rejects
   non-essential cookies. See img/cookie-consent.js for the show/hide logic
   and inc/cookie-consent.php for the shared markup. */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #2C3539;
  border-top: 3px solid #f7ca2f;
  padding: 24px 40px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-consent-text {
  flex: 1 1 480px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.cookie-consent-text a {
  color: #f7ca2f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-consent-btn {
  display: inline-block;
  padding: 13px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.cookie-consent-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.cookie-consent-btn.cookie-accept {
  background: #f7ca2f;
  color: #2C3539;
  border: 2px solid #f7ca2f;
}
.cookie-consent-btn.cookie-reject {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.cookie-consent-btn.cookie-reject:hover { border-color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .cookie-consent { padding: 20px 24px; }
  .cookie-consent-inner { gap: 18px; }
  .cookie-consent-text { flex-basis: 100%; font-size: 14px; }
  .cookie-consent-actions { flex-basis: 100%; }
  .cookie-consent-btn { flex: 1 1 auto; text-align: center; }
}
