.zlo-wrap {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 1.5rem 0;
}

.zlo-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(91, 72, 54, 0.2);
  border-radius: 999px;
  background: #f7f3ed;
  color: #584a3d;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(49, 37, 26, 0.04);
}

.zlo-icon {
  width: 1.38rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #896f55;
  overflow: visible;
}

.zlo-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.38rem;
  height: 1rem;
}

.zlo-eye-open {
  transform-box: fill-box;
  transform-origin: center 78%;
}

.zlo-eye-white {
  fill: #fffdfa;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linejoin: round;
}

.zlo-iris {
  fill: #b59672;
  stroke: currentColor;
  stroke-width: 1.15;
}

.zlo-pupil {
  fill: #4d4034;
}

.zlo-glint {
  fill: #fff;
}

.zlo-closed-lid {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0;
}

.zlo-eye.is-blinking .zlo-eye-open {
  animation: zlo-natural-blink 230ms cubic-bezier(.42, 0, .2, 1);
}

.zlo-eye.is-blinking .zlo-closed-lid {
  animation: zlo-lid-line 230ms cubic-bezier(.42, 0, .2, 1);
}

@keyframes zlo-natural-blink {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  43%, 57% { transform: scaleY(0.06); opacity: 0.08; }
}

@keyframes zlo-lid-line {
  0%, 30%, 70%, 100% { opacity: 0; }
  43%, 57% { opacity: 1; }
}

.zlo-count {
  color: inherit;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.zlo-label {
  color: #746657;
}

@media (prefers-contrast: more) {
  .zlo-counter { border-color: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  .zlo-eye.is-blinking .zlo-eye-open,
  .zlo-eye.is-blinking .zlo-closed-lid { animation: none; }
}
