.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 12px 16px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.cookie-banner-text {
  flex: 1;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-policy-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.cookie-policy-link:hover {
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 6px 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.cookie-btn-refuse {
  background: #374151;
  color: #fff;
}

.cookie-btn-refuse:hover {
  background: #4b5563;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #fff;
  font-weight: bold;
}

.cookie-btn-accept:hover {
  background: #2563eb;
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner-text {
    flex-direction: column;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
