/* Consent banner for marketing analytics (MyTracker) */
.diabelly-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.diabelly-consent-banner__text {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
  max-width: 600px;
}

.diabelly-consent-banner__text a {
  color: #6C5CE7;
  text-decoration: underline;
}

.diabelly-consent-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.diabelly-consent-banner__btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.15s;
}

.diabelly-consent-banner__btn:hover {
  opacity: 0.85;
}

.diabelly-consent-banner__btn--accept {
  background: linear-gradient(172deg, #6C5CE7, #A29BFE);
  color: #fff;
}

.diabelly-consent-banner__btn--decline {
  background: transparent;
  color: #9CA3AF;
}

@media (max-width: 640px) {
  .diabelly-consent-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
}
