/* Taxi Adler — Cookie Consent Banner Styles */
#ta-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #1a1a1a;
  color: #f5f5f5;
  border-top: 3px solid #f5a81c;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
#ta-consent .ta-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
#ta-consent .ta-consent-text {
  flex: 1 1 460px;
  min-width: 260px;
}
#ta-consent .ta-consent-text a {
  color: #f5a81c;
  text-decoration: underline;
}
#ta-consent .ta-consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#ta-consent .ta-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  font-family: inherit;
  transition: opacity .15s ease;
}
#ta-consent .ta-btn:hover { opacity: .9; }
#ta-consent .ta-btn-primary { background: #f5a81c; color: #111; }
#ta-consent .ta-btn-ghost   { background: transparent; color: #fff; border-color: #888; }
@media (max-width: 600px) {
  #ta-consent .ta-consent-inner { flex-direction: column; align-items: stretch; padding: 14px 16px; }
  #ta-consent .ta-consent-buttons { justify-content: stretch; }
  #ta-consent .ta-btn { flex: 1 1 auto; text-align: center; }
}
