/* Cookie consent banner — HADcars */
.cb {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 1000;
  background: #1a0f0f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.55);
  padding: 16px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}
@media (min-width: 640px) {
  .cb { left: 16px; right: 16px; bottom: 16px; padding: 18px 20px; }
}
.cb-in {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cb-text { flex: 1 1 320px; min-width: 0; }
.cb-text strong { display: block; font-size: 14px; margin-bottom: 4px; letter-spacing: 0.01em; }
.cb-text p { margin: 0; font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.78); }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; width: 100%; }
@media (min-width: 640px) { .cb-actions { width: auto; } }
.cb-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
@media (min-width: 640px) { .cb-btn { flex: initial; padding: 10px 18px; } }
.cb-btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); }
.cb-btn-primary { background: #d32f2f; border-color: #d32f2f; }
.cb-btn-primary:hover { background: #c41e1e; border-color: #c41e1e; }
