/* ── RENT TAB ── */
.rent-hero {
  margin: 0 16px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark3) 0%, var(--surface) 50%, #3A006A 100%);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.rent-hero::before {
  content: '⚽';
  position: absolute;
  right: -10px; top: -10px;
  font-size: 90px;
  opacity: 0.07;
  transform: rotate(15deg);
}
.rent-hero h2 { font-size: 13px; color: var(--neon-glow); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 4px; }
.rent-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px; line-height: 1; color: var(--text); }
.rent-hero p { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ── Search bar ── */
.search-bar {
  margin: 0 16px 12px;
  background: var(--surface);
  border: 1.5px solid var(--dark4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 48px;
  gap: 10px;
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--neon); box-shadow: 0 0 0 3px rgba(200,85,255,0.12); }
.search-bar input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: 'Outfit', sans-serif;
  font-size: 14px;
}
.search-bar input::placeholder { color: var(--text-muted); }
.search-icon { color: var(--text-muted); font-size: 16px; }

/* ── Filter row ── */
.filter-row {
  display: flex; gap: 8px; padding: 0 16px 16px; align-items: center; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 30px;
  border: 1.5px solid var(--dark4);
  background: var(--surface);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.filter-btn:hover { border-color: var(--neon); color: var(--neon); background: rgba(200,85,255,0.1); }
.loc-filter-btn { border-color: var(--neon-dim); color: var(--neon-glow); }
.loc-filter-btn:hover { border-color: var(--neon); }

/* Active location chip (shown when a filter is applied) */
.active-loc-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(200,85,255,0.15);
  border: 1.5px solid var(--neon);
  color: var(--neon);
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.active-loc-chip::after {
  content: '✕';
  font-size: 10px;
  opacity: 0.7;
  margin-left: 2px;
}

/* ── Section title ── */
.section-title {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0 16px 12px;
}

/* ── Pitch cards ── */
.pitch-card {
  margin: 0 16px 14px;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--dark4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pitch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,85,255,0.2);
  border-color: var(--neon-dim);
}
.pitch-img {
  width: 100%; height: 140px;
  position: relative;
  overflow: hidden;
}
.pitch-img-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}
.pitch-img-bg.p1 { background: linear-gradient(135deg, #0D3B1A, #1A6B33); }
.pitch-img-bg.p2 { background: linear-gradient(135deg, #0A2B3D, #1A5A7A); }
.pitch-img-bg.p3 { background: linear-gradient(135deg, #2B1A0A, #6B401A); }
.pitch-img-photo {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pitch-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,85,255,0.3);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px; font-weight: 600; color: var(--neon-glow);
  letter-spacing: 0.5px;
}
.pitch-avail {
  position: absolute; top: 10px; right: 10px;
  background: rgba(57,255,133,0.15);
  border: 1px solid var(--green);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px; font-weight: 600; color: var(--green);
}
.pitch-info { padding: 14px; }
.pitch-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.pitch-location { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.pitch-meta { display: flex; gap: 8px; align-items: center; justify-content: space-between; }
.pitch-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--neon); }
.pitch-price span { font-family: 'Outfit', sans-serif; font-size: 11px; color: var(--text-muted); font-weight: 400; }
.pitch-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--accent-gold); }
.pitch-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.tag { background: var(--dark4); border-radius: 20px; padding: 3px 10px; font-size: 10px; color: var(--text-muted); }
