/* Cookie Consent Banner */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #f0f0f0;
  padding: 16px 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}

.cc-banner p {
  margin: 0;
  max-width: 600px;
}

.cc-banner a {
  color: #4CAF50;
  text-decoration: underline;
}

.cc-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cc-btn {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.cc-btn-accept {
  background: #2E7D32;
  color: #fff;
}

.cc-btn-reject {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #555;
}

.cc-btn:hover {
  opacity: 0.9;
}

.cc-hidden {
  display: none !important;
}
