/* ============================================
   COOKIE CONSENT banner — Rebel Co. Group
   ============================================ */
.cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #0f172a;
  color: #e5e7eb;
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  padding: 16px 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .25s ease, transform .25s ease;
  max-width: 960px;
  margin-inline: auto;
}
.cc-banner--show {
  opacity: 1;
  transform: translateY(0);
}
.cc-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cc-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1 1 320px;
  color: #e5e7eb;
}
.cc-link {
  color: #FFD700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cc-link:hover { color: #FFE333; }
.cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cc-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  font-family: inherit;
  line-height: 1;
}
.cc-btn--ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(255,255,255,0.25);
}
.cc-btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}
.cc-btn--primary {
  background: #FFD700;
  color: #0a0a0a;
  border-color: #FFD700;
}
.cc-btn--primary:hover {
  background: #FFE333;
  border-color: #FFE333;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cc-banner {
    left: 8px; right: 8px; bottom: 8px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .cc-inner { gap: 12px; }
  .cc-text { font-size: 13px; }
  .cc-actions { width: 100%; justify-content: stretch; }
  .cc-btn { flex: 1 1 auto; text-align: center; }
}
