/* SAME CSS I GENERATED EARLIER – already optimized */
:root {
  --page-bg: #f3f7fb;
  --panel-bg: #ffffff;
  --accent: #aec7ff;
  --muted: #6b7280;
  --pill-border: #e9f0fb;
  --pill-text: #081426;
  --panel-radius: 12px;
  --panel-shadow: 0 18px 40px rgba(7, 20, 40, 0.06);
  --pill-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
  --container-max: 1100px;
}

body {
  font-family: Segoe UI, sans-serif;
  margin: 0;
  color: #0b1220;
  background: #fff;
}

.wrap {
  max-width: calc(var(--container-max) + 80px);
  padding: 30px 20px 60px;
  margin: 0 auto;
}

.panel {
  position: relative;
  background: var(--panel-bg);
  border-radius: var(--panel-radius);
  padding: 40px 56px;
  box-shadow: var(--panel-shadow);
}
.mobile-menu a {
  color: #0f172a;
}
.panel::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 18px;
  bottom: 18px;
  width: 16px;
 /* background: linear-gradient(180deg, #aec7ff 0%, #aec7ffcc 100%);*/
 background: linear-gradient(90deg, #4d6bff, #00c6c7) !important;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.hero-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px;
}

.state {
  text-align: center; /* centers anything inside the section */
  margin-bottom: 28px;
}

.state-title {
  display: inline-flex; /* allows natural pill size */
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: linear-gradient(90deg, #4d6bff 0%, #00c6c7 100%);
  color: #fff;

  padding: 10px 22px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;

  box-shadow: 0 6px 20px rgba(65, 91, 224, 0.22);
  margin: 0 auto 20px auto; /* ensures centering */
  transition: all 0.22s ease;
}

.state-title:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(65, 91, 224, 0.28);
}

.cities {
  width: 75%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  justify-items: center;
}

.city-pill {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: #dddddd;
  color: var(--pill-text);
  border: 1px solid var(--pill-border);
  box-shadow: var(--pill-shadow);
  font-size: 20px;
  white-space: nowrap;
  transition: 0.15s ease;
  width: 100%;
  max-width: 240px;
  font-weight: 600;
}

.city-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(11, 18, 32, 0.06);
}

@media (max-width: 900px) {
  .panel {
    padding: 28px;
  }
  .cities {
    width: 100%;
  }
  .city-pill {
    font-size: 15px;
    padding: 12px 16px;
  }
}

@media (max-width: 520px) {
  .panel {
    padding: 20px 14px;
  }
  .cities {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 5px;
    justify-items: center;
  }
  .city-pill {
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px;
  }
  .panel::before {
    left: -12px;
    width: 12px;
    top: 12px;
    bottom: 12px;
  }
}

.breadcrumb-small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 18px;
  padding-left: 6px;
  color: var(--muted, #6b7280);
}

/* Home Link */
.breadcrumb-small .crumb-home {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;

  /* matches Elite5Pro gradient buttons */
  background: linear-gradient(90deg, #4d6bff, #00c6c7) !important;
  color: #fff;
  font-weight: 600;
  transition: 0.22s ease;
  box-shadow: 0 4px 14px rgba(65, 91, 224, 0.15);
}

/* Hover effect */
.breadcrumb-small .crumb-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(65, 91, 224, 0.22);
}

/* Slash separator */
.breadcrumb-small .crumb-sep {
  color: var(--muted, #6b7280);
  opacity: 0.65;
}

/* Current category */
.breadcrumb-small .crumb-cat {
  
  font-weight: 700;
}
