/* Hertenkamp Weetjes — "Wist je dat?"-kaartje in de huisstijl van de site:
   hoekig bark-vlak, amber accenten, Baloo-kop. Themavariabelen met
   veilige fallbacks, zodat het ook zonder het thema overeind blijft. */

.hkw-toast {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(360px, calc(100vw - 36px));
  background: var(--c-ink, #2A1F16);
  color: #fff;
  border-radius: var(--radius, 2px);
  border-top: 3px solid var(--c-amber, #F5B843);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
  padding: 22px 22px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s cubic-bezier(.2, .9, .3, 1.15), transform .4s cubic-bezier(.2, .9, .3, 1.15);
}
.hkw-toast.is-visible { opacity: 1; transform: translateY(0); }

/* Diericoon: amber vlak dat speels half over de linkerbovenrand valt */
.hkw-toast__icon {
  position: absolute;
  top: -16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius, 2px);
  background: var(--c-amber, #F5B843);
  color: var(--c-ink, #2A1F16);
  transform: rotate(-6deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .3);
}
.hkw-toast__icon svg { width: 24px; height: 24px; }

.hkw-toast__dier {
  display: block;
  padding-left: 52px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-amber, #F5B843);
}
.hkw-toast__title {
  margin: 6px 0 0;
  padding-left: 52px;
  font-family: var(--font-head, inherit);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.15;
  color: #fff;
}

.hkw-toast__text {
  margin: 15px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: #E0D2BC;
}

.hkw-toast__actions { display: flex; align-items: center; margin-top: 17px; }
.hkw-toast__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius-pill, 999px);
  background: var(--c-primary, #E4711C);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.hkw-toast__more:hover { background: var(--c-primary-2, #C25A0F); transform: translateY(-1px); }
.hkw-toast__more svg { width: 14px; height: 14px; }

.hkw-toast__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--c-ink-soft, #C6B39D);
  cursor: pointer;
}
.hkw-toast__close:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.hkw-toast__close svg { width: 15px; height: 15px; }

/* Zacht pootafdruk-watermerk rechtsonder */
.hkw-toast__mark {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 92px;
  height: 92px;
  color: rgba(255, 255, 255, .05);
  transform: rotate(10deg);
  pointer-events: none;
}
.hkw-toast__mark svg { width: 100%; height: 100%; }

/* Mobiel: boven de sticky belknop/CTA-balk van het thema blijven */
@media (max-width: 1040px) {
  .hkw-toast { bottom: 78px; left: 12px; width: min(360px, calc(100vw - 24px)); }
}

@media (prefers-reduced-motion: reduce) {
  .hkw-toast { transition: opacity .2s ease; transform: none; }
  .hkw-toast__more { transition: none; }
}
