.cb-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: #111827;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  font-size: 14px;
  line-height: 1.5;
}

.cb-cookie-banner p {
  margin: 0;
  flex: 1;
}

.cb-cookie-actions {
  display: flex;
  gap: 10px;
}

.cb-cookie-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #1f2937;
  color: #f9fafb;
  padding: 10px 18px;
  border-radius: 8px;
  min-width: 120px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.cb-cookie-btn:hover {
  background: #111827;
  border-color: rgba(255, 255, 255, 0.28);
}

.cb-cookie-btn:active {
  transform: translateY(1px);
}

@media (max-width: 720px) {
  .cb-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cb-cookie-actions {
    width: 100%;
  }

  .cb-cookie-btn {
    width: 100%;
  }
}
