/* Shared by server-rendered pages and dynamic results. No 404 typography. */
.te-empty-state {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 24px auto;
  padding: 36px 24px;
  border: 1px solid #edddd9;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #fdf7f5);
  box-shadow: 0 6px 24px rgba(55, 30, 30, 0.035);
  text-align: center;
  color: var(--te-text, #010103);
}
.te-empty-state[hidden],
[data-te-empty-host][hidden] { display: none !important; }
.te-empty-state__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border: 1px solid #f0d9d3;
  border-radius: 24px;
  background: #faece8;
  color: var(--te-red, #e00032);
}
.te-empty-state__icon svg { display: block; flex: none; width: 38px; height: 38px; }
.te-empty-state .te-empty-state__title {
  margin: 0;
  padding: 0;
  font: 700 clamp(22px, 2.5vw, 28px)/1.25 "Philosopher", sans-serif;
  color: inherit;
  text-transform: none;
  letter-spacing: normal;
  overflow-wrap: anywhere;
}
.te-empty-state .te-empty-state__text {
  max-width: 510px;
  margin: 12px auto 0;
  color: #5d6068;
  font: 400 16px/1.55 "Philosopher", sans-serif;
  overflow-wrap: anywhere;
}
.te-empty-state__text p { margin: 0 0 8px; }
.te-empty-state__text p:last-child { margin-bottom: 0; }
.te-empty-state__text a { color: var(--te-red, #e00032); text-decoration: underline; }
.te-empty-state__actions { margin-top: 24px; }
.te-empty-state .te-empty-state__action {
  appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 11px 24px;
  border: 1px solid var(--te-red, #e00032);
  border-radius: 10px;
  background: var(--te-red, #e00032);
  color: #fff;
  font: 700 16px/1.4 "Philosopher", sans-serif;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.18s, border-color 0.18s;
}
.te-empty-state .te-empty-state__action:hover { background: #bd002b; border-color: #bd002b; color: #fff; }
.te-empty-state__action:focus-visible,
.te-empty-state__text a:focus-visible {
  outline: 3px solid #b8002a;
  outline-offset: 4px;
}
.te-empty-state__title:focus { outline: none; }
.te-empty-state__action[aria-disabled="true"],
.te-empty-state__action:disabled { opacity: 0.65; cursor: wait; }
.te-empty-state--compact { max-width: 100%; margin: 12px 0; padding: 24px 16px; border-radius: 16px; }
.te-empty-state--compact .te-empty-state__icon { width: 56px; height: 56px; border-radius: 18px; margin-bottom: 16px; }
.te-empty-state--compact .te-empty-state__icon svg { width: 30px; height: 30px; }
.te-empty-state--compact .te-empty-state__title { font-size: 21px; }
.te-empty-state--compact .te-empty-state__text { font-size: 15px; }
.catalog .auto-list .row.is-empty { width: 100%; margin: 0; justify-content: center; }
.compare-viewport:has(.te-empty-state) { min-height: 0; }
.cmp-results > .te-empty-state { grid-column: 1 / -1; }
.catalog-mobile-picker__empty > .te-empty-state { margin: 0; }
@media (max-width: 767px) {
  .te-empty-state { margin: 16px auto; padding: 28px 18px; border-radius: 16px; }
  .te-empty-state__icon { width: 64px; height: 64px; border-radius: 20px; margin-bottom: 18px; }
  .te-empty-state__icon svg { width: 34px; height: 34px; }
  .te-empty-state .te-empty-state__text { font-size: 15px; }
  .te-empty-state .te-empty-state__action { width: 100%; max-width: 300px; min-height: 48px; }
  .te-empty-state--compact { padding: 22px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .te-empty-state .te-empty-state__action { transition: none; }
}
