/*
 * Endure Painting — Cookie Consent Banner Styles
 * Palette from live site:
 *   Footer bg:     #1a1a1a  (bg-black-footer)
 *   Brand red:     #F54F39  (text-red, border-red, bg-red)
 *   Brand yellow:  #FCD34D  (bg-yellow, CTA buttons)
 *   White:         #ffffff
 *   Muted text:    #cccccc
 */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;           /* matches site footer */
  color: #f0f0f0;
  border-top: 3px solid #F54F39; /* brand red accent */
  padding: 14px 24px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  color: #d8d8d8;
}

.cookie-banner__text strong {
  color: #ffffff;
  font-weight: 700;
}

.cookie-banner__link {
  color: #fcd34d;                /* brand yellow — readable on dark bg */
  text-decoration: underline;
}

.cookie-banner__link:hover {
  color: #ffffff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Accept — brand yellow matching site CTA buttons */
.cookie-btn--accept {
  background: #fcd34d;
  color: #1a1a1a;
  border: 2px solid #fcd34d;
}

.cookie-btn--accept:hover {
  background: #f5c400;
  border-color: #f5c400;
}

/* Opt Out — outlined, low weight */
.cookie-btn--decline {
  background: transparent;
  color: #cccccc;
  border: 2px solid #555555;
}

.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #888888;
  color: #ffffff;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 14px 16px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
