/* ===== QUICK NAV ===== */
.quick-nav {
  margin: 32px 0 48px;
}

.quick-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  background: #ffffff;
  border-radius: 24px;

  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== LABEL ===== */
.quick-nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;

  font-weight: 600;
  font-size: 16px;
  color: #4a5a6a;
}

.quick-nav-icon {
  font-size: 18px;
}

/* ===== ITEMS ===== */
.quick-nav-items {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.quick-nav-items::-webkit-scrollbar {
  height: 0;
}

.quick-nav-items button {
  background: #f2f6fb;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;

  font-size: 14px;
  color: #1e88e5;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-nav-items button:hover {
  background: #e7eef7;
}

/* ===== MOBILE ===== */
@media (max-width: 560px) {
  .quick-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .quick-nav-label {
    background: #f5f7fa;
    padding: 10px 14px;
    border-radius: 14px;
    width: 100%;
  }

  .quick-nav-items {
    flex-wrap: wrap;
    overflow: visible;
    gap: 10px;
  }

  .quick-nav-items button {
    font-size: 14px;
  }
}
