:root{
  --ech-font: "Anybody", system-ui, sans-serif;
  --ech-black: #0b0b0b;
  --ech-white: #ffffff;
  --ech-peach: #f4bf9b;
  --ech-peach-2: #f2b089;
}

/* Widget wrapper */
.ech-hero-trips {
  font-family: var(--ech-font);
  width: min(640px, 94vw);
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

.ech-hero-trips ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

/* Row link */
.ech-hero-trips a{
  display: grid;
  grid-template-columns: 1fr auto 32px;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 999px;

  background: var(--ech-white);
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--ech-black);

  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

/* Optional: no-link fallback uses same visuals */
.ech-hero-trips .ech-trip-nolink{
  display: grid;
  grid-template-columns: 1fr auto 32px;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 999px;

  background: var(--ech-white);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--ech-black);

  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.ech-hero-trips.er-hover-lift a:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
}

.ech-trip-name{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ech-trip-price{
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: var(--ech-black);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 6px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.ech-trip-go{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: var(--ech-peach);
  color: var(--ech-black);
  font-size: 16px;
  font-weight: 700;

  transition: background 120ms ease, transform 120ms ease;
}

.ech-hero-trips.er-hover-lift a:hover .ech-trip-go{
  background: var(--ech-peach-2);
  transform: translateX(1px);
}

/* Mobiel */
@media (max-width: 520px){
  .ech-hero-trips{
    width: min(480px, 94vw);
    padding: 8px 10px;
  }

  .ech-hero-trips a,
  .ech-hero-trips .ech-trip-nolink{
    padding: 7px 10px;
    grid-template-columns: 1fr auto 28px;
  }

  .ech-trip-name{ font-size: 13px; }
  .ech-trip-price{ font-size: 11px; padding: 5px 7px; }
  .ech-trip-go{ width: 24px; height: 24px; }
}
