/* iCt Horse Cookie Consent v1.0 */
#icthorse-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #f0ebe3;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

#icthorse-cookie-banner .cb-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

#icthorse-cookie-banner .cb-text {
  flex: 1;
  min-width: 200px;
  margin: 0;
}

#icthorse-cookie-banner .cb-text a {
  color: #d4a574;
  text-decoration: underline;
}

#icthorse-cookie-banner .cb-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#icthorse-cookie-banner .cb-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

#icthorse-cookie-banner .cb-btn:hover {
  opacity: 0.85;
}

#icthorse-cookie-banner .cb-btn-accept {
  background: #d4a574;
  color: #1a1a1a;
}

#icthorse-cookie-banner .cb-btn-decline {
  background: transparent;
  color: #f0ebe3;
  border: 1px solid #f0ebe3;
}

@media (max-width: 600px) {
  #icthorse-cookie-banner .cb-inner {
    flex-direction: column;
    text-align: center;
  }
  #icthorse-cookie-banner .cb-buttons {
    width: 100%;
    justify-content: center;
  }
}
