#ih-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a202c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 16px 24px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

#ih-cookie-banner.ih-cb-visible {
  transform: translateY(0);
}

.ih-cb-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ih-cb-text {
  flex: 1;
  min-width: 200px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.ih-cb-link {
  color: #4a9e4f;
  text-decoration: underline;
}

.ih-cb-link:hover {
  color: #5cb863;
}

.ih-cb-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ih-cb-accept,
.ih-cb-decline {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.ih-cb-accept {
  background: #4a9e4f;
  color: #fff;
  border: none;
}

.ih-cb-accept:hover {
  background: #3a7d3e;
  transform: translateY(-1px);
}

.ih-cb-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ih-cb-decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .ih-cb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ih-cb-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
