#dh-consent {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 1080px;
    margin: 0 auto;
    z-index: 60;
    background: #f5f0e8;
    color: #0f1713;
    border: 1px solid rgba(63, 107, 84, 0.25);
    border-radius: 16px;
    box-shadow: 0 12px 48px -12px rgba(15, 23, 19, 0.35), 0 4px 12px -4px rgba(15, 23, 19, 0.15);
    padding: 18px 22px;
    font-family: 'Inter', system-ui, sans-serif;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.3s ease;
  }
  #dh-consent.dh-consent-visible {
    transform: translateY(0);
    opacity: 1;
  }
  #dh-consent.dh-consent-hidden { display: none; }
  .dh-consent-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  @media (min-width: 768px) {
    .dh-consent-inner {
      flex-direction: row;
      align-items: center;
      gap: 28px;
    }
  }
  .dh-consent-text { flex: 1; min-width: 0; }
  .dh-consent-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 4px 0;
    color: #0f1713;
    letter-spacing: -0.01em;
  }
  .dh-consent-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: rgba(15, 23, 19, 0.7);
  }
  .dh-consent-link {
    color: #3f6b54;
    text-decoration: underline;
    text-decoration-color: rgba(63, 107, 84, 0.4);
    text-underline-offset: 2px;
  }
  .dh-consent-link:hover { color: #6fa37a; }
  .dh-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
  }
  .dh-consent-btn {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    border: 1px solid transparent;
  }
  .dh-consent-btn:active { transform: translateY(1px); }
  .dh-consent-reject {
    background: transparent;
    color: rgba(15, 23, 19, 0.6);
    border-color: rgba(63, 107, 84, 0.25);
  }
  .dh-consent-reject:hover { color: #0f1713; border-color: rgba(63, 107, 84, 0.5); }
  .dh-consent-analytics {
    background: transparent;
    color: #3f6b54;
    border-color: rgba(63, 107, 84, 0.4);
  }
  .dh-consent-analytics:hover { background: rgba(63, 107, 84, 0.08); }
  .dh-consent-accept {
    background: #3f6b54;
    color: #f5f0e8;
  }
  .dh-consent-accept:hover { background: #6fa37a; }
  /* Footer "Cookie preferences" reopener (link rendered in footer.njk) */
  .dh-consent-reopen {
    background: transparent;
    border: 0;
    padding: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(63, 107, 84, 0.4);
    text-underline-offset: 2px;
  }
  .dh-consent-reopen:hover { color: #6fa37a; }
