/* ============================================================
   AXF Mockup Walker — chrome layer
   Sits on top of each screen mockup. Keep visually minimal so
   the kiosk surface stays the focal point.
   ============================================================ */

/* Walker wordmark (top-left of every screen) */
.walker-mark {
  position: fixed;
  top: 18px;
  left: 22px;
  z-index: 9999;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(28, 42, 71, 0.45);
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.walker-mark:hover { color: var(--teal-ink, #1F7390); }

/* Bottom-left Prev */
.walker-prev,
.walker-next,
.walker-note {
  position: fixed;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(31, 115, 144, 0.92);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px -8px rgba(31, 42, 71, 0.45);
}
.walker-prev { left: 22px; }
.walker-next { right: 22px; }
.walker-note {
  right: 130px;
  background: rgba(255, 255, 255, 0.92);
  color: #1F7390;
  border: 1.5px solid rgba(82, 160, 189, 0.35);
}
.walker-prev:hover,
.walker-next:hover { background: #1F7390; }

/* Top-nav row — added to BOTH the workout-generator page and the walker */
.app-topnav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: 0 8px 22px -8px rgba(31, 42, 71, 0.25);
  backdrop-filter: blur(8px);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.app-topnav a {
  padding: 8px 18px;
  border-radius: 999px;
  color: #61708C;
  text-decoration: none;
}
.app-topnav a.active {
  background: #1F7390;
  color: #fff;
}

/* Feedback modal */
.walker-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 42, 71, 0.55);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.walker-modal-backdrop.open { display: flex; }
.walker-modal {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  width: min(520px, 90vw);
  font-family: 'Raleway', sans-serif;
  color: #1C2A47;
  box-shadow: 0 24px 60px -20px rgba(31, 42, 71, 0.4);
}
.walker-modal h3 { font-family: 'Lora', serif; font-size: 24px; margin-bottom: 16px; }
.walker-modal textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px;
  border: 1.5px solid rgba(82, 160, 189, 0.35);
  border-radius: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  resize: vertical;
}
.walker-modal .categories { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.walker-modal .categories label {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(82, 160, 189, 0.35);
  font-size: 13px;
  cursor: pointer;
}
.walker-modal .categories input[type=radio] { display: none; }
.walker-modal .categories input[type=radio]:checked + span {
  background: #1F7390;
  color: #fff;
  padding: 4px 10px;
  margin: -4px -8px;
  border-radius: 999px;
}
.walker-modal .actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }
.walker-modal .btn-save,
.walker-modal .btn-cancel {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 14px;
}
.walker-modal .btn-save { background: #1F7390; color: #fff; }
.walker-modal .btn-cancel { background: #fff; color: #61708C; border: 1.5px solid #ddd; }

/* Screen-grid index page */
.grid-page { padding: 80px 48px 48px; max-width: 1400px; margin: 0 auto; }
.grid-page h1 { font-family: 'Lora', serif; font-weight: 600; font-size: 42px; margin-bottom: 32px; color: #1C2A47; }
.screen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.screen-tile {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  text-decoration: none;
  color: #1C2A47;
  box-shadow: 0 8px 22px -10px rgba(31, 42, 71, 0.18);
  border: 1px solid rgba(82, 160, 189, 0.12);
}
.screen-tile:hover { box-shadow: 0 14px 30px -10px rgba(31, 42, 71, 0.28); }
.screen-tile .id { font-family: 'Raleway', sans-serif; font-size: 12px; color: #61708C; letter-spacing: 1px; text-transform: uppercase; }
.screen-tile .title { font-family: 'Lora', serif; font-size: 22px; margin-top: 6px; }
