.ao-cookie-consent {
  position: fixed;
  /*left: 16px;*/
  right: 16px;
  bottom: 16px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid
    color-mix(in srgb, var(--ao-primary) 22%, var(--ao-border-light));
  background: color-mix(in srgb, var(--ao-bg-card) 90%, #000 10%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.ao-cookie-consent__text {
  margin: 0;
  color: var(--ao-text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ao-cookie-consent__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ao-cookie-consent__actions .ao-btn {
  white-space: nowrap;
}

.ao-cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

@media (max-width: 640px) {
  .ao-cookie-consent {
    flex-direction: column;
    align-items: stretch;
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .ao-cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
