/*============================
/ LOCATION SUGGEST
/*============================*/

.sheet__section .location {
  display: grid;
  gap: 20px;
}

.location__results {
  position: absolute;
  flex-direction: column;
  left: 0;
  right: 0;
  top: calc(100%);
  z-index: 5000;

  max-height: 42vh;
  min-height: 42vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;

  background: #fff;
  padding-block: 4px;
  list-style: none;
  margin: 0;
}

.location__results li {
  padding: 10px 16px;
  line-height: 1.5;
  cursor: pointer;
}

.location__results li + li {
  border-top: 1px solid var(--surface-border, #eee);
}

/* Effet tactile/hover/active */
.location__results li:hover,
.location__results li:active {
  background: var(--surface-hover, #f4f4f4);
}

/* Accessibilité visuelle */
.location__results li[aria-selected="true"] {
  background: var(--accent-bg, #e9e5ff);
  color: var(--accent-fg, #3d2db7);
}

.location__presets {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 5px;
}

.location__presets li {
  display: flex;
  justify-content: space-around;
  border-radius: 40px;
  padding: 5px 10px;
  width: 100%;
  cursor: pointer;
  background: #f1f1f1;
  font-size: 0.9em;
  align-items: center;
}

