/* Launcher product-window layout. */
.product-window-launcher-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.75fr);
  min-height: 0;
  gap: 16px;
}

.product-window-launcher-previews {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
}

.product-window-launcher-panel {
  display: grid;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  place-items: center;
}

.product-window-launcher-panel[hidden] {
  display: none;
}

.product-window-launcher-preview {
  position: relative;
  display: grid;
  justify-self: center;
  width: auto;
  max-width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1096 / 1200;
  place-items: center;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.product-window-launcher-preview:hover {
  background: transparent;
}

.product-window-launcher-preview:focus-visible {
  outline: 2px solid var(--bar-focus-outline);
  outline-offset: -3px;
}

.product-window-launcher-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.16));
}

.product-window-launcher-open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid var(--list-row-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--site-shot-bg) 88%, transparent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 740;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.product-window-launcher-searches {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-width: 0;
  min-height: 0;
  gap: 16px;
}

.product-window-launcher-choice {
  appearance: none;
  display: grid;
  width: 100%;
  min-height: 0;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--list-row-border);
  border-radius: 14px;
  background: var(--list-row-bg);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.product-window-launcher-choice:hover {
  border-color: color-mix(in srgb, var(--bar-accent) 35%, var(--list-row-border));
  background: color-mix(in srgb, var(--bar-accent) 7%, var(--list-row-bg));
}

.product-window-launcher-choice.is-active {
  border-color: color-mix(in srgb, var(--bar-accent) 58%, var(--list-row-border));
  background: color-mix(in srgb, var(--bar-accent) 12%, var(--list-row-bg));
  box-shadow: inset 3px 0 0 var(--bar-accent);
}

.product-window-launcher-choice:focus-visible {
  outline: 2px solid var(--bar-focus-outline);
  outline-offset: 2px;
}

.product-window-launcher-kind {
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-window-launcher-choice strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.15;
}

.product-window-launcher-choice p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
