/* Shared fallback styles loaded on every page */
:root{
  --orange:#f97316;
  --coral:#ff7a59;
  --ink-900:#18212d;
  --ink-700:#425066;
  --border:#e5e7eb;
}

body{color:var(--ink-900)}
a{color:inherit}

.type-grid,
.city-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}

.type-card,
.city-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:16px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(8,18,31,.06);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.type-card:hover,
.city-card:hover{
  transform:translateY(-2px);
  border-color:rgba(249,115,22,.35);
  box-shadow:0 16px 34px rgba(8,18,31,.10);
}

.type-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(249,115,22,.10);
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;
}

.venue-card{
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(8,18,31,.06);
}

.venue-card h3 a{
  text-decoration:none;
}

.venue-card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.venue-card-features{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:8px;
}

.feature-tag{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:11px;
  font-weight:600;
  padding:3px 8px;
  border-radius:6px;
  background:rgba(249,115,22,0.1);
  color:var(--orange);
  border:1px solid rgba(249,115,22,0.2);
  white-space:nowrap;
}

.hh-time-range{
  font-size:12px;
  font-weight:700;
  color:var(--orange);
  margin-top:4px;
  letter-spacing:0.02em;
}

@media (max-width:640px){
  .type-grid,
  .city-grid{
    grid-template-columns:1fr;
  }
  .card-grid{
    grid-template-columns:1fr;
  }
  .button,
  .button-link{
    width:100%;
  }
}

.button,
.button-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:700;
  text-decoration:none;
}

.button{
  color:#fff;
  background:linear-gradient(135deg,var(--orange),var(--coral));
}

.button-link{
  color:var(--ink-900);
  border-color:var(--border);
  background:#fff;
}

.results-topbar p{color:var(--ink-700)}

/* Search Suggestions (Auto-complete) */
.search-shell {
  position: relative;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.search-suggestions.is-visible {
  display: block;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--ink-900);
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.1s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover, .suggestion-item.is-active {
  background: #f9fafb;
}

.suggestion-icon {
  width: 32px;
  height: 32px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.suggestion-content {
  display: flex;
  flex-direction: column;
}

.suggestion-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.suggestion-subtitle {
  font-size: 0.8rem;
  color: var(--ink-700);
}

.suggestion-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-top: 2px;
}

/* Visual Schedule */
.visual-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.schedule-day {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #f9fafb;
  text-align: center;
  position: relative;
}

.schedule-day.is-active {
  background: #fff;
  border-color: rgba(249,115,22,0.2);
}

.schedule-day.is-today {
  border-color: var(--orange);
  background: rgba(249,115,22,0.05);
  box-shadow: 0 4px 12px rgba(249,115,22,0.1);
}

.schedule-day.is-inactive {
  opacity: 0.6;
}

.day-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-700);
  margin-bottom: 4px;
}

.day-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-900);
}

.today-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .visual-schedule {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* US Market Disclaimer */
.us-market-disclaimer{background:rgba(249,115,22,.06);border:1px solid rgba(249,115,22,.15);border-radius:10px;padding:12px 16px;margin:16px 0;font-size:.85rem}
.us-market-disclaimer p{margin:4px 0}
