/**
 * EntreAgri — Bandeau RGPD
 */
.ea-rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ea-rgpd-text {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.ea-rgpd-text a {
  color: var(--ea-color-medium-green, #005955);
  text-decoration: underline;
}

.ea-rgpd-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .ea-rgpd-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ea-rgpd-actions {
    width: 100%;
  }

  .ea-rgpd-actions .uk-button {
    flex: 1;
    text-align: center;
  }
}
